changeset 59876:59d6cfcd4c9a

(Printing in Edebug): Fix edebug-print-circle. (Coverage Testing): Fix typo.
author Richard M. Stallman <rms@gnu.org>
date Thu, 03 Feb 2005 06:58:38 +0000
parents c8c884c02452
children 36a927615e6d
files lispref/edebug.texi
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lispref/edebug.texi	Thu Feb 03 06:57:22 2005 +0000
+++ b/lispref/edebug.texi	Thu Feb 03 06:58:38 2005 +0000
@@ -801,7 +801,7 @@
 
 @defopt edebug-print-circle
 If non-@code{nil}, Edebug binds @code{print-circle} to this value while
-printing results.  The default value is @code{nil}.
+printing results.  The default value is @code{t}.
 @end defopt
 
   Other programs can also use custom printing; see @file{cust-print.el}
@@ -909,7 +909,7 @@
 @example
 (defun fac (n)
   (if (= n 0) (edebug))
-;#6           1      0 =5
+;#6           1      = =5
   (if (< 0 n)
 ;#5         =
       (* n (fac (1- n)))