emacs.rst
changeset 177 02b79b857ee1
parent 171 8e806cddee36
child 179 e225b746945d
--- 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.