aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2007-04-07 01:56:05 +0000
committerRichard M. Stallman2007-04-07 01:56:05 +0000
commitef74a943ea91041dedba149a61ddead6939eb04f (patch)
tree724e583c0d0a17d5be50a312942c561009876fee
parentdf8d6c14184e380256f44d4d260e6dd1f388d1b2 (diff)
downloademacs-ef74a943ea91041dedba149a61ddead6939eb04f.tar.gz
emacs-ef74a943ea91041dedba149a61ddead6939eb04f.zip
Improve index entries.
(Test Coverage): Add xref to other test coverage ftr.
-rw-r--r--lispref/debugging.texi8
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
692not, there is a problem in that defun. 692not, 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
697Lisp, and we can give further advice for those cases. (In addition, 697Lisp, and we can give further advice for those cases. (In addition,
698just moving point through the code with Show Paren mode enabled might 698just 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
799never return. If it ever does return, you get a run-time error. 799never 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
803Testing}). These features partly duplicate each other, and it would
804be 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