From: Richard M. Stallman Date: Thu, 3 Feb 2005 06:58:38 +0000 (+0000) Subject: (Printing in Edebug): Fix edebug-print-circle. X-Git-Tag: ttn-vms-21-2-B4~2457 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=011caae16dcb22153007869ad513bb80591fe3f4;p=emacs.git (Printing in Edebug): Fix edebug-print-circle. (Coverage Testing): Fix typo. --- diff --git a/lispref/edebug.texi b/lispref/edebug.texi index 9789835780b..bcd7eba5b6f 100644 --- a/lispref/edebug.texi +++ b/lispref/edebug.texi @@ -801,7 +801,7 @@ vectors. @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 @@ the breakpoint is reached, the frequency data looks like this: @example (defun fac (n) (if (= n 0) (edebug)) -;#6 1 0 =5 +;#6 1 = =5 (if (< 0 n) ;#5 = (* n (fac (1- n)))