--- a/emacs.rst Thu Aug 20 22:45:18 2009 +0300
+++ b/emacs.rst Fri Aug 21 14:45:28 2009 +0300
@@ -1,17 +1,17 @@
--*- mode: outline -*-
+-*- mode: outline; coding: utf-8 -*-
* Debugging.
** 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?
@@ -24,8 +24,8 @@
When your InitFile has a bug, or when you load external files that cause
errors, the bug is often hard to find, because the Emacs Lisp reader does not
-know about line numbers and files – it just knows an error happened, and
-that’s it.
+know about line numbers and files - it just knows an error happened, and
+that's it.
*** Binary Search.
@@ -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.