]> git.eshelyaron.com Git - emacs.git/commitdiff
(Using Edebug): Fix example.
authorRichard M. Stallman <rms@gnu.org>
Mon, 16 Feb 2004 22:16:53 +0000 (22:16 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 16 Feb 2004 22:16:53 +0000 (22:16 +0000)
lispref/edebug.texi

index 5520852c1a37fcf6dbe1919d0b0ab42c3615d243..9789835780b67d6db73aaec2d51e23d9d4806374 100644 (file)
@@ -124,7 +124,7 @@ Here we use periods to show the stop points in the function
 @example
 (defun fac (n)
   .(if .(< 0 n.).
-      .(* n. .(fac (1- n.).).).
+      .(* n. .(fac .(1- n.).).).
     1).)
 @end example