aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-02-03 06:58:38 +0000
committerRichard M. Stallman2005-02-03 06:58:38 +0000
commit011caae16dcb22153007869ad513bb80591fe3f4 (patch)
treef5569a001e03d4fde3d8a04bf3ac4227989c1181
parentf75fbf430c3500a6ca567386cd0ef4a8e22f45be (diff)
downloademacs-011caae16dcb22153007869ad513bb80591fe3f4.tar.gz
emacs-011caae16dcb22153007869ad513bb80591fe3f4.zip
(Printing in Edebug): Fix edebug-print-circle.
(Coverage Testing): Fix typo.
-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)))