# HG changeset patch # User Oleksandr Gavenko # Date 1250761223 -10800 # Node ID 02b79b857ee158c430871867be9c4930d33393fa # Parent 939f50e22bda2a7b052a8a8da618446d6b8937f5 Use plain ascii chars instead of UTF-8. diff -r 939f50e22bda -r 02b79b857ee1 emacs.rst --- a/emacs.rst Fri Aug 07 09:41:26 2009 +0300 +++ b/emacs.rst Thu Aug 20 12:40:23 2009 +0300 @@ -4,14 +4,14 @@ ** Using edebug. -Execute ‘M-x edebug-defun’ (also on ‘C-u C-M-x’) on defun in source code to +Execute 'M-x edebug-defun' (also on 'C-u C-M-x') on defun in source code to enable debugging for desired function. When next time this function invoked you entered to its debugging (jamped to its source code). To start debug execute code which used debugged function. You can disable edebug on a function by evaluating the function again using -‘C-M-x’. +'C-M-x'. ** How debug func? @@ -46,6 +46,6 @@ *** Simplified Binary Search. -Add (error “No error until here”) in the middle of your file. If you get the -error “No error until here” when reloading the file, move the expression +Add (error 'No error until here') in the middle of your file. If you get the +error 'No error until here' when reloading the file, move the expression towards the back of the file, otherwise towards the front of the file.