Mercurial > emacs
comparison lispref/edebug.texi @ 54024:9f3c718e5096
(Using Edebug): Fix example.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 16 Feb 2004 22:16:53 +0000 |
parents | 7ea1b7196d49 |
children | 59d6cfcd4c9a |
comparison
equal
deleted
inserted
replaced
54023:3a7432ab26ae | 54024:9f3c718e5096 |
---|---|
122 @code{fac}: | 122 @code{fac}: |
123 | 123 |
124 @example | 124 @example |
125 (defun fac (n) | 125 (defun fac (n) |
126 .(if .(< 0 n.). | 126 .(if .(< 0 n.). |
127 .(* n. .(fac (1- n.).).). | 127 .(* n. .(fac .(1- n.).).). |
128 1).) | 128 1).) |
129 @end example | 129 @end example |
130 | 130 |
131 The special commands of Edebug are available in the source code buffer | 131 The special commands of Edebug are available in the source code buffer |
132 in addition to the commands of Emacs Lisp mode. For example, you can | 132 in addition to the commands of Emacs Lisp mode. For example, you can |