]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve index entries.
authorRichard M. Stallman <rms@gnu.org>
Sat, 7 Apr 2007 01:56:05 +0000 (01:56 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 7 Apr 2007 01:56:05 +0000 (01:56 +0000)
(Test Coverage): Add xref to other test coverage ftr.

lispref/debugging.texi

index 766fa64c0015b7be459b5f4fd013d7fa1eb7192d..a427e746b271e8f9d21910efd6e8e9e0f9e81d8b 100644 (file)
@@ -44,7 +44,7 @@ Afterward, you can examine the file to find out what input was used.
 
 @node Debugger
 @section The Lisp Debugger
-@cindex debugger
+@cindex debugger for Emacs Lisp
 @cindex Lisp debugger
 @cindex break
 
@@ -692,7 +692,7 @@ if it goes to the place where that defun appears to end.  If it does
 not, there is a problem in that defun.
 
 @cindex unbalanced parentheses
-@cindex parentheses mismatch
+@cindex parenthesis mismatch, debugging
   However, unmatched parentheses are the most common syntax errors in
 Lisp, and we can give further advice for those cases.  (In addition,
 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
 never return.  If it ever does return, you get a run-time error.
 @end defmac
 
+  Edebug also has a coverage testing feature (@pxref{Coverage
+Testing}).  These features partly duplicate each other, and it would
+be cleaner to combine them.
+
 @node Compilation Errors
 @section Debugging Problems in Compilation
 @cindex debugging byte compilation problems