(Fmessage): Check byte size (instead of char size) of
[bpt/emacs.git] / lispref / debugging.texi
CommitLineData
73804d4b
RS
1@c -*-texinfo-*-
2@c This is part of the GNU Emacs Lisp Reference Manual.
3@c Copyright (C) 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
4@c See the file elisp.texi for copying conditions.
5@setfilename ../info/debugging
2e00781a 6@node Debugging, Read and Print, Byte Compilation, Top
73804d4b
RS
7@chapter Debugging Lisp Programs
8
9 There are three ways to investigate a problem in an Emacs Lisp program,
10depending on what you are doing with the program when the problem appears.
11
12@itemize @bullet
13@item
14If the problem occurs when you run the program, you can use a Lisp
15debugger (either the default debugger or Edebug) to investigate what is
16happening during execution.
17
18@item
19If the problem is syntactic, so that Lisp cannot even read the program,
20you can use the Emacs facilities for editing Lisp to localize it.
21
22@item
23If the problem occurs when trying to compile the program with the byte
24compiler, you need to know how to examine the compiler's input buffer.
25@end itemize
26
27@menu
28* Debugger:: How the Emacs Lisp debugger is implemented.
29* Syntax Errors:: How to find syntax errors.
30* Compilation Errors:: How to find errors that show up in byte compilation.
31* Edebug:: A source-level Emacs Lisp debugger.
32@end menu
33
34 Another useful debugging tool is the dribble file. When a dribble
35file is open, Emacs copies all keyboard input characters to that file.
36Afterward, you can examine the file to find out what input was used.
37@xref{Terminal Input}.
38
39 For debugging problems in terminal descriptions, the
40@code{open-termscript} function can be useful. @xref{Terminal Output}.
41
42@node Debugger
43@section The Lisp Debugger
44@cindex debugger
45@cindex Lisp debugger
46@cindex break
47
48 The @dfn{Lisp debugger} provides the ability to suspend evaluation of
49a form. While evaluation is suspended (a state that is commonly known
50as a @dfn{break}), you may examine the run time stack, examine the
51values of local or global variables, or change those values. Since a
52break is a recursive edit, all the usual editing facilities of Emacs are
53available; you can even run programs that will enter the debugger
54recursively. @xref{Recursive Editing}.
55
56@menu
57* Error Debugging:: Entering the debugger when an error happens.
58* Infinite Loops:: Stopping and debugging a program that doesn't exit.
59* Function Debugging:: Entering it when a certain function is called.
60* Explicit Debug:: Entering it at a certain point in the program.
61* Using Debugger:: What the debugger does; what you see while in it.
62* Debugger Commands:: Commands used while in the debugger.
63* Invoking the Debugger:: How to call the function @code{debug}.
64* Internals of Debugger:: Subroutines of the debugger, and global variables.
65@end menu
66
67@node Error Debugging
68@subsection Entering the Debugger on an Error
69@cindex error debugging
70@cindex debugging errors
71
72 The most important time to enter the debugger is when a Lisp error
73happens. This allows you to investigate the immediate causes of the
74error.
75
76 However, entry to the debugger is not a normal consequence of an
77error. Many commands frequently get Lisp errors when invoked in
78inappropriate contexts (such as @kbd{C-f} at the end of the buffer) and
79during ordinary editing it would be very unpleasant to enter the
80debugger each time this happens. If you want errors to enter the
81debugger, set the variable @code{debug-on-error} to non-@code{nil}.
82
83@defopt debug-on-error
ae4a3857 84This variable determines whether the debugger is called when an error is
73804d4b
RS
85signaled and not handled. If @code{debug-on-error} is @code{t}, all
86errors call the debugger. If it is @code{nil}, none call the debugger.
87
88The value can also be a list of error conditions that should call the
89debugger. For example, if you set it to the list
90@code{(void-variable)}, then only errors about a variable that has no
91value invoke the debugger.
22697dac
KH
92
93When this variable is non-@code{nil}, Emacs does not catch errors that
94happen in process filter functions and sentinels. Therefore, these
95errors also can invoke the debugger. @xref{Processes}.
840797ee
KH
96@end defopt
97
98@defopt debug-ignored-errors
99This variable specifies certain kinds of errors that should not enter
100the debugger. Its value is a list of error condition symbols and/or
101regular expressions. If the error has any of those condition symbols,
102or if the error message matches any of the regular expressions, then
103that error does not enter the debugger, regardless of the value of
104@code{debug-on-error}.
105
106The normal value of this variable lists several errors that happen often
107during editing but rarely result from bugs in Lisp programs.
73804d4b
RS
108@end defopt
109
110 To debug an error that happens during loading of the @file{.emacs}
111file, use the option @samp{-debug-init}, which binds
ae4a3857
RS
112@code{debug-on-error} to @code{t} while @file{.emacs} is loaded and
113inhibits use of @code{condition-case} to catch init file errors.
73804d4b 114
ae4a3857
RS
115 If your @file{.emacs} file sets @code{debug-on-error}, the effect may
116not last past the end of loading @file{.emacs}. (This is an undesirable
117byproduct of the code that implements the @samp{-debug-init} command
118line option.) The best way to make @file{.emacs} set
119@code{debug-on-error} permanently is with @code{after-init-hook}, like
120this:
73804d4b
RS
121
122@example
123(add-hook 'after-init-hook
124 '(lambda () (setq debug-on-error t)))
125@end example
126
127@node Infinite Loops
128@subsection Debugging Infinite Loops
129@cindex infinite loops
130@cindex loops, infinite
131@cindex quitting from infinite loop
132@cindex stopping an infinite loop
133
134 When a program loops infinitely and fails to return, your first
135problem is to stop the loop. On most operating systems, you can do this
136with @kbd{C-g}, which causes quit.
137
138 Ordinary quitting gives no information about why the program was
139looping. To get more information, you can set the variable
140@code{debug-on-quit} to non-@code{nil}. Quitting with @kbd{C-g} is not
141considered an error, and @code{debug-on-error} has no effect on the
ae4a3857
RS
142handling of @kbd{C-g}. Likewise, @code{debug-on-quit} has no effect on
143errors.
73804d4b
RS
144
145 Once you have the debugger running in the middle of the infinite loop,
146you can proceed from the debugger using the stepping commands. If you
147step through the entire loop, you will probably get enough information
148to solve the problem.
149
150@defopt debug-on-quit
151This variable determines whether the debugger is called when @code{quit}
152is signaled and not handled. If @code{debug-on-quit} is non-@code{nil},
153then the debugger is called whenever you quit (that is, type @kbd{C-g}).
154If @code{debug-on-quit} is @code{nil}, then the debugger is not called
155when you quit. @xref{Quitting}.
156@end defopt
157
158@node Function Debugging
159@subsection Entering the Debugger on a Function Call
160@cindex function call debugging
161@cindex debugging specific functions
162
163 To investigate a problem that happens in the middle of a program, one
164useful technique is to enter the debugger whenever a certain function is
165called. You can do this to the function in which the problem occurs,
166and then step through the function, or you can do this to a function
167called shortly before the problem, step quickly over the call to that
168function, and then step through its caller.
169
170@deffn Command debug-on-entry function-name
171 This function requests @var{function-name} to invoke the debugger each time
172it is called. It works by inserting the form @code{(debug 'debug)} into
173the function definition as the first form.
174
175 Any function defined as Lisp code may be set to break on entry,
176regardless of whether it is interpreted code or compiled code. If the
177function is a command, it will enter the debugger when called from Lisp
178and when called interactively (after the reading of the arguments). You
179can't debug primitive functions (i.e., those written in C) this way.
180
181 When @code{debug-on-entry} is called interactively, it prompts
182for @var{function-name} in the minibuffer.
183
184 If the function is already set up to invoke the debugger on entry,
185@code{debug-on-entry} does nothing.
186
bfe721d1
KH
187 @strong{Note:} if you redefine a function after using
188@code{debug-on-entry} on it, the code to enter the debugger is lost.
73804d4b
RS
189
190 @code{debug-on-entry} returns @var{function-name}.
191
192@example
193@group
194(defun fact (n)
195 (if (zerop n) 1
196 (* n (fact (1- n)))))
197 @result{} fact
198@end group
199@group
200(debug-on-entry 'fact)
201 @result{} fact
202@end group
203@group
204(fact 3)
73804d4b
RS
205@end group
206
207@group
208------ Buffer: *Backtrace* ------
209Entering:
210* fact(3)
211 eval-region(4870 4878 t)
212 byte-code("...")
213 eval-last-sexp(nil)
214 (let ...)
215 eval-insert-last-sexp(nil)
216* call-interactively(eval-insert-last-sexp)
217------ Buffer: *Backtrace* ------
218@end group
219
220@group
221(symbol-function 'fact)
222 @result{} (lambda (n)
223 (debug (quote debug))
224 (if (zerop n) 1 (* n (fact (1- n)))))
225@end group
226@end example
227@end deffn
228
229@deffn Command cancel-debug-on-entry function-name
230This function undoes the effect of @code{debug-on-entry} on
231@var{function-name}. When called interactively, it prompts for
bfe721d1
KH
232@var{function-name} in the minibuffer. If @var{function-name} is
233@code{nil} or the empty string, it cancels debugging for all functions.
73804d4b
RS
234
235If @code{cancel-debug-on-entry} is called more than once on the same
236function, the second call does nothing. @code{cancel-debug-on-entry}
237returns @var{function-name}.
238@end deffn
239
240@node Explicit Debug
241@subsection Explicit Entry to the Debugger
242
243 You can cause the debugger to be called at a certain point in your
244program by writing the expression @code{(debug)} at that point. To do
245this, visit the source file, insert the text @samp{(debug)} at the
246proper place, and type @kbd{C-M-x}. Be sure to undo this insertion
247before you save the file!
248
249 The place where you insert @samp{(debug)} must be a place where an
250additional form can be evaluated and its value ignored. (If the value
ae4a3857
RS
251of @code{(debug)} isn't ignored, it will alter the execution of the
252program!) The most common suitable places are inside a @code{progn} or
253an implicit @code{progn} (@pxref{Sequencing}).
73804d4b
RS
254
255@node Using Debugger
256@subsection Using the Debugger
257
258 When the debugger is entered, it displays the previously selected
259buffer in one window and a buffer named @samp{*Backtrace*} in another
260window. The backtrace buffer contains one line for each level of Lisp
261function execution currently going on. At the beginning of this buffer
262is a message describing the reason that the debugger was invoked (such
263as the error message and associated data, if it was invoked due to an
264error).
265
266 The backtrace buffer is read-only and uses a special major mode,
267Debugger mode, in which letters are defined as debugger commands. The
268usual Emacs editing commands are available; thus, you can switch windows
269to examine the buffer that was being edited at the time of the error,
270switch buffers, visit files, or do any other sort of editing. However,
271the debugger is a recursive editing level (@pxref{Recursive Editing})
272and it is wise to go back to the backtrace buffer and exit the debugger
273(with the @kbd{q} command) when you are finished with it. Exiting
274the debugger gets out of the recursive edit and kills the backtrace
275buffer.
276
277@cindex current stack frame
ae4a3857
RS
278 The backtrace buffer shows you the functions that are executing and
279their argument values. It also allows you to specify a stack frame by
280moving point to the line describing that frame. (A stack frame is the
281place where the Lisp interpreter records information about a particular
282invocation of a function.) The frame whose line point is on is
283considered the @dfn{current frame}. Some of the debugger commands
73804d4b
RS
284operate on the current frame.
285
286 The debugger itself must be run byte-compiled, since it makes
287assumptions about how many stack frames are used for the debugger
288itself. These assumptions are false if the debugger is running
289interpreted.
290
291@need 3000
292
293@node Debugger Commands
294@subsection Debugger Commands
295@cindex debugger command list
296
297 Inside the debugger (in Debugger mode), these special commands are
298available in addition to the usual cursor motion commands. (Keep in
299mind that all the usual facilities of Emacs, such as switching windows
300or buffers, are still available.)
301
302 The most important use of debugger commands is for stepping through
303code, so that you can see how control flows. The debugger can step
304through the control structures of an interpreted function, but cannot do
305so in a byte-compiled function. If you would like to step through a
306byte-compiled function, replace it with an interpreted definition of the
307same function. (To do this, visit the source file for the function and
308type @kbd{C-M-x} on its definition.)
309
310 Here is a list of Debugger mode commands:
311
312@table @kbd
313@item c
314Exit the debugger and continue execution. When continuing is possible,
315it resumes execution of the program as if the debugger had never been
316entered (aside from the effect of any variables or data structures you
317may have changed while inside the debugger).
318
319Continuing is possible after entry to the debugger due to function entry
320or exit, explicit invocation, or quitting. You cannot continue if the
321debugger was entered because of an error.
322
323@item d
324Continue execution, but enter the debugger the next time any Lisp
325function is called. This allows you to step through the
326subexpressions of an expression, seeing what values the subexpressions
327compute, and what else they do.
328
329The stack frame made for the function call which enters the debugger in
330this way will be flagged automatically so that the debugger will be
331called again when the frame is exited. You can use the @kbd{u} command
332to cancel this flag.
333
334@item b
335Flag the current frame so that the debugger will be entered when the
336frame is exited. Frames flagged in this way are marked with stars
337in the backtrace buffer.
338
339@item u
340Don't enter the debugger when the current frame is exited. This
341cancels a @kbd{b} command on that frame.
342
343@item e
344Read a Lisp expression in the minibuffer, evaluate it, and print the
bfe721d1
KH
345value in the echo area. The debugger alters certain important
346variables, and the current buffer, as part of its operation; @kbd{e}
347temporarily restores their outside-the-debugger values so you can
348examine them. This makes the debugger more transparent. By contrast,
349@kbd{M-:} does nothing special in the debugger; it shows you the
350variable values within the debugger.
73804d4b
RS
351
352@item q
353Terminate the program being debugged; return to top-level Emacs
354command execution.
355
356If the debugger was entered due to a @kbd{C-g} but you really want
357to quit, and not debug, use the @kbd{q} command.
358
359@item r
360Return a value from the debugger. The value is computed by reading an
361expression with the minibuffer and evaluating it.
362
ae4a3857
RS
363The @kbd{r} command is useful when the debugger was invoked due to exit
364from a Lisp call frame (as requested with @kbd{b}); then the value
365specified in the @kbd{r} command is used as the value of that frame. It
366is also useful if you call @code{debug} and use its return value.
367Otherwise, @kbd{r} has the same effect as @kbd{c}, and the specified
368return value does not matter.
73804d4b
RS
369
370You can't use @kbd{r} when the debugger was entered due to an error.
371@end table
372
373@node Invoking the Debugger
374@subsection Invoking the Debugger
375
376 Here we describe fully the function used to invoke the debugger.
377
378@defun debug &rest debugger-args
379This function enters the debugger. It switches buffers to a buffer
380named @samp{*Backtrace*} (or @samp{*Backtrace*<2>} if it is the second
381recursive entry to the debugger, etc.), and fills it with information
382about the stack of Lisp function calls. It then enters a recursive
383edit, showing the backtrace buffer in Debugger mode.
384
385The Debugger mode @kbd{c} and @kbd{r} commands exit the recursive edit;
386then @code{debug} switches back to the previous buffer and returns to
387whatever called @code{debug}. This is the only way the function
388@code{debug} can return to its caller.
389
390If the first of the @var{debugger-args} passed to @code{debug} is
391@code{nil} (or if it is not one of the special values in the table
bfe721d1 392below), then @code{debug} displays the rest of its arguments at the
73804d4b
RS
393top of the @samp{*Backtrace*} buffer. This mechanism is used to display
394a message to the user.
395
396However, if the first argument passed to @code{debug} is one of the
397following special values, then it has special significance. Normally,
398these values are passed to @code{debug} only by the internals of Emacs
399and the debugger, and not by programmers calling @code{debug}.
400
401The special values are:
402
403@table @code
404@item lambda
405@cindex @code{lambda} in debug
406A first argument of @code{lambda} means @code{debug} was called because
407of entry to a function when @code{debug-on-next-call} was
408non-@code{nil}. The debugger displays @samp{Entering:} as a line of
409text at the top of the buffer.
410
411@item debug
412@code{debug} as first argument indicates a call to @code{debug} because
413of entry to a function that was set to debug on entry. The debugger
414displays @samp{Entering:}, just as in the @code{lambda} case. It also
415marks the stack frame for that function so that it will invoke the
416debugger when exited.
417
418@item t
419When the first argument is @code{t}, this indicates a call to
420@code{debug} due to evaluation of a list form when
421@code{debug-on-next-call} is non-@code{nil}. The debugger displays the
422following as the top line in the buffer:
423
424@smallexample
425Beginning evaluation of function call form:
426@end smallexample
427
428@item exit
429When the first argument is @code{exit}, it indicates the exit of a
430stack frame previously marked to invoke the debugger on exit. The
431second argument given to @code{debug} in this case is the value being
432returned from the frame. The debugger displays @samp{Return value:} on
433the top line of the buffer, followed by the value being returned.
434
435@item error
436@cindex @code{error} in debug
437When the first argument is @code{error}, the debugger indicates that
438it is being entered because an error or @code{quit} was signaled and not
439handled, by displaying @samp{Signaling:} followed by the error signaled
440and any arguments to @code{signal}. For example,
441
442@example
443@group
444(let ((debug-on-error t))
445 (/ 1 0))
446@end group
447
448@group
449------ Buffer: *Backtrace* ------
450Signaling: (arith-error)
451 /(1 0)
452...
453------ Buffer: *Backtrace* ------
454@end group
455@end example
456
457If an error was signaled, presumably the variable
458@code{debug-on-error} is non-@code{nil}. If @code{quit} was signaled,
459then presumably the variable @code{debug-on-quit} is non-@code{nil}.
460
461@item nil
462Use @code{nil} as the first of the @var{debugger-args} when you want
463to enter the debugger explicitly. The rest of the @var{debugger-args}
464are printed on the top line of the buffer. You can use this feature to
465display messages---for example, to remind yourself of the conditions
466under which @code{debug} is called.
467@end table
468@end defun
469
73804d4b
RS
470@node Internals of Debugger
471@subsection Internals of the Debugger
472
473 This section describes functions and variables used internally by the
474debugger.
475
476@defvar debugger
477The value of this variable is the function to call to invoke the
478debugger. Its value must be a function of any number of arguments (or,
479more typically, the name of a function). Presumably this function will
480enter some kind of debugger. The default value of the variable is
481@code{debug}.
482
483The first argument that Lisp hands to the function indicates why it
484was called. The convention for arguments is detailed in the description
485of @code{debug}.
486@end defvar
487
488@deffn Command backtrace
489@cindex run time stack
490@cindex call stack
491This function prints a trace of Lisp function calls currently active.
492This is the function used by @code{debug} to fill up the
493@samp{*Backtrace*} buffer. It is written in C, since it must have access
494to the stack to determine which function calls are active. The return
495value is always @code{nil}.
496
497In the following example, a Lisp expression calls @code{backtrace}
498explicitly. This prints the backtrace to the stream
499@code{standard-output}: in this case, to the buffer
500@samp{backtrace-output}. Each line of the backtrace represents one
501function call. The line shows the values of the function's arguments if
502they are all known. If they are still being computed, the line says so.
503The arguments of special forms are elided.
504
505@smallexample
506@group
507(with-output-to-temp-buffer "backtrace-output"
508 (let ((var 1))
509 (save-excursion
510 (setq var (eval '(progn
511 (1+ var)
512 (list 'testing (backtrace))))))))
513
514 @result{} nil
515@end group
516
517@group
518----------- Buffer: backtrace-output ------------
519 backtrace()
520 (list ...computing arguments...)
521 (progn ...)
522 eval((progn (1+ var) (list (quote testing) (backtrace))))
523 (setq ...)
524 (save-excursion ...)
525 (let ...)
526 (with-output-to-temp-buffer ...)
527 eval-region(1973 2142 #<buffer *scratch*>)
528 byte-code("... for eval-print-last-sexp ...")
529 eval-print-last-sexp(nil)
530* call-interactively(eval-print-last-sexp)
531----------- Buffer: backtrace-output ------------
532@end group
533@end smallexample
534
535The character @samp{*} indicates a frame whose debug-on-exit flag is
536set.
537@end deffn
538
539@ignore @c Not worth mentioning
540@defopt stack-trace-on-error
541@cindex stack trace
542This variable controls whether Lisp automatically displays a
543backtrace buffer after every error that is not handled. A quit signal
544counts as an error for this variable. If it is non-@code{nil} then a
545backtrace is shown in a pop-up buffer named @samp{*Backtrace*} on every
546error. If it is @code{nil}, then a backtrace is not shown.
547
548When a backtrace is shown, that buffer is not selected. If either
549@code{debug-on-quit} or @code{debug-on-error} is also non-@code{nil}, then
550a backtrace is shown in one buffer, and the debugger is popped up in
551another buffer with its own backtrace.
552
553We consider this feature to be obsolete and superseded by the debugger
554itself.
555@end defopt
556@end ignore
557
558@defvar debug-on-next-call
559@cindex @code{eval}, and debugging
560@cindex @code{apply}, and debugging
561@cindex @code{funcall}, and debugging
562If this variable is non-@code{nil}, it says to call the debugger before
563the next @code{eval}, @code{apply} or @code{funcall}. Entering the
564debugger sets @code{debug-on-next-call} to @code{nil}.
565
566The @kbd{d} command in the debugger works by setting this variable.
567@end defvar
568
569@defun backtrace-debug level flag
570This function sets the debug-on-exit flag of the stack frame @var{level}
ae4a3857 571levels down the stack, giving it the value @var{flag}. If @var{flag} is
73804d4b
RS
572non-@code{nil}, this will cause the debugger to be entered when that
573frame later exits. Even a nonlocal exit through that frame will enter
574the debugger.
575
ae4a3857 576This function is used only by the debugger.
73804d4b
RS
577@end defun
578
579@defvar command-debug-status
bfe721d1 580This variable records the debugging status of the current interactive
73804d4b
RS
581command. Each time a command is called interactively, this variable is
582bound to @code{nil}. The debugger can set this variable to leave
583information for future debugger invocations during the same command.
584
ae4a3857
RS
585The advantage, for the debugger, of using this variable rather than
586another global variable is that the data will never carry over to a
587subsequent command invocation.
73804d4b
RS
588@end defvar
589
590@defun backtrace-frame frame-number
591The function @code{backtrace-frame} is intended for use in Lisp
592debuggers. It returns information about what computation is happening
593in the stack frame @var{frame-number} levels down.
594
595If that frame has not evaluated the arguments yet (or is a special
596form), the value is @code{(nil @var{function} @var{arg-forms}@dots{})}.
597
598If that frame has evaluated its arguments and called its function
599already, the value is @code{(t @var{function}
600@var{arg-values}@dots{})}.
601
ae4a3857
RS
602In the return value, @var{function} is whatever was supplied as the
603@sc{car} of the evaluated list, or a @code{lambda} expression in the
604case of a macro call. If the function has a @code{&rest} argument, that
605is represented as the tail of the list @var{arg-values}.
73804d4b 606
ae4a3857 607If @var{frame-number} is out of range, @code{backtrace-frame} returns
73804d4b
RS
608@code{nil}.
609@end defun
610
611@node Syntax Errors
612@section Debugging Invalid Lisp Syntax
613
614 The Lisp reader reports invalid syntax, but cannot say where the real
615problem is. For example, the error ``End of file during parsing'' in
616evaluating an expression indicates an excess of open parentheses (or
617square brackets). The reader detects this imbalance at the end of the
618file, but it cannot figure out where the close parenthesis should have
619been. Likewise, ``Invalid read syntax: ")"'' indicates an excess close
620parenthesis or missing open parenthesis, but does not say where the
621missing parenthesis belongs. How, then, to find what to change?
622
623 If the problem is not simply an imbalance of parentheses, a useful
624technique is to try @kbd{C-M-e} at the beginning of each defun, and see
625if it goes to the place where that defun appears to end. If it does
626not, there is a problem in that defun.
627
628 However, unmatched parentheses are the most common syntax errors in
629Lisp, and we can give further advice for those cases.
630
631@menu
632* Excess Open:: How to find a spurious open paren or missing close.
633* Excess Close:: How to find a spurious close paren or missing open.
634@end menu
635
636@node Excess Open
637@subsection Excess Open Parentheses
638
639 The first step is to find the defun that is unbalanced. If there is
640an excess open parenthesis, the way to do this is to insert a
641close parenthesis at the end of the file and type @kbd{C-M-b}
642(@code{backward-sexp}). This will move you to the beginning of the
643defun that is unbalanced. (Then type @kbd{C-@key{SPC} C-_ C-u
644C-@key{SPC}} to set the mark there, undo the insertion of the
645close parenthesis, and finally return to the mark.)
646
647 The next step is to determine precisely what is wrong. There is no
648way to be sure of this except to study the program, but often the
649existing indentation is a clue to where the parentheses should have
650been. The easiest way to use this clue is to reindent with @kbd{C-M-q}
651and see what moves.
652
653 Before you do this, make sure the defun has enough close parentheses.
654Otherwise, @kbd{C-M-q} will get an error, or will reindent all the rest
655of the file until the end. So move to the end of the defun and insert a
656close parenthesis there. Don't use @kbd{C-M-e} to move there, since
657that too will fail to work until the defun is balanced.
658
659 Now you can go to the beginning of the defun and type @kbd{C-M-q}.
660Usually all the lines from a certain point to the end of the function
661will shift to the right. There is probably a missing close parenthesis,
662or a superfluous open parenthesis, near that point. (However, don't
663assume this is true; study the code to make sure.) Once you have found
ae4a3857
RS
664the discrepancy, undo the @kbd{C-M-q} with @kbd{C-_}, since the old
665indentation is probably appropriate to the intended parentheses.
73804d4b
RS
666
667 After you think you have fixed the problem, use @kbd{C-M-q} again. If
668the old indentation actually fit the intended nesting of parentheses,
669and you have put back those parentheses, @kbd{C-M-q} should not change
670anything.
671
672@node Excess Close
673@subsection Excess Close Parentheses
674
ae4a3857
RS
675 To deal with an excess close parenthesis, first insert an open
676parenthesis at the beginning of the file, back up over it, and type
677@kbd{C-M-f} to find the end of the unbalanced defun. (Then type
678@kbd{C-@key{SPC} C-_ C-u C-@key{SPC}} to set the mark there, undo the
679insertion of the open parenthesis, and finally return to the mark.)
73804d4b
RS
680
681 Then find the actual matching close parenthesis by typing @kbd{C-M-f}
682at the beginning of the defun. This will leave you somewhere short of
683the place where the defun ought to end. It is possible that you will
684find a spurious close parenthesis in that vicinity.
685
686 If you don't see a problem at that point, the next thing to do is to
687type @kbd{C-M-q} at the beginning of the defun. A range of lines will
688probably shift left; if so, the missing open parenthesis or spurious
689close parenthesis is probably near the first of those lines. (However,
690don't assume this is true; study the code to make sure.) Once you have
ae4a3857
RS
691found the discrepancy, undo the @kbd{C-M-q} with @kbd{C-_}, since the
692old indentation is probably appropriate to the intended parentheses.
693
694 After you think you have fixed the problem, use @kbd{C-M-q} again. If
695the old indentation actually fit the intended nesting of parentheses,
696and you have put back those parentheses, @kbd{C-M-q} should not change
697anything.
73804d4b 698
ae4a3857 699@node Compilation Errors, Edebug, Syntax Errors, Debugging
73804d4b
RS
700@section Debugging Problems in Compilation
701
702 When an error happens during byte compilation, it is normally due to
703invalid syntax in the program you are compiling. The compiler prints a
704suitable error message in the @samp{*Compile-Log*} buffer, and then
705stops. The message may state a function name in which the error was
706found, or it may not. Either way, here is how to find out where in the
707file the error occurred.
708
709 What you should do is switch to the buffer @w{@samp{ *Compiler Input*}}.
710(Note that the buffer name starts with a space, so it does not show
711up in @kbd{M-x list-buffers}.) This buffer contains the program being
712compiled, and point shows how far the byte compiler was able to read.
713
714 If the error was due to invalid Lisp syntax, point shows exactly where
715the invalid syntax was @emph{detected}. The cause of the error is not
716necessarily near by! Use the techniques in the previous section to find
717the error.
718
719 If the error was detected while compiling a form that had been read
720successfully, then point is located at the end of the form. In this
ae4a3857
RS
721case, this technique can't localize the error precisely, but can still
722show you which function to check.
73804d4b
RS
723
724@include edebug.texi