aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lispref/edebug.texi4
1 files changed, 2 insertions, 2 deletions
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.
801 801
802@defopt edebug-print-circle 802@defopt edebug-print-circle
803If non-@code{nil}, Edebug binds @code{print-circle} to this value while 803If non-@code{nil}, Edebug binds @code{print-circle} to this value while
804printing results. The default value is @code{nil}. 804printing results. The default value is @code{t}.
805@end defopt 805@end defopt
806 806
807 Other programs can also use custom printing; see @file{cust-print.el} 807 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:
909@example 909@example
910(defun fac (n) 910(defun fac (n)
911 (if (= n 0) (edebug)) 911 (if (= n 0) (edebug))
912;#6 1 0 =5 912;#6 1 = =5
913 (if (< 0 n) 913 (if (< 0 n)
914;#5 = 914;#5 =
915 (* n (fac (1- n))) 915 (* n (fac (1- n)))