diff options
Diffstat (limited to 'lispref/debugging.texi')
| -rw-r--r-- | lispref/debugging.texi | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lispref/debugging.texi b/lispref/debugging.texi index 766fa64c001..a427e746b27 100644 --- a/lispref/debugging.texi +++ b/lispref/debugging.texi | |||
| @@ -44,7 +44,7 @@ Afterward, you can examine the file to find out what input was used. | |||
| 44 | 44 | ||
| 45 | @node Debugger | 45 | @node Debugger |
| 46 | @section The Lisp Debugger | 46 | @section The Lisp Debugger |
| 47 | @cindex debugger | 47 | @cindex debugger for Emacs Lisp |
| 48 | @cindex Lisp debugger | 48 | @cindex Lisp debugger |
| 49 | @cindex break | 49 | @cindex break |
| 50 | 50 | ||
| @@ -692,7 +692,7 @@ if it goes to the place where that defun appears to end. If it does | |||
| 692 | not, there is a problem in that defun. | 692 | not, there is a problem in that defun. |
| 693 | 693 | ||
| 694 | @cindex unbalanced parentheses | 694 | @cindex unbalanced parentheses |
| 695 | @cindex parentheses mismatch | 695 | @cindex parenthesis mismatch, debugging |
| 696 | However, unmatched parentheses are the most common syntax errors in | 696 | However, unmatched parentheses are the most common syntax errors in |
| 697 | Lisp, and we can give further advice for those cases. (In addition, | 697 | Lisp, and we can give further advice for those cases. (In addition, |
| 698 | just moving point through the code with Show Paren mode enabled might | 698 | just moving point through the code with Show Paren mode enabled might |
| @@ -799,6 +799,10 @@ Evaluate @var{form}, informing coverage testing that @var{form} should | |||
| 799 | never return. If it ever does return, you get a run-time error. | 799 | never return. If it ever does return, you get a run-time error. |
| 800 | @end defmac | 800 | @end defmac |
| 801 | 801 | ||
| 802 | Edebug also has a coverage testing feature (@pxref{Coverage | ||
| 803 | Testing}). These features partly duplicate each other, and it would | ||
| 804 | be cleaner to combine them. | ||
| 805 | |||
| 802 | @node Compilation Errors | 806 | @node Compilation Errors |
| 803 | @section Debugging Problems in Compilation | 807 | @section Debugging Problems in Compilation |
| 804 | @cindex debugging byte compilation problems | 808 | @cindex debugging byte compilation problems |