Mercurial > emacs
annotate lispref/edebug.texi @ 63519:e33c4b9caa8a
(inferior-lisp-prompt): Fix spelling in docstrings.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Thu, 16 Jun 2005 16:20:00 +0000 |
parents | 35fe0bb36962 |
children | 80bd8eddac37 a1b34dec1104 |
rev | line source |
---|---|
6558 | 1 @comment -*-texinfo-*- |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
2 @c This is part of the GNU Emacs Lisp Reference Manual. |
60376
4f506e54cd57
(Instrumenting Macro Calls): Fix typo.
Lute Kamstra <lute@gnu.org>
parents:
59876
diff
changeset
|
3 @c Copyright (C) 1992, 1993, 1994, 1998, 1999, 2005 Free Software Foundation, Inc. |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
4 @c See the file elisp.texi for copying conditions. |
6558 | 5 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
6 @c This file can also be used by an independent Edebug User |
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
7 @c Manual in which case the Edebug node below should be used |
6558 | 8 @c with the following links to the Bugs section and to the top level: |
9 | |
10 @c , Bugs and Todo List, Top, Top | |
11 | |
22252
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
12 @node Edebug, Syntax Errors, Debugger, Debugging |
6558 | 13 @section Edebug |
14 @cindex Edebug mode | |
15 | |
16 @cindex Edebug | |
17 Edebug is a source-level debugger for Emacs Lisp programs with which | |
18 you can: | |
19 | |
20 @itemize @bullet | |
21 @item | |
22 Step through evaluation, stopping before and after each expression. | |
23 | |
24 @item | |
25 Set conditional or unconditional breakpoints. | |
26 | |
27 @item | |
28 Stop when a specified condition is true (the global break event). | |
29 | |
30 @item | |
31 Trace slow or fast, stopping briefly at each stop point, or | |
32 at each breakpoint. | |
33 | |
34 @item | |
35 Display expression results and evaluate expressions as if outside of | |
36 Edebug. | |
37 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
38 @item |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
39 Automatically re-evaluate a list of expressions and |
6558 | 40 display their results each time Edebug updates the display. |
41 | |
42 @item | |
43 Output trace info on function enter and exit. | |
44 | |
45 @item | |
46 Stop when an error occurs. | |
47 | |
48 @item | |
49 Display a backtrace, omitting Edebug's own frames. | |
50 | |
51 @item | |
52 Specify argument evaluation for macros and defining forms. | |
53 | |
54 @item | |
55 Obtain rudimentary coverage testing and frequency counts. | |
56 @end itemize | |
57 | |
58 The first three sections below should tell you enough about Edebug to | |
59 enable you to use it. | |
60 | |
61 @menu | |
62 * Using Edebug:: Introduction to use of Edebug. | |
63 * Instrumenting:: You must instrument your code | |
64 in order to debug it with Edebug. | |
65 * Modes: Edebug Execution Modes. Execution modes, stopping more or less often. | |
66 * Jumping:: Commands to jump to a specified place. | |
67 * Misc: Edebug Misc. Miscellaneous commands. | |
63452
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
68 * Breaks:: Setting breakpoints to make the program stop. |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
69 * Trapping Errors:: Trapping errors with Edebug. |
6558 | 70 * Views: Edebug Views. Views inside and outside of Edebug. |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
71 * Eval: Edebug Eval. Evaluating expressions within Edebug. |
6558 | 72 * Eval List:: Expressions whose values are displayed |
73 each time you enter Edebug. | |
74 * Printing in Edebug:: Customization of printing. | |
75 * Trace Buffer:: How to produce trace output in a buffer. | |
76 * Coverage Testing:: How to test evaluation coverage. | |
77 * The Outside Context:: Data that Edebug saves and restores. | |
63452
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
78 * Edebug and Macros:: Specifying how to handle macro calls. |
6558 | 79 * Options: Edebug Options. Option variables for customizing Edebug. |
80 @end menu | |
81 | |
82 @node Using Edebug | |
83 @subsection Using Edebug | |
84 | |
85 To debug a Lisp program with Edebug, you must first @dfn{instrument} | |
86 the Lisp code that you want to debug. A simple way to do this is to | |
87 first move point into the definition of a function or macro and then do | |
88 @kbd{C-u C-M-x} (@code{eval-defun} with a prefix argument). See | |
89 @ref{Instrumenting}, for alternative ways to instrument code. | |
90 | |
91 Once a function is instrumented, any call to the function activates | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
92 Edebug. Depending on which Edebug execution mode you have selected, |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
93 activating Edebug may stop execution and let you step through the |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
94 function, or it may update the display and continue execution while |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
95 checking for debugging commands. The default execution mode is step, |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
96 which stops execution. @xref{Edebug Execution Modes}. |
6558 | 97 |
98 Within Edebug, you normally view an Emacs buffer showing the source of | |
99 the Lisp code you are debugging. This is referred to as the @dfn{source | |
26254 | 100 code buffer}, and it is temporarily read-only. |
6558 | 101 |
60498
f779a0469755
(Using Edebug): Arrow is in fringe.
Richard M. Stallman <rms@gnu.org>
parents:
60376
diff
changeset
|
102 An arrow in the left fringe indicates the line where the function is |
6558 | 103 executing. Point initially shows where within the line the function is |
104 executing, but this ceases to be true if you move point yourself. | |
105 | |
106 If you instrument the definition of @code{fac} (shown below) and then | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
107 execute @code{(fac 3)}, here is what you would normally see. Point is |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
108 at the open-parenthesis before @code{if}. |
6558 | 109 |
110 @example | |
111 (defun fac (n) | |
112 =>@point{}(if (< 0 n) | |
113 (* n (fac (1- n))) | |
114 1)) | |
115 @end example | |
116 | |
117 @cindex stop points | |
118 The places within a function where Edebug can stop execution are called | |
119 @dfn{stop points}. These occur both before and after each subexpression | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
120 that is a list, and also after each variable reference. |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
121 Here we use periods to show the stop points in the function |
6558 | 122 @code{fac}: |
123 | |
124 @example | |
125 (defun fac (n) | |
126 .(if .(< 0 n.). | |
54024
9f3c718e5096
(Using Edebug): Fix example.
Richard M. Stallman <rms@gnu.org>
parents:
53595
diff
changeset
|
127 .(* n. .(fac .(1- n.).).). |
6558 | 128 1).) |
129 @end example | |
130 | |
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 | |
133 type the Edebug command @key{SPC} to execute until the next stop point. | |
134 If you type @key{SPC} once after entry to @code{fac}, here is the | |
135 display you will see: | |
136 | |
137 @example | |
138 (defun fac (n) | |
139 =>(if @point{}(< 0 n) | |
140 (* n (fac (1- n))) | |
141 1)) | |
142 @end example | |
143 | |
144 When Edebug stops execution after an expression, it displays the | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
145 expression's value in the echo area. |
6558 | 146 |
147 Other frequently used commands are @kbd{b} to set a breakpoint at a stop | |
148 point, @kbd{g} to execute until a breakpoint is reached, and @kbd{q} to | |
149 exit Edebug and return to the top-level command loop. Type @kbd{?} to | |
150 display a list of all Edebug commands. | |
151 | |
152 @node Instrumenting | |
153 @subsection Instrumenting for Edebug | |
154 | |
155 In order to use Edebug to debug Lisp code, you must first | |
156 @dfn{instrument} the code. Instrumenting code inserts additional code | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
157 into it, to invoke Edebug at the proper places. |
6558 | 158 |
159 @kindex C-M-x | |
160 @findex eval-defun (Edebug) | |
60498
f779a0469755
(Using Edebug): Arrow is in fringe.
Richard M. Stallman <rms@gnu.org>
parents:
60376
diff
changeset
|
161 When you invoke command @kbd{C-M-x} (@code{eval-defun}) with a |
f779a0469755
(Using Edebug): Arrow is in fringe.
Richard M. Stallman <rms@gnu.org>
parents:
60376
diff
changeset
|
162 prefix argument on a function definition, it instruments the |
f779a0469755
(Using Edebug): Arrow is in fringe.
Richard M. Stallman <rms@gnu.org>
parents:
60376
diff
changeset
|
163 definition before evaluating it. (This does not modify the source |
f779a0469755
(Using Edebug): Arrow is in fringe.
Richard M. Stallman <rms@gnu.org>
parents:
60376
diff
changeset
|
164 code itself.) If the variable @code{edebug-all-defs} is |
f779a0469755
(Using Edebug): Arrow is in fringe.
Richard M. Stallman <rms@gnu.org>
parents:
60376
diff
changeset
|
165 non-@code{nil}, that inverts the meaning of the prefix argument: in |
f779a0469755
(Using Edebug): Arrow is in fringe.
Richard M. Stallman <rms@gnu.org>
parents:
60376
diff
changeset
|
166 this case, @kbd{C-M-x} instruments the definition @emph{unless} it has |
f779a0469755
(Using Edebug): Arrow is in fringe.
Richard M. Stallman <rms@gnu.org>
parents:
60376
diff
changeset
|
167 a prefix argument. The default value of @code{edebug-all-defs} is |
f779a0469755
(Using Edebug): Arrow is in fringe.
Richard M. Stallman <rms@gnu.org>
parents:
60376
diff
changeset
|
168 @code{nil}. The command @kbd{M-x edebug-all-defs} toggles the value |
f779a0469755
(Using Edebug): Arrow is in fringe.
Richard M. Stallman <rms@gnu.org>
parents:
60376
diff
changeset
|
169 of the variable @code{edebug-all-defs}. |
6558 | 170 |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
171 @findex eval-region @r{(Edebug)} |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
172 @findex eval-current-buffer @r{(Edebug)} |
6558 | 173 If @code{edebug-all-defs} is non-@code{nil}, then the commands |
174 @code{eval-region}, @code{eval-current-buffer}, and @code{eval-buffer} | |
175 also instrument any definitions they evaluate. Similarly, | |
176 @code{edebug-all-forms} controls whether @code{eval-region} should | |
177 instrument @emph{any} form, even non-defining forms. This doesn't apply | |
178 to loading or evaluations in the minibuffer. The command @kbd{M-x | |
179 edebug-all-forms} toggles this option. | |
180 | |
181 @findex edebug-eval-top-level-form | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
182 Another command, @kbd{M-x edebug-eval-top-level-form}, is available to |
21007
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
183 instrument any top-level form regardless of the values of |
66d807bdc5b4
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
16736
diff
changeset
|
184 @code{edebug-all-defs} and @code{edebug-all-forms}. |
6558 | 185 |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
186 While Edebug is active, the command @kbd{I} |
6558 | 187 (@code{edebug-instrument-callee}) instruments the definition of the |
188 function or macro called by the list form after point, if is not already | |
189 instrumented. This is possible only if Edebug knows where to find the | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
190 source for that function; for this reading, after loading Edebug, |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
191 @code{eval-region} records the position of every definition it |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
192 evaluates, even if not instrumenting it. See also the @kbd{i} command |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
193 (@pxref{Jumping}), which steps into the call after instrumenting the |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
194 function. |
6558 | 195 |
196 @cindex special forms (Edebug) | |
197 @cindex interactive commands (Edebug) | |
198 @cindex anonymous lambda expressions (Edebug) | |
199 @cindex Common Lisp (Edebug) | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
200 @pindex cl.el @r{(Edebug)} |
6558 | 201 @pindex cl-specs.el |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
202 Edebug knows how to instrument all the standard special forms, |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
203 @code{interactive} forms with an expression argument, anonymous lambda |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
204 expressions, and other defining forms. However, Edebug cannot determine |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
205 on its own what a user-defined macro will do with the arguments of a |
63452
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
206 macro call, so you must provide that information; see @ref{Edebug and |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
207 Macros}, for details. |
6558 | 208 |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
209 When Edebug is about to instrument code for the first time in a |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
210 session, it runs the hook @code{edebug-setup-hook}, then sets it to |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
211 @code{nil}. You can use this to load Edebug specifications |
63452
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
212 (@pxref{Edebug and Macros}) associated with a package you are |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
213 using, but only when you use Edebug. |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
214 |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
215 @findex eval-expression @r{(Edebug)} |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
216 To remove instrumentation from a definition, simply re-evaluate its |
6558 | 217 definition in a way that does not instrument. There are two ways of |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
218 evaluating forms that never instrument them: from a file with |
6558 | 219 @code{load}, and from the minibuffer with @code{eval-expression} |
12098 | 220 (@kbd{M-:}). |
6558 | 221 |
222 If Edebug detects a syntax error while instrumenting, it leaves point | |
223 at the erroneous code and signals an @code{invalid-read-syntax} error. | |
224 | |
225 @xref{Edebug Eval}, for other evaluation functions available | |
226 inside of Edebug. | |
227 | |
228 @node Edebug Execution Modes | |
229 @subsection Edebug Execution Modes | |
230 | |
231 @cindex Edebug execution modes | |
232 Edebug supports several execution modes for running the program you are | |
233 debugging. We call these alternatives @dfn{Edebug execution modes}; do | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
234 not confuse them with major or minor modes. The current Edebug execution mode |
6558 | 235 determines how far Edebug continues execution before stopping---whether |
236 it stops at each stop point, or continues to the next breakpoint, for | |
237 example---and how much Edebug displays the progress of the evaluation | |
238 before it stops. | |
239 | |
240 Normally, you specify the Edebug execution mode by typing a command to | |
241 continue the program in a certain mode. Here is a table of these | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
242 commands; all except for @kbd{S} resume execution of the program, at |
6558 | 243 least for a certain distance. |
244 | |
245 @table @kbd | |
246 @item S | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
247 Stop: don't execute any more of the program, but wait for more |
6558 | 248 Edebug commands (@code{edebug-stop}). |
249 | |
250 @item @key{SPC} | |
251 Step: stop at the next stop point encountered (@code{edebug-step-mode}). | |
252 | |
253 @item n | |
254 Next: stop at the next stop point encountered after an expression | |
255 (@code{edebug-next-mode}). Also see @code{edebug-forward-sexp} in | |
63452
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
256 @ref{Jumping}. |
6558 | 257 |
258 @item t | |
52840
590f500fb14b
(Edebug Execution Modes): Clarify t.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
259 Trace: pause (normally one second) at each Edebug stop point |
590f500fb14b
(Edebug Execution Modes): Clarify t.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
260 (@code{edebug-trace-mode}). |
6558 | 261 |
262 @item T | |
263 Rapid trace: update the display at each stop point, but don't actually | |
264 pause (@code{edebug-Trace-fast-mode}). | |
265 | |
266 @item g | |
267 Go: run until the next breakpoint (@code{edebug-go-mode}). @xref{Breakpoints}. | |
268 | |
269 @item c | |
270 Continue: pause one second at each breakpoint, and then continue | |
271 (@code{edebug-continue-mode}). | |
272 | |
273 @item C | |
274 Rapid continue: move point to each breakpoint, but don't pause | |
275 (@code{edebug-Continue-fast-mode}). | |
276 | |
277 @item G | |
278 Go non-stop: ignore breakpoints (@code{edebug-Go-nonstop-mode}). You | |
279 can still stop the program by typing @kbd{S}, or any editing command. | |
280 @end table | |
281 | |
282 In general, the execution modes earlier in the above list run the | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
283 program more slowly or stop sooner than the modes later in the list. |
6558 | 284 |
285 While executing or tracing, you can interrupt the execution by typing | |
286 any Edebug command. Edebug stops the program at the next stop point and | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
287 then executes the command you typed. For example, typing @kbd{t} during |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
288 execution switches to trace mode at the next stop point. You can use |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
289 @kbd{S} to stop execution without doing anything else. |
6558 | 290 |
291 If your function happens to read input, a character you type intending | |
292 to interrupt execution may be read by the function instead. You can | |
293 avoid such unintended results by paying attention to when your program | |
294 wants input. | |
295 | |
296 @cindex keyboard macros (Edebug) | |
297 Keyboard macros containing the commands in this section do not | |
298 completely work: exiting from Edebug, to resume the program, loses track | |
299 of the keyboard macro. This is not easy to fix. Also, defining or | |
300 executing a keyboard macro outside of Edebug does not affect commands | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
301 inside Edebug. This is usually an advantage. See also the |
6558 | 302 @code{edebug-continue-kbd-macro} option (@pxref{Edebug Options}). |
303 | |
60498
f779a0469755
(Using Edebug): Arrow is in fringe.
Richard M. Stallman <rms@gnu.org>
parents:
60376
diff
changeset
|
304 When you enter a new Edebug level, the initial execution mode comes |
f779a0469755
(Using Edebug): Arrow is in fringe.
Richard M. Stallman <rms@gnu.org>
parents:
60376
diff
changeset
|
305 from the value of the variable @code{edebug-initial-mode}. |
f779a0469755
(Using Edebug): Arrow is in fringe.
Richard M. Stallman <rms@gnu.org>
parents:
60376
diff
changeset
|
306 (@xref{Edebug Options}.) By default, this specifies step mode. Note |
f779a0469755
(Using Edebug): Arrow is in fringe.
Richard M. Stallman <rms@gnu.org>
parents:
60376
diff
changeset
|
307 that you may reenter the same Edebug level several times if, for |
f779a0469755
(Using Edebug): Arrow is in fringe.
Richard M. Stallman <rms@gnu.org>
parents:
60376
diff
changeset
|
308 example, an instrumented function is called several times from one |
f779a0469755
(Using Edebug): Arrow is in fringe.
Richard M. Stallman <rms@gnu.org>
parents:
60376
diff
changeset
|
309 command. |
6558 | 310 |
52840
590f500fb14b
(Edebug Execution Modes): Clarify t.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
311 @defopt edebug-sit-for-seconds |
590f500fb14b
(Edebug Execution Modes): Clarify t.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
312 This option specifies how many seconds to wait between execution steps |
590f500fb14b
(Edebug Execution Modes): Clarify t.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
313 in trace mode. The default is 1 second. |
52849 | 314 @end defopt |
6558 | 315 |
316 @node Jumping | |
317 @subsection Jumping | |
318 | |
319 The commands described in this section execute until they reach a | |
320 specified location. All except @kbd{i} make a temporary breakpoint to | |
321 establish the place to stop, then switch to go mode. Any other | |
322 breakpoint reached before the intended stop point will also stop | |
323 execution. @xref{Breakpoints}, for the details on breakpoints. | |
324 | |
325 These commands may fail to work as expected in case of nonlocal exit, | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
326 as that can bypass the temporary breakpoint where you expected the |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
327 program to stop. |
6558 | 328 |
329 @table @kbd | |
330 @item h | |
331 Proceed to the stop point near where point is (@code{edebug-goto-here}). | |
332 | |
333 @item f | |
334 Run the program forward over one expression | |
335 (@code{edebug-forward-sexp}). | |
336 | |
337 @item o | |
338 Run the program until the end of the containing sexp. | |
339 | |
340 @item i | |
341 Step into the function or macro called by the form after point. | |
342 @end table | |
343 | |
63452
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
344 The @kbd{h} command proceeds to the stop point at or after the current |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
345 location of point, using a temporary breakpoint. |
6558 | 346 |
347 The @kbd{f} command runs the program forward over one expression. More | |
348 precisely, it sets a temporary breakpoint at the position that | |
349 @kbd{C-M-f} would reach, then executes in go mode so that the program | |
350 will stop at breakpoints. | |
351 | |
352 With a prefix argument @var{n}, the temporary breakpoint is placed | |
353 @var{n} sexps beyond point. If the containing list ends before @var{n} | |
354 more elements, then the place to stop is after the containing | |
355 expression. | |
356 | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
357 You must check that the position @kbd{C-M-f} finds is a place that the |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
358 program will really get to. In @code{cond}, for example, this may not |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
359 be true. |
6558 | 360 |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
361 For flexibility, the @kbd{f} command does @code{forward-sexp} starting |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
362 at point, rather than at the stop point. If you want to execute one |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
363 expression @emph{from the current stop point}, first type @kbd{w}, to |
6558 | 364 move point there, and then type @kbd{f}. |
365 | |
366 The @kbd{o} command continues ``out of'' an expression. It places a | |
367 temporary breakpoint at the end of the sexp containing point. If the | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
368 containing sexp is a function definition itself, @kbd{o} continues until |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
369 just before the last sexp in the definition. If that is where you are |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
370 now, it returns from the function and then stops. In other words, this |
6558 | 371 command does not exit the currently executing function unless you are |
372 positioned after the last sexp. | |
373 | |
374 The @kbd{i} command steps into the function or macro called by the list | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
375 form after point, and stops at its first stop point. Note that the form |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
376 need not be the one about to be evaluated. But if the form is a |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
377 function call about to be evaluated, remember to use this command before |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
378 any of the arguments are evaluated, since otherwise it will be too late. |
6558 | 379 |
380 The @kbd{i} command instruments the function or macro it's supposed to | |
381 step into, if it isn't instrumented already. This is convenient, but keep | |
382 in mind that the function or macro remains instrumented unless you explicitly | |
383 arrange to deinstrument it. | |
384 | |
385 @node Edebug Misc | |
386 @subsection Miscellaneous Edebug Commands | |
387 | |
388 Some miscellaneous Edebug commands are described here. | |
389 | |
390 @table @kbd | |
391 @item ? | |
392 Display the help message for Edebug (@code{edebug-help}). | |
393 | |
394 @item C-] | |
395 Abort one level back to the previous command level | |
396 (@code{abort-recursive-edit}). | |
397 | |
398 @item q | |
399 Return to the top level editor command loop (@code{top-level}). This | |
400 exits all recursive editing levels, including all levels of Edebug | |
401 activity. However, instrumented code protected with | |
402 @code{unwind-protect} or @code{condition-case} forms may resume | |
403 debugging. | |
404 | |
405 @item Q | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
406 Like @kbd{q}, but don't stop even for protected code |
6558 | 407 (@code{top-level-nonstop}). |
408 | |
409 @item r | |
410 Redisplay the most recently known expression result in the echo area | |
411 (@code{edebug-previous-result}). | |
412 | |
413 @item d | |
414 Display a backtrace, excluding Edebug's own functions for clarity | |
415 (@code{edebug-backtrace}). | |
416 | |
417 You cannot use debugger commands in the backtrace buffer in Edebug as | |
418 you would in the standard debugger. | |
419 | |
420 The backtrace buffer is killed automatically when you continue | |
421 execution. | |
422 @end table | |
423 | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
424 You can invoke commands from Edebug that activate Edebug again |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
425 recursively. Whenever Edebug is active, you can quit to the top level |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
426 with @kbd{q} or abort one recursive edit level with @kbd{C-]}. You can |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
427 display a backtrace of all the pending evaluations with @kbd{d}. |
6558 | 428 |
63452
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
429 @node Breaks |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
430 @subsection Breaks |
6558 | 431 |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
432 Edebug's step mode stops execution when the next stop point is reached. |
6558 | 433 There are three other ways to stop Edebug execution once it has started: |
434 breakpoints, the global break condition, and source breakpoints. | |
435 | |
63452
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
436 @menu |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
437 * Breakpoints:: Breakpoints at stop points. |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
438 * Global Break Condition:: Breaking on an event. |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
439 * Source Breakpoints:: Embedding breakpoints in source code. |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
440 @end menu |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
441 |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
442 @node Breakpoints |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
443 @subsubsection Breakpoints |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
444 |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
445 @cindex breakpoints |
6558 | 446 While using Edebug, you can specify @dfn{breakpoints} in the program you |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
447 are testing: these are places where execution should stop. You can set a |
6558 | 448 breakpoint at any stop point, as defined in @ref{Using Edebug}. For |
449 setting and unsetting breakpoints, the stop point that is affected is | |
450 the first one at or after point in the source code buffer. Here are the | |
451 Edebug commands for breakpoints: | |
452 | |
453 @table @kbd | |
454 @item b | |
455 Set a breakpoint at the stop point at or after point | |
456 (@code{edebug-set-breakpoint}). If you use a prefix argument, the | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
457 breakpoint is temporary---it turns off the first time it stops the |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
458 program. |
6558 | 459 |
460 @item u | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
461 Unset the breakpoint (if any) at the stop point at or after |
6558 | 462 point (@code{edebug-unset-breakpoint}). |
463 | |
464 @item x @var{condition} @key{RET} | |
465 Set a conditional breakpoint which stops the program only if | |
466 @var{condition} evaluates to a non-@code{nil} value | |
467 (@code{edebug-set-conditional-breakpoint}). With a prefix argument, the | |
468 breakpoint is temporary. | |
469 | |
470 @item B | |
16736
981e116b4ac6
Minor cleanups for overfull hboxes.
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
471 Move point to the next breakpoint in the current definition |
6558 | 472 (@code{edebug-next-breakpoint}). |
473 @end table | |
474 | |
475 While in Edebug, you can set a breakpoint with @kbd{b} and unset one | |
476 with @kbd{u}. First move point to the Edebug stop point of your choice, | |
477 then type @kbd{b} or @kbd{u} to set or unset a breakpoint there. | |
478 Unsetting a breakpoint where none has been set has no effect. | |
479 | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
480 Re-evaluating or reinstrumenting a definition removes all of its |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
481 previous breakpoints. |
6558 | 482 |
483 A @dfn{conditional breakpoint} tests a condition each time the program | |
484 gets there. Any errors that occur as a result of evaluating the | |
485 condition are ignored, as if the result were @code{nil}. To set a | |
486 conditional breakpoint, use @kbd{x}, and specify the condition | |
487 expression in the minibuffer. Setting a conditional breakpoint at a | |
488 stop point that has a previously established conditional breakpoint puts | |
489 the previous condition expression in the minibuffer so you can edit it. | |
490 | |
491 You can make a conditional or unconditional breakpoint | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
492 @dfn{temporary} by using a prefix argument with the command to set the |
6558 | 493 breakpoint. When a temporary breakpoint stops the program, it is |
494 automatically unset. | |
495 | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
496 Edebug always stops or pauses at a breakpoint, except when the Edebug |
6558 | 497 mode is Go-nonstop. In that mode, it ignores breakpoints entirely. |
498 | |
499 To find out where your breakpoints are, use the @kbd{B} command, which | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
500 moves point to the next breakpoint following point, within the same |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
501 function, or to the first breakpoint if there are no following |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
502 breakpoints. This command does not continue execution---it just moves |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
503 point in the buffer. |
6558 | 504 |
505 @node Global Break Condition | |
506 @subsubsection Global Break Condition | |
507 | |
508 @cindex stopping on events | |
509 @cindex global break condition | |
510 A @dfn{global break condition} stops execution when a specified | |
511 condition is satisfied, no matter where that may occur. Edebug | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
512 evaluates the global break condition at every stop point; if it |
6558 | 513 evaluates to a non-@code{nil} value, then execution stops or pauses |
514 depending on the execution mode, as if a breakpoint had been hit. If | |
515 evaluating the condition gets an error, execution does not stop. | |
516 | |
517 @findex edebug-set-global-break-condition | |
16736
981e116b4ac6
Minor cleanups for overfull hboxes.
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
518 The condition expression is stored in |
981e116b4ac6
Minor cleanups for overfull hboxes.
Richard M. Stallman <rms@gnu.org>
parents:
12098
diff
changeset
|
519 @code{edebug-global-break-condition}. You can specify a new expression |
63452
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
520 using the @kbd{X} command from the source code buffer while Edebug is |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
521 active, or using @kbd{C-x X X} from any buffer at any time, as long as |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
522 Edebug is loaded (@code{edebug-set-global-break-condition}). |
6558 | 523 |
524 The global break condition is the simplest way to find where in your | |
525 code some event occurs, but it makes code run much more slowly. So you | |
526 should reset the condition to @code{nil} when not using it. | |
527 | |
528 @node Source Breakpoints | |
529 @subsubsection Source Breakpoints | |
530 | |
531 @findex edebug | |
532 @cindex source breakpoints | |
533 All breakpoints in a definition are forgotten each time you | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
534 reinstrument it. If you wish to make a breakpoint that won't be |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
535 forgotten, you can write a @dfn{source breakpoint}, which is simply a |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
536 call to the function @code{edebug} in your source code. You can, of |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
537 course, make such a call conditional. For example, in the @code{fac} |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
538 function, you can insert the first line as shown below, to stop when the |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
539 argument reaches zero: |
6558 | 540 |
541 @example | |
542 (defun fac (n) | |
543 (if (= n 0) (edebug)) | |
544 (if (< 0 n) | |
545 (* n (fac (1- n))) | |
546 1)) | |
547 @end example | |
548 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
549 When the @code{fac} definition is instrumented and the function is |
6558 | 550 called, the call to @code{edebug} acts as a breakpoint. Depending on |
551 the execution mode, Edebug stops or pauses there. | |
552 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
553 If no instrumented code is being executed when @code{edebug} is called, |
6558 | 554 that function calls @code{debug}. |
555 @c This may not be a good idea anymore. | |
556 | |
557 @node Trapping Errors | |
558 @subsection Trapping Errors | |
559 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
560 Emacs normally displays an error message when an error is signaled and |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
561 not handled with @code{condition-case}. While Edebug is active and |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
562 executing instrumented code, it normally responds to all unhandled |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
563 errors. You can customize this with the options @code{edebug-on-error} |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
564 and @code{edebug-on-quit}; see @ref{Edebug Options}. |
6558 | 565 |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
566 When Edebug responds to an error, it shows the last stop point |
6558 | 567 encountered before the error. This may be the location of a call to a |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
568 function which was not instrumented, and within which the error actually |
6558 | 569 occurred. For an unbound variable error, the last known stop point |
570 might be quite distant from the offending variable reference. In that | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
571 case, you might want to display a full backtrace (@pxref{Edebug Misc}). |
6558 | 572 |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
573 @c Edebug should be changed for the following: -- dan |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
574 If you change @code{debug-on-error} or @code{debug-on-quit} while |
6558 | 575 Edebug is active, these changes will be forgotten when Edebug becomes |
576 inactive. Furthermore, during Edebug's recursive edit, these variables | |
577 are bound to the values they had outside of Edebug. | |
578 | |
579 @node Edebug Views | |
580 @subsection Edebug Views | |
581 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
582 These Edebug commands let you view aspects of the buffer and window |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
583 status as they were before entry to Edebug. The outside window |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
584 configuration is the collection of windows and contents that were in |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
585 effect outside of Edebug. |
6558 | 586 |
587 @table @kbd | |
588 @item v | |
63452
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
589 View the outside window configuration (@code{edebug-view-outside}). |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
590 Type @kbd{C-x X w} to return to Edebug. |
6558 | 591 |
592 @item p | |
63452
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
593 Temporarily display the outside current buffer with point at its |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
594 outside position (@code{edebug-bounce-point}), pausing for one second |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
595 before returning to Edebug. With a prefix argument @var{n}, pause for |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
596 @var{n} seconds instead. |
6558 | 597 |
598 @item w | |
22252
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
599 Move point back to the current stop point in the source code buffer |
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
600 (@code{edebug-where}). |
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
601 |
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
602 If you use this command in a different window displaying the same |
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
603 buffer, that window will be used instead to display the current |
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
604 definition in the future. |
6558 | 605 |
606 @item W | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
607 @c Its function is not simply to forget the saved configuration -- dan |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
608 Toggle whether Edebug saves and restores the outside window |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
609 configuration (@code{edebug-toggle-save-windows}). |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
610 |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
611 With a prefix argument, @code{W} only toggles saving and restoring of |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
612 the selected window. To specify a window that is not displaying the |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
613 source code buffer, you must use @kbd{C-x X W} from the global keymap. |
6558 | 614 @end table |
615 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
616 You can view the outside window configuration with @kbd{v} or just |
6558 | 617 bounce to the point in the current buffer with @kbd{p}, even if |
63452
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
618 it is not normally displayed. |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
619 |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
620 After moving point, you may wish to jump back to the stop point. |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
621 You can do that with @kbd{w} from a source code buffer. You can jump |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
622 back to the stop point in the source code buffer from any buffer using |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
623 @kbd{C-x X w}. |
6558 | 624 |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
625 Each time you use @kbd{W} to turn saving @emph{off}, Edebug forgets the |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
626 saved outside window configuration---so that even if you turn saving |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
627 back @emph{on}, the current window configuration remains unchanged when |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
628 you next exit Edebug (by continuing the program). However, the |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
629 automatic redisplay of @samp{*edebug*} and @samp{*edebug-trace*} may |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
630 conflict with the buffers you wish to see unless you have enough windows |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
631 open. |
6558 | 632 |
633 @node Edebug Eval | |
634 @subsection Evaluation | |
635 | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
636 While within Edebug, you can evaluate expressions ``as if'' Edebug |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
637 were not running. Edebug tries to be invisible to the expression's |
6558 | 638 evaluation and printing. Evaluation of expressions that cause side |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
639 effects will work as expected, except for changes to data that Edebug |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
640 explicitly saves and restores. @xref{The Outside Context}, for details |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
641 on this process. |
6558 | 642 |
643 @table @kbd | |
644 @item e @var{exp} @key{RET} | |
645 Evaluate expression @var{exp} in the context outside of Edebug | |
646 (@code{edebug-eval-expression}). That is, Edebug tries to minimize its | |
647 interference with the evaluation. | |
648 | |
12098 | 649 @item M-: @var{exp} @key{RET} |
6558 | 650 Evaluate expression @var{exp} in the context of Edebug itself. |
651 | |
652 @item C-x C-e | |
653 Evaluate the expression before point, in the context outside of Edebug | |
654 (@code{edebug-eval-last-sexp}). | |
655 @end table | |
656 | |
657 @cindex lexical binding (Edebug) | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
658 Edebug supports evaluation of expressions containing references to |
6558 | 659 lexically bound symbols created by the following constructs in |
660 @file{cl.el} (version 2.03 or later): @code{lexical-let}, | |
661 @code{macrolet}, and @code{symbol-macrolet}. | |
662 | |
663 @node Eval List | |
664 @subsection Evaluation List Buffer | |
665 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
666 You can use the @dfn{evaluation list buffer}, called @samp{*edebug*}, to |
6558 | 667 evaluate expressions interactively. You can also set up the |
668 @dfn{evaluation list} of expressions to be evaluated automatically each | |
669 time Edebug updates the display. | |
670 | |
671 @table @kbd | |
672 @item E | |
673 Switch to the evaluation list buffer @samp{*edebug*} | |
674 (@code{edebug-visit-eval-list}). | |
675 @end table | |
676 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
677 In the @samp{*edebug*} buffer you can use the commands of Lisp |
6558 | 678 Interaction mode (@pxref{Lisp Interaction,,, emacs, The GNU Emacs |
679 Manual}) as well as these special commands: | |
680 | |
681 @table @kbd | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
682 @item C-j |
6558 | 683 Evaluate the expression before point, in the outside context, and insert |
684 the value in the buffer (@code{edebug-eval-print-last-sexp}). | |
685 | |
686 @item C-x C-e | |
687 Evaluate the expression before point, in the context outside of Edebug | |
688 (@code{edebug-eval-last-sexp}). | |
689 | |
690 @item C-c C-u | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
691 Build a new evaluation list from the contents of the buffer |
6558 | 692 (@code{edebug-update-eval-list}). |
693 | |
694 @item C-c C-d | |
695 Delete the evaluation list group that point is in | |
696 (@code{edebug-delete-eval-item}). | |
697 | |
698 @item C-c C-w | |
699 Switch back to the source code buffer at the current stop point | |
700 (@code{edebug-where}). | |
701 @end table | |
702 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
703 You can evaluate expressions in the evaluation list window with |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
704 @kbd{C-j} or @kbd{C-x C-e}, just as you would in @samp{*scratch*}; |
6558 | 705 but they are evaluated in the context outside of Edebug. |
706 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
707 The expressions you enter interactively (and their results) are lost |
6558 | 708 when you continue execution; but you can set up an @dfn{evaluation list} |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
709 consisting of expressions to be evaluated each time execution stops. |
6558 | 710 |
711 @cindex evaluation list group | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
712 To do this, write one or more @dfn{evaluation list groups} in the |
6558 | 713 evaluation list buffer. An evaluation list group consists of one or |
714 more Lisp expressions. Groups are separated by comment lines. | |
715 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
716 The command @kbd{C-c C-u} (@code{edebug-update-eval-list}) rebuilds the |
6558 | 717 evaluation list, scanning the buffer and using the first expression of |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
718 each group. (The idea is that the second expression of the group is the |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
719 value previously computed and displayed.) |
6558 | 720 |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
721 Each entry to Edebug redisplays the evaluation list by inserting each |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
722 expression in the buffer, followed by its current value. It also |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
723 inserts comment lines so that each expression becomes its own group. |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
724 Thus, if you type @kbd{C-c C-u} again without changing the buffer text, |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
725 the evaluation list is effectively unchanged. |
6558 | 726 |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
727 If an error occurs during an evaluation from the evaluation list, the |
6558 | 728 error message is displayed in a string as if it were the result. |
729 Therefore, expressions that use variables not currently valid do not | |
730 interrupt your debugging. | |
731 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
732 Here is an example of what the evaluation list window looks like after |
6558 | 733 several expressions have been added to it: |
734 | |
735 @smallexample | |
736 (current-buffer) | |
737 #<buffer *scratch*> | |
738 ;--------------------------------------------------------------- | |
739 (selected-window) | |
740 #<window 16 on *scratch*> | |
741 ;--------------------------------------------------------------- | |
742 (point) | |
743 196 | |
744 ;--------------------------------------------------------------- | |
745 bad-var | |
746 "Symbol's value as variable is void: bad-var" | |
747 ;--------------------------------------------------------------- | |
748 (recursion-depth) | |
749 0 | |
750 ;--------------------------------------------------------------- | |
751 this-command | |
752 eval-last-sexp | |
753 ;--------------------------------------------------------------- | |
754 @end smallexample | |
755 | |
756 To delete a group, move point into it and type @kbd{C-c C-d}, or simply | |
757 delete the text for the group and update the evaluation list with | |
758 @kbd{C-c C-u}. To add a new expression to the evaluation list, insert | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
759 the expression at a suitable place, insert a new comment line, then type |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
760 @kbd{C-c C-u}. You need not insert dashes in the comment line---its |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
761 contents don't matter. |
6558 | 762 |
763 After selecting @samp{*edebug*}, you can return to the source code | |
764 buffer with @kbd{C-c C-w}. The @samp{*edebug*} buffer is killed when | |
765 you continue execution, and recreated next time it is needed. | |
766 | |
767 @node Printing in Edebug | |
768 @subsection Printing in Edebug | |
769 | |
770 @cindex printing (Edebug) | |
771 @cindex printing circular structures | |
772 @pindex cust-print | |
773 If an expression in your program produces a value containing circular | |
774 list structure, you may get an error when Edebug attempts to print it. | |
775 | |
776 One way to cope with circular structure is to set @code{print-length} | |
777 or @code{print-level} to truncate the printing. Edebug does this for | |
778 you; it binds @code{print-length} and @code{print-level} to 50 if they | |
779 were @code{nil}. (Actually, the variables @code{edebug-print-length} | |
780 and @code{edebug-print-level} specify the values to use within Edebug.) | |
781 @xref{Output Variables}. | |
782 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
783 @defopt edebug-print-length |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
784 If non-@code{nil}, Edebug binds @code{print-length} to this value while |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
785 printing results. The default value is @code{50}. |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
786 @end defopt |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
787 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
788 @defopt edebug-print-level |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
789 If non-@code{nil}, Edebug binds @code{print-level} to this value while |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
790 printing results. The default value is @code{50}. |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
791 @end defopt |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
792 |
6558 | 793 You can also print circular structures and structures that share |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
794 elements more informatively by binding @code{print-circle} |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
795 to a non-@code{nil} value. |
6558 | 796 |
797 Here is an example of code that creates a circular structure: | |
798 | |
799 @example | |
800 (setq a '(x y)) | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
801 (setcar a a) |
6558 | 802 @end example |
803 | |
804 @noindent | |
805 Custom printing prints this as @samp{Result: #1=(#1# y)}. The | |
806 @samp{#1=} notation labels the structure that follows it with the label | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
807 @samp{1}, and the @samp{#1#} notation references the previously labeled |
6558 | 808 structure. This notation is used for any shared elements of lists or |
809 vectors. | |
810 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
811 @defopt edebug-print-circle |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
812 If non-@code{nil}, Edebug binds @code{print-circle} to this value while |
59876
59d6cfcd4c9a
(Printing in Edebug): Fix edebug-print-circle.
Richard M. Stallman <rms@gnu.org>
parents:
54024
diff
changeset
|
813 printing results. The default value is @code{t}. |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
814 @end defopt |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
815 |
6558 | 816 Other programs can also use custom printing; see @file{cust-print.el} |
817 for details. | |
818 | |
819 @node Trace Buffer | |
820 @subsection Trace Buffer | |
821 @cindex trace buffer | |
822 | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
823 Edebug can record an execution trace, storing it in a buffer named |
6558 | 824 @samp{*edebug-trace*}. This is a log of function calls and returns, |
825 showing the function names and their arguments and values. To enable | |
826 trace recording, set @code{edebug-trace} to a non-@code{nil} value. | |
827 | |
828 Making a trace buffer is not the same thing as using trace execution | |
829 mode (@pxref{Edebug Execution Modes}). | |
830 | |
831 When trace recording is enabled, each function entry and exit adds | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
832 lines to the trace buffer. A function entry record consists of |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
833 @samp{::::@{}, followed by the function name and argument values. A |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
834 function exit record consists of @samp{::::@}}, followed by the function |
6558 | 835 name and result of the function. |
836 | |
837 The number of @samp{:}s in an entry shows its recursion depth. You | |
838 can use the braces in the trace buffer to find the matching beginning or | |
839 end of function calls. | |
840 | |
841 @findex edebug-print-trace-before | |
842 @findex edebug-print-trace-after | |
843 You can customize trace recording for function entry and exit by | |
844 redefining the functions @code{edebug-print-trace-before} and | |
845 @code{edebug-print-trace-after}. | |
846 | |
847 @defmac edebug-tracing string body@dots{} | |
848 This macro requests additional trace information around the execution | |
849 of the @var{body} forms. The argument @var{string} specifies text | |
63452
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
850 to put in the trace buffer, after the @samp{@{} or @samp{@}}. All |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
851 the arguments are evaluated, and @code{edebug-tracing} returns the |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
852 value of the last form in @var{body}. |
6558 | 853 @end defmac |
854 | |
855 @defun edebug-trace format-string &rest format-args | |
856 This function inserts text in the trace buffer. It computes the text | |
857 with @code{(apply 'format @var{format-string} @var{format-args})}. | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
858 It also appends a newline to separate entries. |
6558 | 859 @end defun |
860 | |
22252
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
861 @code{edebug-tracing} and @code{edebug-trace} insert lines in the |
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
862 trace buffer whenever they are called, even if Edebug is not active. |
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
863 Adding text to the trace buffer also scrolls its window to show the last |
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
864 lines inserted. |
6558 | 865 |
866 @node Coverage Testing | |
867 @subsection Coverage Testing | |
868 | |
869 @cindex coverage testing | |
870 @cindex frequency counts | |
871 @cindex performance analysis | |
872 Edebug provides rudimentary coverage testing and display of execution | |
22252
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
873 frequency. |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
874 |
22252
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
875 Coverage testing works by comparing the result of each expression with |
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
876 the previous result; each form in the program is considered ``covered'' |
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
877 if it has returned two different values since you began testing coverage |
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
878 in the current Emacs session. Thus, to do coverage testing on your |
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
879 program, execute it under various conditions and note whether it behaves |
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
880 correctly; Edebug will tell you when you have tried enough different |
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
881 conditions that each form has returned two different values. |
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
882 |
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
883 Coverage testing makes execution slower, so it is only done if |
22267
dfac7398266b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22252
diff
changeset
|
884 @code{edebug-test-coverage} is non-@code{nil}. Frequency counting is |
dfac7398266b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22252
diff
changeset
|
885 performed for all execution of an instrumented function, even if the |
dfac7398266b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22252
diff
changeset
|
886 execution mode is Go-nonstop, and regardless of whether coverage testing |
dfac7398266b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22252
diff
changeset
|
887 is enabled. |
22252
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
888 |
52840
590f500fb14b
(Edebug Execution Modes): Clarify t.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
889 @kindex C-x X = |
590f500fb14b
(Edebug Execution Modes): Clarify t.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
890 @findex edebug-temp-display-freq-count |
590f500fb14b
(Edebug Execution Modes): Clarify t.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
891 Use @kbd{C-x X =} (@code{edebug-display-freq-count}) to display both |
590f500fb14b
(Edebug Execution Modes): Clarify t.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
892 the coverage information and the frequency counts for a definition. |
590f500fb14b
(Edebug Execution Modes): Clarify t.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
893 Just @kbd{=} (@code{edebug-temp-display-freq-count}) displays the same |
590f500fb14b
(Edebug Execution Modes): Clarify t.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
894 information temporarily, only until you type another key. |
6558 | 895 |
896 @deffn Command edebug-display-freq-count | |
897 This command displays the frequency count data for each line of the | |
898 current definition. | |
899 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
900 The frequency counts appear as comment lines after each line of code, |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
901 and you can undo all insertions with one @code{undo} command. The |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
902 counts appear under the @samp{(} before an expression or the @samp{)} |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
903 after an expression, or on the last character of a variable. To |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
904 simplify the display, a count is not shown if it is equal to the |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
905 count of an earlier expression on the same line. |
6558 | 906 |
907 The character @samp{=} following the count for an expression says that | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
908 the expression has returned the same value each time it was evaluated. |
22252
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
909 In other words, it is not yet ``covered'' for coverage testing purposes. |
6558 | 910 |
911 To clear the frequency count and coverage data for a definition, | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
912 simply reinstrument it with @code{eval-defun}. |
6558 | 913 @end deffn |
914 | |
915 For example, after evaluating @code{(fac 5)} with a source | |
916 breakpoint, and setting @code{edebug-test-coverage} to @code{t}, when | |
917 the breakpoint is reached, the frequency data looks like this: | |
918 | |
919 @example | |
920 (defun fac (n) | |
921 (if (= n 0) (edebug)) | |
59876
59d6cfcd4c9a
(Printing in Edebug): Fix edebug-print-circle.
Richard M. Stallman <rms@gnu.org>
parents:
54024
diff
changeset
|
922 ;#6 1 = =5 |
6558 | 923 (if (< 0 n) |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
924 ;#5 = |
6558 | 925 (* n (fac (1- n))) |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
926 ;# 5 0 |
6558 | 927 1)) |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
928 ;# 0 |
6558 | 929 @end example |
930 | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
931 The comment lines show that @code{fac} was called 6 times. The |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
932 first @code{if} statement returned 5 times with the same result each |
6558 | 933 time; the same is true of the condition on the second @code{if}. |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
934 The recursive call of @code{fac} did not return at all. |
6558 | 935 |
936 | |
937 @node The Outside Context | |
938 @subsection The Outside Context | |
939 | |
940 Edebug tries to be transparent to the program you are debugging, but it | |
941 does not succeed completely. Edebug also tries to be transparent when | |
942 you evaluate expressions with @kbd{e} or with the evaluation list | |
943 buffer, by temporarily restoring the outside context. This section | |
944 explains precisely what context Edebug restores, and how Edebug fails to | |
945 be completely transparent. | |
946 | |
947 @menu | |
948 * Checking Whether to Stop:: When Edebug decides what to do. | |
949 * Edebug Display Update:: When Edebug updates the display. | |
950 * Edebug Recursive Edit:: When Edebug stops execution. | |
951 @end menu | |
952 | |
953 @node Checking Whether to Stop | |
954 @subsubsection Checking Whether to Stop | |
955 | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
956 Whenever Edebug is entered, it needs to save and restore certain data |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
957 before even deciding whether to make trace information or stop the |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
958 program. |
6558 | 959 |
960 @itemize @bullet | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
961 @item |
6558 | 962 @code{max-lisp-eval-depth} and @code{max-specpdl-size} are both |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
963 incremented once to reduce Edebug's impact on the stack. You could, |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
964 however, still run out of stack space when using Edebug. |
6558 | 965 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
966 @item |
6558 | 967 The state of keyboard macro execution is saved and restored. While |
61985
2afdce105d7a
(Checking Whether to Stop): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
61975
diff
changeset
|
968 Edebug is active, @code{executing-kbd-macro} is bound to @code{nil} |
2afdce105d7a
(Checking Whether to Stop): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
61975
diff
changeset
|
969 unless @code{edebug-continue-kbd-macro} is non-@code{nil}. |
6558 | 970 @end itemize |
971 | |
972 | |
973 @node Edebug Display Update | |
974 @subsubsection Edebug Display Update | |
975 | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
976 @c This paragraph is not filled, because LaLiberte's conversion script |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
977 @c needs an xref to be on just one line. |
6558 | 978 When Edebug needs to display something (e.g., in trace mode), it saves |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
979 the current window configuration from ``outside'' Edebug |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
980 (@pxref{Window Configurations}). When you exit Edebug (by continuing |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
981 the program), it restores the previous window configuration. |
6558 | 982 |
983 Emacs redisplays only when it pauses. Usually, when you continue | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
984 execution, the program re-enters Edebug at a breakpoint or after |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
985 stepping, without pausing or reading input in between. In such cases, |
6558 | 986 Emacs never gets a chance to redisplay the ``outside'' configuration. |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
987 Consequently, what you see is the same window configuration as the last |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
988 time Edebug was active, with no interruption. |
6558 | 989 |
990 Entry to Edebug for displaying something also saves and restores the | |
25751
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
991 following data (though some of them are deliberately not restored if an |
467b88fab665
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22267
diff
changeset
|
992 error or quit signal occurs). |
6558 | 993 |
994 @itemize @bullet | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
995 @item |
6558 | 996 @cindex current buffer point and mark (Edebug) |
997 Which buffer is current, and the positions of point and the mark in the | |
998 current buffer, are saved and restored. | |
999 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
1000 @item |
6558 | 1001 @cindex window configuration (Edebug) |
1002 The outside window configuration is saved and restored if | |
63452
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
1003 @code{edebug-save-windows} is non-@code{nil} (@pxref{Edebug Options}). |
6558 | 1004 |
1005 The window configuration is not restored on error or quit, but the | |
1006 outside selected window @emph{is} reselected even on error or quit in | |
1007 case a @code{save-excursion} is active. If the value of | |
1008 @code{edebug-save-windows} is a list, only the listed windows are saved | |
1009 and restored. | |
1010 | |
1011 The window start and horizontal scrolling of the source code buffer are | |
1012 not restored, however, so that the display remains coherent within Edebug. | |
1013 | |
1014 @item | |
1015 The value of point in each displayed buffer is saved and restored if | |
1016 @code{edebug-save-displayed-buffer-points} is non-@code{nil}. | |
1017 | |
1018 @item | |
1019 The variables @code{overlay-arrow-position} and | |
1020 @code{overlay-arrow-string} are saved and restored. So you can safely | |
1021 invoke Edebug from the recursive edit elsewhere in the same buffer. | |
1022 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
1023 @item |
6558 | 1024 @code{cursor-in-echo-area} is locally bound to @code{nil} so that |
1025 the cursor shows up in the window. | |
1026 @end itemize | |
1027 | |
1028 @node Edebug Recursive Edit | |
1029 @subsubsection Edebug Recursive Edit | |
1030 | |
1031 When Edebug is entered and actually reads commands from the user, it | |
1032 saves (and later restores) these additional data: | |
1033 | |
1034 @itemize @bullet | |
1035 @item | |
1036 The current match data. @xref{Match Data}. | |
1037 | |
1038 @item | |
1039 @code{last-command}, @code{this-command}, @code{last-command-char}, | |
1040 @code{last-input-char}, @code{last-input-event}, | |
1041 @code{last-command-event}, @code{last-event-frame}, | |
1042 @code{last-nonmenu-event}, and @code{track-mouse}. Commands used within | |
1043 Edebug do not affect these variables outside of Edebug. | |
1044 | |
1045 The key sequence returned by @code{this-command-keys} is changed by | |
1046 executing commands within Edebug and there is no way to reset | |
1047 the key sequence from Lisp. | |
1048 | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1049 Edebug cannot save and restore the value of |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1050 @code{unread-command-events}. Entering Edebug while this variable has a |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1051 nontrivial value can interfere with execution of the program you are |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1052 debugging. |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1053 |
6558 | 1054 @item |
1055 Complex commands executed while in Edebug are added to the variable | |
1056 @code{command-history}. In rare cases this can alter execution. | |
1057 | |
1058 @item | |
1059 Within Edebug, the recursion depth appears one deeper than the recursion | |
1060 depth outside Edebug. This is not true of the automatically updated | |
1061 evaluation list window. | |
1062 | |
1063 @item | |
1064 @code{standard-output} and @code{standard-input} are bound to @code{nil} | |
1065 by the @code{recursive-edit}, but Edebug temporarily restores them during | |
1066 evaluations. | |
1067 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
1068 @item |
6558 | 1069 The state of keyboard macro definition is saved and restored. While |
1070 Edebug is active, @code{defining-kbd-macro} is bound to | |
1071 @code{edebug-continue-kbd-macro}. | |
1072 @end itemize | |
1073 | |
63452
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
1074 @node Edebug and Macros |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
1075 @subsection Edebug and Macros |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
1076 |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
1077 To make Edebug properly instrument expressions that call macros, some |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
1078 extra care is needed. This subsection explains the details. |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
1079 |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
1080 @menu |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
1081 * Instrumenting Macro Calls:: The basic problem. |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
1082 * Specification List:: How to specify complex patterns of evaluation. |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
1083 * Backtracking:: What Edebug does when matching fails. |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
1084 * Specification Examples:: To help understand specifications. |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
1085 @end menu |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
1086 |
6558 | 1087 @node Instrumenting Macro Calls |
63452
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
1088 @subsubsection Instrumenting Macro Calls |
6558 | 1089 |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
1090 When Edebug instruments an expression that calls a Lisp macro, it needs |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
1091 additional information about the macro to do the job properly. This is |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
1092 because there is no a-priori way to tell which subexpressions of the |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
1093 macro call are forms to be evaluated. (Evaluation may occur explicitly |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
1094 in the macro body, or when the resulting expansion is evaluated, or any |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
1095 time later.) |
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
1096 |
44674
dc4f42a216d8
Explain use of `declare'.
Richard M. Stallman <rms@gnu.org>
parents:
27189
diff
changeset
|
1097 Therefore, you must define an Edebug specification for each macro |
dc4f42a216d8
Explain use of `declare'.
Richard M. Stallman <rms@gnu.org>
parents:
27189
diff
changeset
|
1098 that Edebug will encounter, to explain the format of calls to that |
60616
f028c143bfe6
(Instrumenting Macro Calls): Fix typos.
Lute Kamstra <lute@gnu.org>
parents:
60498
diff
changeset
|
1099 macro. To do this, add a @code{debug} declaration to the macro |
44674
dc4f42a216d8
Explain use of `declare'.
Richard M. Stallman <rms@gnu.org>
parents:
27189
diff
changeset
|
1100 definition. Here is a simple example that shows the specification for |
dc4f42a216d8
Explain use of `declare'.
Richard M. Stallman <rms@gnu.org>
parents:
27189
diff
changeset
|
1101 the @code{for} example macro (@pxref{Argument Evaluation}). |
dc4f42a216d8
Explain use of `declare'.
Richard M. Stallman <rms@gnu.org>
parents:
27189
diff
changeset
|
1102 |
dc4f42a216d8
Explain use of `declare'.
Richard M. Stallman <rms@gnu.org>
parents:
27189
diff
changeset
|
1103 @example |
dc4f42a216d8
Explain use of `declare'.
Richard M. Stallman <rms@gnu.org>
parents:
27189
diff
changeset
|
1104 (defmacro for (var from init to final do &rest body) |
dc4f42a216d8
Explain use of `declare'.
Richard M. Stallman <rms@gnu.org>
parents:
27189
diff
changeset
|
1105 "Execute a simple \"for\" loop. |
dc4f42a216d8
Explain use of `declare'.
Richard M. Stallman <rms@gnu.org>
parents:
27189
diff
changeset
|
1106 For example, (for i from 1 to 10 do (print i))." |
60772
e6c6bee5ad7f
(Instrumenting Macro Calls): Fix another typo.
Lute Kamstra <lute@gnu.org>
parents:
60616
diff
changeset
|
1107 (declare (debug (symbolp "from" form "to" form "do" &rest form))) |
44674
dc4f42a216d8
Explain use of `declare'.
Richard M. Stallman <rms@gnu.org>
parents:
27189
diff
changeset
|
1108 ...) |
dc4f42a216d8
Explain use of `declare'.
Richard M. Stallman <rms@gnu.org>
parents:
27189
diff
changeset
|
1109 @end example |
dc4f42a216d8
Explain use of `declare'.
Richard M. Stallman <rms@gnu.org>
parents:
27189
diff
changeset
|
1110 |
52840
590f500fb14b
(Edebug Execution Modes): Clarify t.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1111 The Edebug specification says which parts of a call to the macro are |
52142
187f0047b980
(Instrumenting Macro Calls): Don't define `declare' here;
Richard M. Stallman <rms@gnu.org>
parents:
51652
diff
changeset
|
1112 forms to be evaluated. For simple macros, the @var{specification} |
187f0047b980
(Instrumenting Macro Calls): Don't define `declare' here;
Richard M. Stallman <rms@gnu.org>
parents:
51652
diff
changeset
|
1113 often looks very similar to the formal argument list of the macro |
187f0047b980
(Instrumenting Macro Calls): Don't define `declare' here;
Richard M. Stallman <rms@gnu.org>
parents:
51652
diff
changeset
|
1114 definition, but specifications are much more general than macro |
187f0047b980
(Instrumenting Macro Calls): Don't define `declare' here;
Richard M. Stallman <rms@gnu.org>
parents:
51652
diff
changeset
|
1115 arguments. @xref{Defining Macros}, for more explanation of |
53592
26d79d579570
(Instrumenting Macro Calls): `declare' is not a special form.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52849
diff
changeset
|
1116 the @code{declare} form. |
44674
dc4f42a216d8
Explain use of `declare'.
Richard M. Stallman <rms@gnu.org>
parents:
27189
diff
changeset
|
1117 |
52142
187f0047b980
(Instrumenting Macro Calls): Don't define `declare' here;
Richard M. Stallman <rms@gnu.org>
parents:
51652
diff
changeset
|
1118 You can also define an edebug specification for a macro separately |
44674
dc4f42a216d8
Explain use of `declare'.
Richard M. Stallman <rms@gnu.org>
parents:
27189
diff
changeset
|
1119 from the macro definition with @code{def-edebug-spec}. Adding |
60616
f028c143bfe6
(Instrumenting Macro Calls): Fix typos.
Lute Kamstra <lute@gnu.org>
parents:
60498
diff
changeset
|
1120 @code{debug} declarations is preferred, and more convenient, for macro |
f028c143bfe6
(Instrumenting Macro Calls): Fix typos.
Lute Kamstra <lute@gnu.org>
parents:
60498
diff
changeset
|
1121 definitions in Lisp, but @code{def-edebug-spec} makes it possible to |
f028c143bfe6
(Instrumenting Macro Calls): Fix typos.
Lute Kamstra <lute@gnu.org>
parents:
60498
diff
changeset
|
1122 define Edebug specifications for special forms implemented in C. |
6558 | 1123 |
1124 @deffn Macro def-edebug-spec macro specification | |
1125 Specify which expressions of a call to macro @var{macro} are forms to be | |
44674
dc4f42a216d8
Explain use of `declare'.
Richard M. Stallman <rms@gnu.org>
parents:
27189
diff
changeset
|
1126 evaluated. @var{specification} should be the edebug specification. |
63452
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
1127 Neither argument is evaluated. |
6558 | 1128 |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
1129 The @var{macro} argument can actually be any symbol, not just a macro |
6558 | 1130 name. |
1131 @end deffn | |
1132 | |
1133 Here is a table of the possibilities for @var{specification} and how each | |
1134 directs processing of arguments. | |
1135 | |
7734 | 1136 @table @asis |
6558 | 1137 @item @code{t} |
1138 All arguments are instrumented for evaluation. | |
1139 | |
1140 @item @code{0} | |
1141 None of the arguments is instrumented. | |
1142 | |
1143 @item a symbol | |
1144 The symbol must have an Edebug specification which is used instead. | |
1145 This indirection is repeated until another kind of specification is | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1146 found. This allows you to inherit the specification from another macro. |
6558 | 1147 |
1148 @item a list | |
1149 The elements of the list describe the types of the arguments of a | |
1150 calling form. The possible elements of a specification list are | |
1151 described in the following sections. | |
1152 @end table | |
1153 | |
63452
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
1154 @vindex edebug-eval-macro-args |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
1155 If a macro has no Edebug specification, neither through a @code{debug} |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
1156 declaration nor through a @code{def-edebug-spec} call, the variable |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
1157 @code{edebug-eval-macro-args} comes into play. If it is @code{nil}, |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
1158 the default, none of the arguments is instrumented for evaluation. |
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
1159 If it is non-@code{nil}, all arguments are instrumented. |
6558 | 1160 |
1161 @node Specification List | |
1162 @subsubsection Specification List | |
1163 | |
1164 @cindex Edebug specification list | |
1165 A @dfn{specification list} is required for an Edebug specification if | |
1166 some arguments of a macro call are evaluated while others are not. Some | |
1167 elements in a specification list match one or more arguments, but others | |
1168 modify the processing of all following elements. The latter, called | |
1169 @dfn{specification keywords}, are symbols beginning with @samp{&} (such | |
1170 as @code{&optional}). | |
1171 | |
1172 A specification list may contain sublists which match arguments that are | |
1173 themselves lists, or it may contain vectors used for grouping. Sublists | |
1174 and groups thus subdivide the specification list into a hierarchy of | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
1175 levels. Specification keywords apply only to the remainder of the |
6558 | 1176 sublist or group they are contained in. |
1177 | |
1178 When a specification list involves alternatives or repetition, matching | |
1179 it against an actual macro call may require backtracking. | |
1180 @xref{Backtracking}, for more details. | |
1181 | |
1182 Edebug specifications provide the power of regular expression matching, | |
1183 plus some context-free grammar constructs: the matching of sublists with | |
1184 balanced parentheses, recursive processing of forms, and recursion via | |
1185 indirect specifications. | |
1186 | |
1187 Here's a table of the possible elements of a specification list, with | |
1188 their meanings: | |
1189 | |
1190 @table @code | |
1191 @item sexp | |
22252
40089afa2b1d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22138
diff
changeset
|
1192 A single unevaluated Lisp object, which is not instrumented. |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1193 @c an "expression" is not necessarily intended for evaluation. |
6558 | 1194 |
1195 @item form | |
1196 A single evaluated expression, which is instrumented. | |
1197 | |
1198 @item place | |
1199 @findex edebug-unwrap | |
1200 A place to store a value, as in the Common Lisp @code{setf} construct. | |
1201 | |
1202 @item body | |
1203 Short for @code{&rest form}. See @code{&rest} below. | |
1204 | |
1205 @item function-form | |
1206 A function form: either a quoted function symbol, a quoted lambda | |
1207 expression, or a form (that should evaluate to a function symbol or | |
1208 lambda expression). This is useful when an argument that's a lambda | |
1209 expression might be quoted with @code{quote} rather than | |
1210 @code{function}, since it instruments the body of the lambda expression | |
1211 either way. | |
1212 | |
1213 @item lambda-expr | |
1214 A lambda expression with no quoting. | |
1215 | |
1216 @item &optional | |
52840
590f500fb14b
(Edebug Execution Modes): Clarify t.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1217 @c @kindex &optional @r{(Edebug)} |
6558 | 1218 All following elements in the specification list are optional; as soon |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
1219 as one does not match, Edebug stops matching at this level. |
6558 | 1220 |
1221 To make just a few elements optional followed by non-optional elements, | |
1222 use @code{[&optional @var{specs}@dots{}]}. To specify that several | |
1223 elements must all match or none, use @code{&optional | |
1224 [@var{specs}@dots{}]}. See the @code{defun} example below. | |
1225 | |
1226 @item &rest | |
52840
590f500fb14b
(Edebug Execution Modes): Clarify t.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1227 @c @kindex &rest @r{(Edebug)} |
6558 | 1228 All following elements in the specification list are repeated zero or |
22267
dfac7398266b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22252
diff
changeset
|
1229 more times. In the last repetition, however, it is not a problem if the |
dfac7398266b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22252
diff
changeset
|
1230 expression runs out before matching all of the elements of the |
dfac7398266b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
22252
diff
changeset
|
1231 specification list. |
6558 | 1232 |
1233 To repeat only a few elements, use @code{[&rest @var{specs}@dots{}]}. | |
1234 To specify several elements that must all match on every repetition, use | |
1235 @code{&rest [@var{specs}@dots{}]}. | |
1236 | |
1237 @item &or | |
52840
590f500fb14b
(Edebug Execution Modes): Clarify t.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1238 @c @kindex &or @r{(Edebug)} |
6558 | 1239 Each of the following elements in the specification list is an |
1240 alternative. One of the alternatives must match, or the @code{&or} | |
1241 specification fails. | |
1242 | |
1243 Each list element following @code{&or} is a single alternative. To | |
1244 group two or more list elements as a single alternative, enclose them in | |
1245 @code{[@dots{}]}. | |
1246 | |
1247 @item ¬ | |
52840
590f500fb14b
(Edebug Execution Modes): Clarify t.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1248 @c @kindex ¬ @r{(Edebug)} |
6558 | 1249 Each of the following elements is matched as alternatives as if by using |
1250 @code{&or}, but if any of them match, the specification fails. If none | |
1251 of them match, nothing is matched, but the @code{¬} specification | |
1252 succeeds. | |
1253 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
1254 @item &define |
52840
590f500fb14b
(Edebug Execution Modes): Clarify t.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1255 @c @kindex &define @r{(Edebug)} |
6558 | 1256 Indicates that the specification is for a defining form. The defining |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1257 form itself is not instrumented (that is, Edebug does not stop before and |
6558 | 1258 after the defining form), but forms inside it typically will be |
1259 instrumented. The @code{&define} keyword should be the first element in | |
1260 a list specification. | |
1261 | |
1262 @item nil | |
1263 This is successful when there are no more arguments to match at the | |
1264 current argument list level; otherwise it fails. See sublist | |
1265 specifications and the backquote example below. | |
1266 | |
1267 @item gate | |
1268 @cindex preventing backtracking | |
1269 No argument is matched but backtracking through the gate is disabled | |
1270 while matching the remainder of the specifications at this level. This | |
1271 is primarily used to generate more specific syntax error messages. See | |
1272 @ref{Backtracking}, for more details. Also see the @code{let} example | |
1273 below. | |
1274 | |
1275 @item @var{other-symbol} | |
1276 @cindex indirect specifications | |
1277 Any other symbol in a specification list may be a predicate or an | |
1278 indirect specification. | |
1279 | |
1280 If the symbol has an Edebug specification, this @dfn{indirect | |
1281 specification} should be either a list specification that is used in | |
1282 place of the symbol, or a function that is called to process the | |
1283 arguments. The specification may be defined with @code{def-edebug-spec} | |
1284 just as for macros. See the @code{defun} example below. | |
1285 | |
1286 Otherwise, the symbol should be a predicate. The predicate is called | |
1287 with the argument and the specification fails if the predicate returns | |
1288 @code{nil}. In either case, that argument is not instrumented. | |
1289 | |
1290 Some suitable predicates include @code{symbolp}, @code{integerp}, | |
1291 @code{stringp}, @code{vectorp}, and @code{atom}. | |
1292 | |
1293 @item [@var{elements}@dots{}] | |
1294 @cindex [@dots{}] (Edebug) | |
1295 A vector of elements groups the elements into a single @dfn{group | |
1296 specification}. Its meaning has nothing to do with vectors. | |
1297 | |
1298 @item "@var{string}" | |
1299 The argument should be a symbol named @var{string}. This specification | |
1300 is equivalent to the quoted symbol, @code{'@var{symbol}}, where the name | |
1301 of @var{symbol} is the @var{string}, but the string form is preferred. | |
1302 | |
1303 @item (vector @var{elements}@dots{}) | |
1304 The argument should be a vector whose elements must match the | |
1305 @var{elements} in the specification. See the backquote example below. | |
1306 | |
1307 @item (@var{elements}@dots{}) | |
1308 Any other list is a @dfn{sublist specification} and the argument must be | |
1309 a list whose elements match the specification @var{elements}. | |
1310 | |
1311 @cindex dotted lists (Edebug) | |
1312 A sublist specification may be a dotted list and the corresponding list | |
1313 argument may then be a dotted list. Alternatively, the last @sc{cdr} of a | |
1314 dotted list specification may be another sublist specification (via a | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1315 grouping or an indirect specification, e.g., @code{(spec . [(more |
6558 | 1316 specs@dots{})])}) whose elements match the non-dotted list arguments. |
1317 This is useful in recursive specifications such as in the backquote | |
1318 example below. Also see the description of a @code{nil} specification | |
1319 above for terminating such recursion. | |
1320 | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1321 Note that a sublist specification written as @code{(specs . nil)} |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1322 is equivalent to @code{(specs)}, and @code{(specs . |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1323 (sublist-elements@dots{}))} is equivalent to @code{(specs |
6558 | 1324 sublist-elements@dots{})}. |
1325 @end table | |
1326 | |
1327 @c Need to document extensions with &symbol and :symbol | |
1328 | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
1329 Here is a list of additional specifications that may appear only after |
6558 | 1330 @code{&define}. See the @code{defun} example below. |
1331 | |
1332 @table @code | |
1333 @item name | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
1334 The argument, a symbol, is the name of the defining form. |
6558 | 1335 |
1336 A defining form is not required to have a name field; and it may have | |
1337 multiple name fields. | |
1338 | |
1339 @item :name | |
1340 This construct does not actually match an argument. The element | |
1341 following @code{:name} should be a symbol; it is used as an additional | |
1342 name component for the definition. You can use this to add a unique, | |
1343 static component to the name of the definition. It may be used more | |
1344 than once. | |
1345 | |
1346 @item arg | |
1347 The argument, a symbol, is the name of an argument of the defining form. | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1348 However, lambda-list keywords (symbols starting with @samp{&}) |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1349 are not allowed. |
6558 | 1350 |
1351 @item lambda-list | |
1352 @cindex lambda-list (Edebug) | |
1353 This matches a lambda list---the argument list of a lambda expression. | |
1354 | |
1355 @item def-body | |
1356 The argument is the body of code in a definition. This is like | |
1357 @code{body}, described above, but a definition body must be instrumented | |
1358 with a different Edebug call that looks up information associated with | |
1359 the definition. Use @code{def-body} for the highest level list of forms | |
1360 within the definition. | |
1361 | |
1362 @item def-form | |
1363 The argument is a single, highest-level form in a definition. This is | |
1364 like @code{def-body}, except use this to match a single form rather than | |
1365 a list of forms. As a special case, @code{def-form} also means that | |
1366 tracing information is not output when the form is executed. See the | |
1367 @code{interactive} example below. | |
1368 @end table | |
1369 | |
1370 @node Backtracking | |
21682
90da2489c498
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21007
diff
changeset
|
1371 @subsubsection Backtracking in Specifications |
6558 | 1372 |
1373 @cindex backtracking | |
1374 @cindex syntax error (Edebug) | |
1375 If a specification fails to match at some point, this does not | |
1376 necessarily mean a syntax error will be signaled; instead, | |
1377 @dfn{backtracking} will take place until all alternatives have been | |
1378 exhausted. Eventually every element of the argument list must be | |
1379 matched by some element in the specification, and every required element | |
1380 in the specification must match some argument. | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
1381 |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1382 When a syntax error is detected, it might not be reported until much |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1383 later after higher-level alternatives have been exhausted, and with the |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1384 point positioned further from the real error. But if backtracking is |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1385 disabled when an error occurs, it can be reported immediately. Note |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1386 that backtracking is also reenabled automatically in several situations; |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1387 it is reenabled when a new alternative is established by |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1388 @code{&optional}, @code{&rest}, or @code{&or}, or at the start of |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1389 processing a sublist, group, or indirect specification. The effect of |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1390 enabling or disabling backtracking is limited to the remainder of the |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1391 level currently being processed and lower levels. |
6558 | 1392 |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1393 Backtracking is disabled while matching any of the |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1394 form specifications (that is, @code{form}, @code{body}, @code{def-form}, and |
6558 | 1395 @code{def-body}). These specifications will match any form so any error |
1396 must be in the form itself rather than at a higher level. | |
1397 | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1398 Backtracking is also disabled after successfully matching a quoted |
6558 | 1399 symbol or string specification, since this usually indicates a |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1400 recognized construct. But if you have a set of alternative constructs that |
6558 | 1401 all begin with the same symbol, you can usually work around this |
1402 constraint by factoring the symbol out of the alternatives, e.g., | |
1403 @code{["foo" &or [first case] [second case] ...]}. | |
1404 | |
53595
7ea1b7196d49
*** empty log message ***
Luc Teirlinck <teirllm@auburn.edu>
parents:
53592
diff
changeset
|
1405 Most needs are satisfied by these two ways that backtracking is |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1406 automatically disabled, but occasionally it is useful to explicitly |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1407 disable backtracking by using the @code{gate} specification. This is |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1408 useful when you know that no higher alternatives could apply. See the |
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1409 example of the @code{let} specification. |
6558 | 1410 |
1411 @node Specification Examples | |
1412 @subsubsection Specification Examples | |
1413 | |
1414 It may be easier to understand Edebug specifications by studying | |
1415 the examples provided here. | |
1416 | |
1417 A @code{let} special form has a sequence of bindings and a body. Each | |
1418 of the bindings is either a symbol or a sublist with a symbol and | |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1419 optional expression. In the specification below, notice the @code{gate} |
6558 | 1420 inside of the sublist to prevent backtracking once a sublist is found. |
1421 | |
1422 @example | |
1423 (def-edebug-spec let | |
1424 ((&rest | |
1425 &or symbolp (gate symbolp &optional form)) | |
1426 body)) | |
1427 @end example | |
1428 | |
1429 Edebug uses the following specifications for @code{defun} and | |
1430 @code{defmacro} and the associated argument list and @code{interactive} | |
1431 specifications. It is necessary to handle interactive forms specially | |
63452
35fe0bb36962
(Edebug): Update menu.
Luc Teirlinck <teirllm@auburn.edu>
parents:
61985
diff
changeset
|
1432 since an expression argument is actually evaluated outside of the |
6558 | 1433 function body. |
1434 | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1435 @smallexample |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1436 (def-edebug-spec defmacro defun) ; @r{Indirect ref to @code{defun} spec.} |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
1437 (def-edebug-spec defun |
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
1438 (&define name lambda-list |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1439 [&optional stringp] ; @r{Match the doc string, if present.} |
6558 | 1440 [&optional ("interactive" interactive)] |
1441 def-body)) | |
1442 | |
1443 (def-edebug-spec lambda-list | |
1444 (([&rest arg] | |
1445 [&optional ["&optional" arg &rest arg]] | |
1446 &optional ["&rest" arg] | |
1447 ))) | |
1448 | |
1449 (def-edebug-spec interactive | |
1450 (&optional &or stringp def-form)) ; @r{Notice: @code{def-form}} | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1451 @end smallexample |
6558 | 1452 |
1453 The specification for backquote below illustrates how to match | |
1454 dotted lists and use @code{nil} to terminate recursion. It also | |
1455 illustrates how components of a vector may be matched. (The actual | |
1456 specification defined by Edebug does not support dotted lists because | |
1457 doing so causes very deep recursion that could fail.) | |
1458 | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1459 @smallexample |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1460 (def-edebug-spec ` (backquote-form)) ; @r{Alias just for clarity.} |
6558 | 1461 |
1462 (def-edebug-spec backquote-form | |
1463 (&or ([&or "," ",@@"] &or ("quote" backquote-form) form) | |
1464 (backquote-form . [&or nil backquote-form]) | |
1465 (vector &rest backquote-form) | |
1466 sexp)) | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1467 @end smallexample |
6558 | 1468 |
1469 | |
1470 @node Edebug Options | |
1471 @subsection Edebug Options | |
1472 | |
1473 These options affect the behavior of Edebug: | |
1474 | |
1475 @defopt edebug-setup-hook | |
1476 Functions to call before Edebug is used. Each time it is set to a new | |
1477 value, Edebug will call those functions once and then | |
1478 @code{edebug-setup-hook} is reset to @code{nil}. You could use this to | |
1479 load up Edebug specifications associated with a package you are using | |
1480 but only when you also use Edebug. | |
1481 @xref{Instrumenting}. | |
1482 @end defopt | |
1483 | |
1484 @defopt edebug-all-defs | |
1485 If this is non-@code{nil}, normal evaluation of defining forms such as | |
1486 @code{defun} and @code{defmacro} instruments them for Edebug. This | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1487 applies to @code{eval-defun}, @code{eval-region}, @code{eval-buffer}, |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1488 and @code{eval-current-buffer}. |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1489 |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1490 Use the command @kbd{M-x edebug-all-defs} to toggle the value of this |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1491 option. @xref{Instrumenting}. |
6558 | 1492 @end defopt |
1493 | |
1494 @defopt edebug-all-forms | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1495 If this is non-@code{nil}, the commands @code{eval-defun}, |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1496 @code{eval-region}, @code{eval-buffer}, and @code{eval-current-buffer} |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1497 instrument all forms, even those that don't define anything. |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1498 This doesn't apply to loading or evaluations in the minibuffer. |
6558 | 1499 |
1500 Use the command @kbd{M-x edebug-all-forms} to toggle the value of this | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1501 option. @xref{Instrumenting}. |
6558 | 1502 @end defopt |
1503 | |
1504 @defopt edebug-save-windows | |
1505 If this is non-@code{nil}, Edebug saves and restores the window | |
1506 configuration. That takes some time, so if your program does not care | |
1507 what happens to the window configurations, it is better to set this | |
1508 variable to @code{nil}. | |
1509 | |
1510 If the value is a list, only the listed windows are saved and | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
1511 restored. |
6558 | 1512 |
1513 You can use the @kbd{W} command in Edebug to change this variable | |
1514 interactively. @xref{Edebug Display Update}. | |
1515 @end defopt | |
1516 | |
1517 @defopt edebug-save-displayed-buffer-points | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1518 If this is non-@code{nil}, Edebug saves and restores point in all |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1519 displayed buffers. |
6558 | 1520 |
1521 Saving and restoring point in other buffers is necessary if you are | |
1522 debugging code that changes the point of a buffer which is displayed in | |
1523 a non-selected window. If Edebug or the user then selects the window, | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1524 point in that buffer will move to the window's value of point. |
6558 | 1525 |
1526 Saving and restoring point in all buffers is expensive, since it | |
1527 requires selecting each window twice, so enable this only if you need | |
1528 it. @xref{Edebug Display Update}. | |
1529 @end defopt | |
1530 | |
1531 @defopt edebug-initial-mode | |
1532 If this variable is non-@code{nil}, it specifies the initial execution | |
1533 mode for Edebug when it is first activated. Possible values are | |
1534 @code{step}, @code{next}, @code{go}, @code{Go-nonstop}, @code{trace}, | |
1535 @code{Trace-fast}, @code{continue}, and @code{Continue-fast}. | |
1536 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
1537 The default value is @code{step}. |
6558 | 1538 @xref{Edebug Execution Modes}. |
1539 @end defopt | |
1540 | |
1541 @defopt edebug-trace | |
1542 Non-@code{nil} means display a trace of function entry and exit. | |
1543 Tracing output is displayed in a buffer named @samp{*edebug-trace*}, one | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
1544 function entry or exit per line, indented by the recursion level. |
6558 | 1545 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
1546 The default value is @code{nil}. |
6558 | 1547 |
22138
d4ac295a98b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
21682
diff
changeset
|
1548 Also see @code{edebug-tracing}, in @ref{Trace Buffer}. |
6558 | 1549 @end defopt |
1550 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
1551 @defopt edebug-test-coverage |
6558 | 1552 If non-@code{nil}, Edebug tests coverage of all expressions debugged. |
1553 @xref{Coverage Testing}. | |
1554 @end defopt | |
1555 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
44674
diff
changeset
|
1556 @defopt edebug-continue-kbd-macro |
6558 | 1557 If non-@code{nil}, continue defining or executing any keyboard macro |
1558 that is executing outside of Edebug. Use this with caution since it is not | |
1559 debugged. | |
1560 @xref{Edebug Execution Modes}. | |
1561 @end defopt | |
1562 | |
1563 @defopt edebug-on-error | |
1564 Edebug binds @code{debug-on-error} to this value, if | |
1565 @code{debug-on-error} was previously @code{nil}. @xref{Trapping | |
1566 Errors}. | |
1567 @end defopt | |
1568 | |
1569 @defopt edebug-on-quit | |
1570 Edebug binds @code{debug-on-quit} to this value, if | |
1571 @code{debug-on-quit} was previously @code{nil}. @xref{Trapping | |
1572 Errors}. | |
1573 @end defopt | |
1574 | |
1575 If you change the values of @code{edebug-on-error} or | |
1576 @code{edebug-on-quit} while Edebug is active, their values won't be used | |
7252
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1577 until the @emph{next} time Edebug is invoked via a new command. |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1578 @c Not necessarily a deeper command level. |
2ddb8063f154
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
6558
diff
changeset
|
1579 @c A new command is not precisely true, but that is close enough -- dan |
6558 | 1580 |
1581 @defopt edebug-global-break-condition | |
51652
55fb0658914a
Fix minor Texinfo usage.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1582 If non-@code{nil}, an expression to test for at every stop point. If |
55fb0658914a
Fix minor Texinfo usage.
Richard M. Stallman <rms@gnu.org>
parents:
49600
diff
changeset
|
1583 the result is non-@code{nil}, then break. Errors are ignored. |
6558 | 1584 @xref{Global Break Condition}. |
1585 @end defopt | |
52401 | 1586 |
1587 @ignore | |
1588 arch-tag: 74842db8-019f-4818-b5a4-b2de878e57fd | |
1589 @end ignore |