Use plain ascii chars instead of UTF-8.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Thu, 20 Aug 2009 12:40:23 +0300
changeset 177 02b79b857ee1
parent 173 939f50e22bda
child 178 abe20171d6ed
Use plain ascii chars instead of UTF-8.
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.