(ispell-word): Make M-$ binding using esc-map.
[bpt/emacs.git] / lisp / emacs-lisp / edebug.el
CommitLineData
f7359658 1;;; edebug.el --- a source-level debugger for Emacs Lisp
84fc2cfa 2
c86b5c78
RS
3;; Copyright (C) 1988, 89, 90, 91, 92, 93, 94, 95, 1997
4;; Free Software Foundation, Inc.
84fc2cfa 5
6392137f 6;; Author: Daniel LaLiberte <dlaliberte@gte.com>
c86b5c78 7;; Maintainer: FSF
e9571d2a 8;; Keywords: lisp, tools, maint
3a801d0c 9
84fc2cfa
ER
10;; This file is part of GNU Emacs.
11
1fe3d507
DL
12;; GNU Emacs is free software; you can redistribute it and/or modify
13;; it under the terms of the GNU General Public License as published by
14;; the Free Software Foundation; either version 2, or (at your option)
15;; any later version.
16
84fc2cfa 17;; GNU Emacs is distributed in the hope that it will be useful,
1fe3d507
DL
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
f7359658
RS
23;; along with GNU Emacs; see the file COPYING. If not, write to the
24;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25;; Boston, MA 02111-1307, USA.
26
27;;; Commentary:
28
29;; This minor mode allows programmers to step through Emacs Lisp
30;; source code while executing functions. You can also set
31;; breakpoints, trace (stopping at each expression), evaluate
32;; expressions as if outside Edebug, reevaluate and display a list of
33;; expressions, trap errors normally caught by debug, and display a
34;; debug style backtrace.
35
f7359658
RS
36;;; Minimal Instructions
37;; =====================
38
6392137f 39;; First evaluate a defun with C-M-x, then run the function. Step
f7359658
RS
40;; through the code with SPC, mark breakpoints with b, go until a
41;; breakpoint is reached with g, and quit execution with q. Use the
6392137f 42;; "?" command in edebug to describe other commands.
c86b5c78 43;; See the Emacs Lisp Reference Manual for more details.
6392137f
KH
44
45;; If you wish to change the default edebug global command prefix, change:
46;; (setq edebug-global-prefix "\C-xX")
f7359658 47
c86b5c78
RS
48;; Edebug was written by
49;; Daniel LaLiberte
6392137f
KH
50;; GTE Labs
51;; 40 Sylvan Rd
52;; Waltham, MA 02254
53;; dlaliberte@gte.com
f7359658
RS
54
55;;; Code:
1fe3d507
DL
56
57(defconst edebug-version
7f2b42a1 58 (concat "In Emacs version " emacs-version))
1fe3d507
DL
59
60(require 'backquote)
61
f7359658 62;; Emacs 18 doesn't have defalias.
1fe3d507
DL
63(eval-and-compile
64 (or (fboundp 'defalias) (fset 'defalias 'fset)))
84fc2cfa 65
84fc2cfa 66
f7359658 67;;; Bug reporting
84fc2cfa 68
c86b5c78 69(defconst edebug-maintainer-address "bug-gnu-emacs@gnu.org")
84fc2cfa 70
1fe3d507
DL
71(defun edebug-submit-bug-report ()
72 "Submit, via mail, a bug report on edebug."
73 (interactive)
74 (require 'reporter)
75 (and (y-or-n-p "Do you really want to submit a report on edebug? ")
76 (reporter-submit-bug-report
77 edebug-maintainer-address
78 (concat "edebug.el " edebug-version)
79 (list 'edebug-setup-hook
80 'edebug-all-defs
81 'edebug-all-forms
82 'edebug-eval-macro-args
1fe3d507
DL
83 'edebug-save-windows
84 'edebug-save-displayed-buffer-points
85 'edebug-initial-mode
86 'edebug-trace
87 'edebug-test-coverage
88 'edebug-continue-kbd-macro
89 'edebug-print-length
90 'edebug-print-level
91 'edebug-print-circle
92 ))))
93
f7359658 94;;; Options
1fe3d507 95
c5292bc8
RS
96(defgroup edebug nil
97 "A source-level debugger for Emacs Lisp"
98 :group 'lisp)
99
100
101(defcustom edebug-setup-hook nil
1fe3d507 102 "*Functions to call before edebug is used.
a50d4326
DL
103Each time it is set to a new value, Edebug will call those functions
104once and then `edebug-setup-hook' is reset to nil. You could use this
105to load up Edebug specifications associated with a package you are
c5292bc8
RS
106using but only when you also use Edebug."
107 :type 'hook
108 :group 'edebug)
1fe3d507 109
c5292bc8 110(defcustom edebug-all-defs nil
a50d4326
DL
111 "*If non-nil, evaluation of any defining forms will instrument for Edebug.
112This applies to `eval-defun', `eval-region', `eval-buffer', and
113`eval-current-buffer'. `eval-region' is also called by
1fe3d507
DL
114`eval-last-sexp', and `eval-print-last-sexp'.
115
116You can use the command `edebug-all-defs' to toggle the value of this
a50d4326 117variable. You may wish to make it local to each buffer with
f7359658 118\(make-local-variable 'edebug-all-defs) in your
c5292bc8
RS
119`emacs-lisp-mode-hook'."
120 :type 'boolean
121 :group 'edebug)
1fe3d507 122
c5292bc8 123(defcustom edebug-all-forms nil
a50d4326 124 "*Non-nil evaluation of all forms will instrument for Edebug.
1fe3d507 125This doesn't apply to loading or evaluations in the minibuffer.
c5292bc8
RS
126Use the command `edebug-all-forms' to toggle the value of this option."
127 :type 'boolean
128 :group 'edebug)
84fc2cfa 129
c5292bc8 130(defcustom edebug-eval-macro-args nil
1fe3d507 131 "*Non-nil means all macro call arguments may be evaluated.
f7359658 132If this variable is nil, the default, Edebug will *not* wrap
1fe3d507 133macro call arguments as if they will be evaluated.
f7359658 134For each macro, a `edebug-form-spec' overrides this option.
1fe3d507 135So to specify exceptions for macros that have some arguments evaluated
c86b5c78 136and some not, you should specify an `edebug-form-spec'."
c5292bc8
RS
137 :type 'boolean
138 :group 'edebug)
84fc2cfa 139
c5292bc8 140(defcustom edebug-save-windows t
a50d4326
DL
141 "*If non-nil, Edebug saves and restores the window configuration.
142That takes some time, so if your program does not care what happens to
143the window configurations, it is better to set this variable to nil.
1fe3d507
DL
144
145If the value is a list, only the listed windows are saved and
146restored.
84fc2cfa 147
c5292bc8
RS
148`edebug-toggle-save-windows' may be used to change this variable."
149 :type '(choice boolean (repeat string))
150 :group 'edebug)
84fc2cfa 151
c5292bc8 152(defcustom edebug-save-displayed-buffer-points nil
a50d4326 153 "*If non-nil, save and restore point in all displayed buffers.
84fc2cfa 154
a50d4326
DL
155Saving and restoring point in other buffers is necessary if you are
156debugging code that changes the point of a buffer which is displayed
157in a non-selected window. If Edebug or the user then selects the
84fc2cfa
ER
158window, the buffer's point will be changed to the window's point.
159
a50d4326
DL
160Saving and restoring point in all buffers is expensive, since it
161requires selecting each window twice, so enable this only if you need
c5292bc8
RS
162it."
163 :type 'boolean
164 :group 'edebug)
84fc2cfa 165
c5292bc8 166(defcustom edebug-initial-mode 'step
a50d4326
DL
167 "*Initial execution mode for Edebug, if non-nil. If this variable
168is non-@code{nil}, it specifies the initial execution mode for Edebug
169when it is first activated. Possible values are step, next, go,
c5292bc8
RS
170Go-nonstop, trace, Trace-fast, continue, and Continue-fast."
171 :type '(choice (const step) (const next) (const go)
172 (const Go-nonstop) (const trace)
173 (const Trace-fast) (const continue)
174 (const continue-fast))
175 :group 'edebug)
176
177(defcustom edebug-trace nil
a50d4326
DL
178 "*Non-nil means display a trace of function entry and exit.
179Tracing output is displayed in a buffer named `*edebug-trace*', one
180function entry or exit per line, indented by the recursion level.
181
182You can customize by replacing functions `edebug-print-trace-before'
c5292bc8
RS
183and `edebug-print-trace-after'."
184 :type 'boolean
185 :group 'edebug)
84fc2cfa 186
c5292bc8 187(defcustom edebug-test-coverage nil
1fe3d507
DL
188 "*If non-nil, Edebug tests coverage of all expressions debugged.
189This is done by comparing the result of each expression
190with the previous result. Coverage is considered OK if two different
a50d4326 191results are found.
84fc2cfa 192
1fe3d507 193Use `edebug-display-freq-count' to display the frequency count and
c5292bc8
RS
194coverage information for a definition."
195 :type 'boolean
196 :group 'edebug)
1fe3d507 197
c5292bc8 198(defcustom edebug-continue-kbd-macro nil
a50d4326 199 "*If non-nil, continue defining or executing any keyboard macro.
c5292bc8
RS
200Use this with caution since it is not debugged."
201 :type 'boolean
202 :group 'edebug)
203
204
205(defcustom edebug-print-length 50
206 "*Default value of `print-length' to use while printing results in Edebug."
207 :type 'integer
208 :group 'edebug)
209(defcustom edebug-print-level 50
210 "*Default value of `print-level' to use while printing results in Edebug."
211 :type 'integer
212 :group 'edebug)
213(defcustom edebug-print-circle t
214 "*Default value of `print-circle' to use while printing results in Edebug."
215 :type 'boolean
216 :group 'edebug)
217
218(defcustom edebug-unwrap-results nil
1fe3d507
DL
219 "*Non-nil if Edebug should unwrap results of expressions.
220This is useful when debugging macros where the results of expressions
221are instrumented expressions. But don't do this when results might be
c5292bc8
RS
222circular or an infinite loop will result."
223 :type 'boolean
224 :group 'edebug)
1fe3d507 225
c5292bc8 226(defcustom edebug-on-error t
1fe3d507
DL
227 "*Value bound to `debug-on-error' while Edebug is active.
228
229If `debug-on-error' is non-nil, that value is still used.
230
231If the value is a list of signal names, Edebug will stop when any of
232these errors are signaled from Lisp code whether or not the signal is
233handled by a `condition-case'. This option is useful for debugging
234signals that *are* handled since they would otherwise be missed.
c5292bc8
RS
235After execution is resumed, the error is signaled again."
236 :type '(choice boolean (repeat string))
237 :group 'edebug)
1fe3d507 238
c5292bc8
RS
239(defcustom edebug-on-quit t
240 "*Value bound to `debug-on-quit' while Edebug is active."
241 :type 'boolean
242 :group 'edebug)
1fe3d507 243
c5292bc8 244(defcustom edebug-global-break-condition nil
a50d4326 245 "*If non-nil, an expression to test for at every stop point.
c5292bc8
RS
246If the result is non-nil, then break. Errors are ignored."
247 :type 'sexp
248 :group 'edebug)
a50d4326 249
5492ef3c
RS
250(defcustom edebug-sit-for-seconds 1
251 "*Number of seconds to pause when execution mode is `trace'."
252 :type 'number
253 :group 'edebug)
254
f7359658 255;;; Form spec utilities.
1fe3d507
DL
256
257;;;###autoload
258(defmacro def-edebug-spec (symbol spec)
259 "Set the edebug-form-spec property of SYMBOL according to SPEC.
260Both SYMBOL and SPEC are unevaluated. The SPEC can be 0, t, a symbol
f7359658 261\(naming a function), or a list."
1fe3d507
DL
262 (` (put (quote (, symbol)) 'edebug-form-spec (quote (, spec)))))
263
264(defmacro def-edebug-form-spec (symbol spec-form)
f7359658 265 "For compatibility with old version. Use `def-edebug-spec' instead."
1fe3d507
DL
266 (message "Obsolete: use def-edebug-spec instead.")
267 (def-edebug-spec symbol (eval spec-form)))
268
269(defun get-edebug-spec (symbol)
270 ;; Get the spec of symbol resolving all indirection.
271 (let ((edebug-form-spec (get symbol 'edebug-form-spec))
272 indirect)
273 (while (and (symbolp edebug-form-spec)
274 (setq indirect (get edebug-form-spec 'edebug-form-spec)))
275 ;; (edebug-trace "indirection: %s" edebug-form-spec)
276 (setq edebug-form-spec indirect))
277 edebug-form-spec
278 ))
279
f7359658 280;;; Utilities
1fe3d507 281
f7359658
RS
282;; Define edebug-gensym - from old cl.el
283(defvar edebug-gensym-index 0
284 "Integer used by `edebug-gensym' to produce new names.")
1fe3d507 285
f7359658 286(defun edebug-gensym (&optional prefix)
1fe3d507
DL
287 "Generate a fresh uninterned symbol.
288There is an optional argument, PREFIX. PREFIX is the
289string that begins the new name. Most people take just the default,
290except when debugging needs suggest otherwise."
291 (if (null prefix)
292 (setq prefix "G"))
293 (let ((newsymbol nil)
294 (newname ""))
295 (while (not newsymbol)
f7359658
RS
296 (setq newname (concat prefix (int-to-string edebug-gensym-index)))
297 (setq edebug-gensym-index (+ edebug-gensym-index 1))
1fe3d507
DL
298 (if (not (intern-soft newname))
299 (setq newsymbol (make-symbol newname))))
300 newsymbol))
1fe3d507 301
a50d4326 302;; Only used by CL-like code.
f7359658
RS
303(defun edebug-keywordp (object)
304 "Return t if OBJECT is a keyword.
305A keyword is a symbol that starts with `:'."
306 (and (symbolp object)
307 (= ?: (aref (symbol-name object) 0))))
308
309(defun edebug-lambda-list-keywordp (object)
1fe3d507 310 "Return t if OBJECT is a lambda list keyword.
f7359658 311A lambda list keyword is a symbol that starts with `&'."
1fe3d507
DL
312 (and (symbolp object)
313 (= ?& (aref (symbol-name object) 0))))
84fc2cfa 314
84fc2cfa
ER
315
316(defun edebug-last-sexp ()
1fe3d507 317 ;; Return the last sexp before point in current buffer.
f7359658 318 ;; Assumes Emacs Lisp syntax is active.
84fc2cfa
ER
319 (car
320 (read-from-string
321 (buffer-substring
322 (save-excursion
323 (forward-sexp -1)
324 (point))
325 (point)))))
326
327(defun edebug-window-list ()
f7359658
RS
328 "Return a list of windows, in order of `next-window'."
329 ;; This doesn't work for epoch.
84fc2cfa
ER
330 (let* ((first-window (selected-window))
331 (window-list (list first-window))
332 (next (next-window first-window)))
333 (while (not (eq next first-window))
334 (setq window-list (cons next window-list))
335 (setq next (next-window next)))
336 (nreverse window-list)))
337
1fe3d507
DL
338(defun edebug-window-live-p (window)
339 "Return non-nil if WINDOW is visible."
340 (let* ((first-window (selected-window))
341 (next (next-window first-window t)))
342 (while (not (or (eq next window)
343 (eq next first-window)))
344 (setq next (next-window next t)))
345 (eq next window)))
346
347;; Not used.
348'(defun edebug-two-window-p ()
84fc2cfa
ER
349 "Return t if there are two windows."
350 (and (not (one-window-p))
351 (eq (selected-window)
352 (next-window (next-window (selected-window))))))
353
1fe3d507 354(defsubst edebug-lookup-function (object)
84fc2cfa
ER
355 (while (and (symbolp object) (fboundp object))
356 (setq object (symbol-function object)))
1fe3d507
DL
357 object)
358
359(defun edebug-macrop (object)
360 "Return the macro named by OBJECT, or nil if it is not a macro."
361 (setq object (edebug-lookup-function object))
84fc2cfa
ER
362 (if (and (listp object)
363 (eq 'macro (car object))
364 (edebug-functionp (cdr object)))
365 object))
366
367(defun edebug-functionp (object)
368 "Returns the function named by OBJECT, or nil if it is not a function."
1fe3d507 369 (setq object (edebug-lookup-function object))
84fc2cfa 370 (if (or (subrp object)
f7359658 371 (byte-code-function-p object)
84fc2cfa
ER
372 (and (listp object)
373 (eq (car object) 'lambda)
374 (listp (car (cdr object)))))
375 object))
376
377(defun edebug-sort-alist (alist function)
1fe3d507
DL
378 ;; Return the ALIST sorted with comparison function FUNCTION.
379 ;; This uses 'sort so the sorting is destructive.
84fc2cfa
ER
380 (sort alist (function
381 (lambda (e1 e2)
382 (funcall function (car e1) (car e2))))))
383
1fe3d507 384;;(def-edebug-spec edebug-save-restriction t)
84fc2cfa 385
1fe3d507
DL
386;; Not used. If it is used, def-edebug-spec must be defined before use.
387'(defmacro edebug-save-restriction (&rest body)
84fc2cfa
ER
388 "Evaluate BODY while saving the current buffers restriction.
389BODY may change buffer outside of current restriction, unlike
390save-restriction. BODY may change the current buffer,
391and the restriction will be restored to the original buffer,
392and the current buffer remains current.
393Return the result of the last expression in BODY."
394 (` (let ((edebug:s-r-beg (point-min-marker))
395 (edebug:s-r-end (point-max-marker)))
396 (unwind-protect
397 (progn (,@ body))
398 (save-excursion
399 (set-buffer (marker-buffer edebug:s-r-beg))
400 (narrow-to-region edebug:s-r-beg edebug:s-r-end))))))
401
f7359658 402;;; Display
1fe3d507
DL
403
404(defconst edebug-trace-buffer "*edebug-trace*"
405 "Name of the buffer to put trace info in.")
406
407(defun edebug-pop-to-buffer (buffer &optional window)
408 ;; Like pop-to-buffer, but select window where BUFFER was last shown.
409 ;; Select WINDOW if it provided and it still exists. Otherwise,
410 ;; if buffer is currently shown in several windows, choose one.
411 ;; Otherwise, find a new window, possibly splitting one.
412 (setq window (if (and (windowp window) (edebug-window-live-p window)
413 (eq (window-buffer window) buffer))
414 window
415 (if (eq (window-buffer (selected-window)) buffer)
416 (selected-window)
417 (edebug-get-buffer-window buffer))))
418 (if window
419 (select-window window)
420 (if (one-window-p)
421 (split-window))
422 ;; (message "next window: %s" (next-window)) (sit-for 1)
423 (if (eq (get-buffer-window edebug-trace-buffer) (next-window))
f7359658 424 ;; Don't select trace window
1fe3d507
DL
425 nil
426 (select-window (next-window))))
427 (set-window-buffer (selected-window) buffer)
428 (set-window-hscroll (selected-window) 0);; should this be??
429 ;; Selecting the window does not set the buffer until command loop.
430 ;;(set-buffer buffer)
431 )
84fc2cfa 432
1fe3d507
DL
433
434(defun edebug-get-displayed-buffer-points ()
435 ;; Return a list of buffer point pairs, for all displayed buffers.
436 (save-excursion
437 (let* ((first-window (selected-window))
438 (next (next-window first-window))
439 (buffer-point-list nil)
440 buffer)
441 (while (not (eq next first-window))
442 (set-buffer (setq buffer (window-buffer next)))
443 (setq buffer-point-list
444 (cons (cons buffer (point)) buffer-point-list))
445 (setq next (next-window next)))
446 buffer-point-list)))
447
448
449(defun edebug-set-buffer-points (buffer-points)
450 ;; Restore the buffer-points created by edebug-get-displayed-buffer-points.
451 (let ((current-buffer (current-buffer)))
452 (mapcar (function (lambda (buf-point)
453 (if (buffer-name (car buf-point)) ; still exists
454 (progn
455 (set-buffer (car buf-point))
456 (goto-char (cdr buf-point))))))
457 buffer-points)
458 (set-buffer current-buffer)))
459
460(defun edebug-current-windows (which-windows)
461 ;; Get either a full window configuration or some window information.
462 (if (listp which-windows)
463 (mapcar (function (lambda (window)
464 (if (edebug-window-live-p window)
465 (list window
466 (window-buffer window)
467 (window-point window)
468 (window-start window)
469 (window-hscroll window)))))
470 which-windows)
471 (current-window-configuration)))
472
473(defun edebug-set-windows (window-info)
474 ;; Set either a full window configuration or some window information.
475 (if (listp window-info)
476 (mapcar (function
477 (lambda (one-window-info)
478 (if one-window-info
479 (apply (function
480 (lambda (window buffer point start hscroll)
481 (if (edebug-window-live-p window)
482 (progn
483 (set-window-buffer window buffer)
484 (set-window-point window point)
485 (set-window-start window start)
486 (set-window-hscroll window hscroll)))))
487 one-window-info))))
488 window-info)
489 (set-window-configuration window-info)))
490
491(defalias 'edebug-get-buffer-window 'get-buffer-window)
492(defalias 'edebug-sit-for 'sit-for)
493(defalias 'edebug-input-pending-p 'input-pending-p)
494
495
f7359658
RS
496;;; Redefine read and eval functions
497;; read is redefined to maybe instrument forms.
498;; eval-defun is redefined to check edebug-all-forms and edebug-all-defs.
1fe3d507 499
f7359658
RS
500;; Use the Lisp version of eval-region.
501(require 'eval-reg "eval-reg")
1fe3d507
DL
502
503;; Save the original read function
504(or (fboundp 'edebug-original-read)
505 (defalias 'edebug-original-read (symbol-function 'read)))
506
88668147
DL
507(defun edebug-read (&optional stream)
508 "Read one Lisp expression as text from STREAM, return as Lisp object.
509If STREAM is nil, use the value of `standard-input' (which see).
510STREAM or the value of `standard-input' may be:
511 a buffer (read from point and advance it)
512 a marker (read from where it points and advance it)
513 a function (call it with no arguments for each character,
514 call it with a char as argument to push a char back)
515 a string (takes text from string, starting at the beginning)
516 t (read text line using minibuffer and use it).
517
518This version, from Edebug, maybe instruments the expression. But the
f7359658 519STREAM must be the current buffer to do so. Whether it instruments is
88668147 520also dependent on the values of `edebug-all-defs' and
1fe3d507 521`edebug-all-forms'."
88668147
DL
522 (or stream (setq stream standard-input))
523 (if (eq stream (current-buffer))
1fe3d507
DL
524 (edebug-read-and-maybe-wrap-form)
525 (edebug-original-read stream)))
526
1fe3d507
DL
527(or (fboundp 'edebug-original-eval-defun)
528 (defalias 'edebug-original-eval-defun (symbol-function 'eval-defun)))
529
f7359658
RS
530;; We should somehow arrange to be able to do this
531;; without actually replacing the eval-defun command.
1fe3d507
DL
532(defun edebug-eval-defun (edebug-it)
533 "Evaluate the top-level form containing point, or after point.
534
535This version, from Edebug, has the following differences: With a
88668147 536prefix argument instrument the code for Edebug. If `edebug-all-defs' is
1fe3d507 537non-nil, then the code is instrumented *unless* there is a prefix
f7359658 538argument. If instrumenting, it prints: `Edebug: FUNCTIONNAME'.
1fe3d507
DL
539Otherwise, it prints in the minibuffer."
540 (interactive "P")
f7359658
RS
541 (let* ((edebugging (not (eq (not edebug-it) (not edebug-all-defs))))
542 (edebug-result)
543 (form
544 (let ((edebug-all-forms edebugging)
545 (edebug-all-defs (eq edebug-all-defs (not edebug-it))))
546 (edebug-read-top-level-form))))
547 (if (and (eq (car form) 'defvar)
548 (cdr-safe (cdr-safe form)))
549 (setq form (cons 'defconst (cdr form))))
550 (setq edebug-result (eval form))
1fe3d507
DL
551 (if (not edebugging)
552 (princ edebug-result)
553 edebug-result)))
554
555
556;;;###autoload
557(defalias 'edebug-defun 'edebug-eval-top-level-form)
558
559;;;###autoload
560(defun edebug-eval-top-level-form ()
561 "Evaluate a top level form, such as a defun or defmacro.
562This is like `eval-defun', but the code is always instrumented for Edebug.
563Print its name in the minibuffer and leave point where it is,
f7359658 564or if an error occurs, leave point after it with mark at the original point."
84fc2cfa 565 (interactive)
1fe3d507 566 (eval
f7359658 567 ;; Bind edebug-all-forms only while reading, not while evalling
1fe3d507 568 ;; but this causes problems while edebugging edebug.
88668147
DL
569 (let ((edebug-all-forms t)
570 (edebug-all-defs t))
1fe3d507 571 (edebug-read-top-level-form))))
84fc2cfa
ER
572
573
1fe3d507
DL
574(defun edebug-read-top-level-form ()
575 (let ((starting-point (point)))
576 (end-of-defun)
577 (beginning-of-defun)
578 (prog1
579 (edebug-read-and-maybe-wrap-form)
580 ;; Recover point, but only if no error occurred.
581 (goto-char starting-point))))
84fc2cfa 582
84fc2cfa 583
1fe3d507
DL
584;; Compatibility with old versions.
585(defalias 'edebug-all-defuns 'edebug-all-defs)
84fc2cfa 586
1fe3d507
DL
587(defun edebug-all-defs ()
588 "Toggle edebugging of all definitions."
589 (interactive)
590 (setq edebug-all-defs (not edebug-all-defs))
591 (message "Edebugging all definitions is %s."
592 (if edebug-all-defs "on" "off")))
84fc2cfa 593
84fc2cfa 594
1fe3d507
DL
595(defun edebug-all-forms ()
596 "Toggle edebugging of all forms."
597 (interactive)
598 (setq edebug-all-forms (not edebug-all-forms))
599 (message "Edebugging all forms is %s."
600 (if edebug-all-forms "on" "off")))
84fc2cfa
ER
601
602
1fe3d507 603(defun edebug-install-read-eval-functions ()
1c222bca 604 (interactive)
88668147 605 ;; Don't install if already installed.
f7359658 606 (if (eq (symbol-function 'read) 'edebug-read) nil
88668147
DL
607 (elisp-eval-region-install)
608 (defalias 'read 'edebug-read)
609 (defalias 'eval-defun 'edebug-eval-defun)))
daa37602 610
1fe3d507
DL
611(defun edebug-uninstall-read-eval-functions ()
612 (interactive)
88668147
DL
613 (elisp-eval-region-uninstall)
614 (defalias 'read (symbol-function 'edebug-original-read))
615 (defalias 'eval-defun (symbol-function 'edebug-original-eval-defun)))
1fe3d507
DL
616
617
f7359658 618;;; Edebug internal data
1fe3d507 619
f7359658
RS
620;; The internal data that is needed for edebugging is kept in the
621;; buffer-local variable `edebug-form-data'.
1fe3d507
DL
622
623(make-variable-buffer-local 'edebug-form-data)
624
625(defconst edebug-form-data nil)
626;; A list of entries associating symbols with buffer regions.
627;; This is an automatic buffer local variable. Each entry looks like:
628;; @code{(@var{symbol} @var{begin-marker} @var{end-marker}). The markers
629;; are at the beginning and end of an entry level form and @var{symbol} is
630;; a symbol that holds all edebug related information for the form on its
631;; property list.
632
633;; In the future, the symbol will be irrelevant and edebug data will
634;; be stored in the definitions themselves rather than in the property
635;; list of a symbol.
636
637(defun edebug-make-form-data-entry (symbol begin end)
638 (list symbol begin end))
639
640(defsubst edebug-form-data-name (entry)
641 (car entry))
642
643(defsubst edebug-form-data-begin (entry)
644 (nth 1 entry))
645
646(defsubst edebug-form-data-end (entry)
647 (nth 2 entry))
648
649(defsubst edebug-set-form-data-entry (entry name begin end)
650 (setcar entry name);; in case name is changed
651 (set-marker (nth 1 entry) begin)
652 (set-marker (nth 2 entry) end))
653
654(defun edebug-get-form-data-entry (pnt &optional end-point)
655 ;; Find the edebug form data entry which is closest to PNT.
656 ;; If END-POINT is supplied, match must be exact.
657 ;; Return `nil' if none found.
658 (let ((rest edebug-form-data)
659 closest-entry
660 (closest-dist 999999)) ;; need maxint here
661 (while (and rest (< 0 closest-dist))
662 (let* ((entry (car rest))
663 (begin (edebug-form-data-begin entry))
664 (dist (- pnt begin)))
665 (setq rest (cdr rest))
666 (if (and (<= 0 dist)
667 (< dist closest-dist)
668 (or (not end-point)
669 (= end-point (edebug-form-data-end entry)))
670 (<= pnt (edebug-form-data-end entry)))
671 (setq closest-dist dist
672 closest-entry entry))))
673 closest-entry))
674
675;; Also need to find all contained entries,
676;; and find an entry given a symbol, which should be just assq.
677
678(defun edebug-form-data-symbol ()
679;; Return the edebug data symbol of the form where point is in.
680;; If point is not inside a edebuggable form, cause error.
681 (or (edebug-form-data-name (edebug-get-form-data-entry (point)))
682 (error "Not inside instrumented form")))
683
684(defun edebug-make-top-form-data-entry (new-entry)
685 ;; Make NEW-ENTRY the first element in the `edebug-form-data' list.
686 (edebug-clear-form-data-entry new-entry)
687 (setq edebug-form-data (cons new-entry edebug-form-data)))
688
689(defun edebug-clear-form-data-entry (entry)
690;; If non-nil, clear ENTRY out of the form data.
691;; Maybe clear the markers and delete the symbol's edebug property?
692 (if entry
693 (progn
694 ;; Instead of this, we could just find all contained forms.
695 ;; (put (car entry) 'edebug nil) ;
696 ;; (mapcar 'edebug-clear-form-data-entry ; dangerous
697 ;; (get (car entry) 'edebug-dependents))
698 ;; (set-marker (nth 1 entry) nil)
699 ;; (set-marker (nth 2 entry) nil)
700 (setq edebug-form-data (delq entry edebug-form-data)))))
daa37602 701
f7359658 702;;; Parser utilities
1fe3d507
DL
703
704(defun edebug-syntax-error (&rest args)
705 ;; Signal an invalid-read-syntax with ARGS.
706 (signal 'invalid-read-syntax args))
707
84fc2cfa 708
1fe3d507
DL
709(defconst edebug-read-syntax-table
710 ;; Lookup table for significant characters indicating the class of the
711 ;; token that follows. This is not a \"real\" syntax table.
712 (let ((table (make-vector 256 'symbol))
713 (i 0))
714 (while (< i ?!)
715 (aset table i 'space)
716 (setq i (1+ i)))
717 (aset table ?\( 'lparen)
718 (aset table ?\) 'rparen)
719 (aset table ?\' 'quote)
f7359658
RS
720 (aset table ?\` 'backquote)
721 (aset table ?\, 'comma)
1fe3d507
DL
722 (aset table ?\" 'string)
723 (aset table ?\? 'char)
724 (aset table ?\[ 'lbracket)
725 (aset table ?\] 'rbracket)
726 (aset table ?\. 'dot)
727 (aset table ?\# 'hash)
728 ;; We treat numbers as symbols, because of confusion with -, -1, and 1-.
f7359658 729 ;; We don't care about any other chars since they won't be seen.
1fe3d507 730 table))
84fc2cfa 731
1fe3d507
DL
732(defun edebug-next-token-class ()
733 ;; Move to the next token and return its class. We only care about
f7359658
RS
734 ;; lparen, rparen, dot, quote, backquote, comma, string, char, vector,
735 ;; or symbol.
1fe3d507
DL
736 (edebug-skip-whitespace)
737 (aref edebug-read-syntax-table (following-char)))
84fc2cfa 738
84fc2cfa 739
1fe3d507
DL
740(defun edebug-skip-whitespace ()
741 ;; Leave point before the next token, skipping white space and comments.
742 (skip-chars-forward " \t\r\n\f")
743 (while (= (following-char) ?\;)
744 ;; \r is counted as a comment terminator to support selective display.
745 (skip-chars-forward "^\n\r") ; skip the comment
746 (skip-chars-forward " \t\r\n\f")))
84fc2cfa 747
84fc2cfa 748
1fe3d507 749;; Mostly obsolete reader; still used in one case.
84fc2cfa 750
1fe3d507
DL
751(defun edebug-read-sexp ()
752 ;; Read one sexp from the current buffer starting at point.
753 ;; Leave point immediately after it. A sexp can be a list or atom.
754 ;; An atom is a symbol (or number), character, string, or vector.
755 ;; This works for reading anything legitimate, but it
756 ;; is gummed up by parser inconsistencies (bugs?)
757 (let ((class (edebug-next-token-class)))
758 (cond
759 ;; read goes one too far if a (possibly quoted) string or symbol
760 ;; is immediately followed by non-whitespace.
f4897e40
RS
761 ((eq class 'symbol) (edebug-original-read (current-buffer)))
762 ((eq class 'string) (edebug-original-read (current-buffer)))
1fe3d507
DL
763 ((eq class 'quote) (forward-char 1)
764 (list 'quote (edebug-read-sexp)))
f7359658
RS
765 ((eq class 'backquote)
766 (list '\` (edebug-read-sexp)))
767 ((eq class 'comma)
768 (list '\, (edebug-read-sexp)))
1fe3d507
DL
769 (t ; anything else, just read it.
770 (edebug-original-read (current-buffer))))))
771
f7359658 772;;; Offsets for reader
1fe3d507
DL
773
774;; Define a structure to represent offset positions of expressions.
775;; Each offset structure looks like: (before . after) for constituents,
776;; or for structures that have elements: (before <subexpressions> . after)
777;; where the <subexpressions> are the offset structures for subexpressions
778;; including the head of a list.
779(defconst edebug-offsets nil)
780
781;; Stack of offset structures in reverse order of the nesting.
782;; This is used to get back to previous levels.
783(defconst edebug-offsets-stack nil)
784(defconst edebug-current-offset nil) ; Top of the stack, for convenience.
785
786;; We must store whether we just read a list with a dotted form that
787;; is itself a list. This structure will be condensed, so the offsets
788;; must also be condensed.
789(defconst edebug-read-dotted-list nil)
790
791(defsubst edebug-initialize-offsets ()
792 ;; Reinitialize offset recording.
793 (setq edebug-current-offset nil))
794
795(defun edebug-store-before-offset (point)
796 ;; Add a new offset pair with POINT as the before offset.
797 (let ((new-offset (list point)))
798 (if edebug-current-offset
799 (setcdr edebug-current-offset
800 (cons new-offset (cdr edebug-current-offset)))
801 ;; Otherwise, we are at the top level, so initialize.
802 (setq edebug-offsets new-offset
803 edebug-offsets-stack nil
804 edebug-read-dotted-list nil))
805 ;; Cons the new offset to the front of the stack.
806 (setq edebug-offsets-stack (cons new-offset edebug-offsets-stack)
807 edebug-current-offset new-offset)
84fc2cfa
ER
808 ))
809
1fe3d507
DL
810(defun edebug-store-after-offset (point)
811 ;; Finalize the current offset struct by reversing it and
812 ;; store POINT as the after offset.
813 (if (not edebug-read-dotted-list)
814 ;; Just reverse the offsets of all subexpressions.
815 (setcdr edebug-current-offset (nreverse (cdr edebug-current-offset)))
816
817 ;; We just read a list after a dot, which will be abbreviated out.
818 (setq edebug-read-dotted-list nil)
819 ;; Drop the corresponding offset pair.
820 ;; That is, nconc the reverse of the rest of the offsets
821 ;; with the cdr of last offset.
822 (setcdr edebug-current-offset
823 (nconc (nreverse (cdr (cdr edebug-current-offset)))
824 (cdr (car (cdr edebug-current-offset))))))
825
826 ;; Now append the point using nconc.
827 (setq edebug-current-offset (nconc edebug-current-offset point))
828 ;; Pop the stack.
829 (setq edebug-offsets-stack (cdr edebug-offsets-stack)
830 edebug-current-offset (car edebug-offsets-stack)))
831
832(defun edebug-ignore-offset ()
833 ;; Ignore the last created offset pair.
834 (setcdr edebug-current-offset (cdr (cdr edebug-current-offset))))
835
836(def-edebug-spec edebug-storing-offsets (form body))
837(put 'edebug-storing-offsets 'lisp-indent-hook 1)
838
839(defmacro edebug-storing-offsets (point &rest body)
840 (` (unwind-protect
841 (progn
842 (edebug-store-before-offset (, point))
843 (,@ body))
844 (edebug-store-after-offset (point)))))
845
846
f7359658
RS
847;;; Reader for Emacs Lisp.
848
1fe3d507
DL
849;; Uses edebug-next-token-class (and edebug-skip-whitespace) above.
850
851(defconst edebug-read-alist
852 '((symbol . edebug-read-symbol)
853 (lparen . edebug-read-list)
854 (string . edebug-read-string)
855 (quote . edebug-read-quote)
f7359658
RS
856 (backquote . edebug-read-backquote)
857 (comma . edebug-read-comma)
1fe3d507
DL
858 (lbracket . edebug-read-vector)
859 (hash . edebug-read-function)
860 ))
84fc2cfa 861
1fe3d507
DL
862(defun edebug-read-storing-offsets (stream)
863 (let ((class (edebug-next-token-class))
864 func
865 edebug-read-dotted-list) ; see edebug-store-after-offset
866 (edebug-storing-offsets (point)
867 (if (setq func (assq class edebug-read-alist))
868 (funcall (cdr func) stream)
869 ;; anything else, just read it.
870 (edebug-original-read stream))
871 )))
84fc2cfa 872
1fe3d507 873(defun edebug-read-symbol (stream)
f4897e40 874 (edebug-original-read stream))
84fc2cfa 875
1fe3d507 876(defun edebug-read-string (stream)
f4897e40 877 (edebug-original-read stream))
84fc2cfa 878
1fe3d507
DL
879(defun edebug-read-quote (stream)
880 ;; Turn 'thing into (quote thing)
881 (forward-char 1)
882 (list
883 (edebug-storing-offsets (point) 'quote)
884 (edebug-read-storing-offsets stream)))
885
f7359658
RS
886(defun edebug-read-backquote (stream)
887 ;; Turn `thing into (\` thing)
888 (let ((opoint (point)))
889 (forward-char 1)
890 ;; Generate the same structure of offsets we would have
891 ;; if the resulting list appeared verbatim in the input text.
892 (edebug-storing-offsets opoint
893 (list
894 (edebug-storing-offsets opoint '\`)
895 (edebug-read-storing-offsets stream)))))
896
897(defvar edebug-read-backquote-new nil
898 "Non-nil if reading the inside of a new-style backquote with no parens around it.
899Value of nil means reading the inside of an old-style backquote construct
900which is surrounded by an extra set of parentheses.
901This controls how we read comma constructs.")
902
903(defun edebug-read-comma (stream)
904 ;; Turn ,thing into (\, thing). Handle ,@ and ,. also.
905 (let ((opoint (point)))
906 (forward-char 1)
907 (let ((symbol '\,))
908 (cond ((eq (following-char) ?\.)
909 (setq symbol '\,\.)
910 (forward-char 1))
911 ((eq (following-char) ?\@)
912 (setq symbol '\,@)
913 (forward-char 1)))
914 ;; Generate the same structure of offsets we would have
915 ;; if the resulting list appeared verbatim in the input text.
916 (if edebug-read-backquote-new
917 (list
918 (edebug-storing-offsets opoint symbol)
919 (edebug-read-storing-offsets stream))
920 (edebug-storing-offsets opoint symbol)))))
921
1fe3d507
DL
922(defun edebug-read-function (stream)
923 ;; Turn #'thing into (function thing)
924 (forward-char 1)
925 (if (/= ?\' (following-char)) (edebug-syntax-error "Bad char"))
926 (forward-char 1)
927 (list
928 (edebug-storing-offsets (point)
929 (if (featurep 'cl) 'function* 'function))
930 (edebug-read-storing-offsets stream)))
931
932(defun edebug-read-list (stream)
933 (forward-char 1) ; skip \(
934 (prog1
935 (let ((elements))
936 (while (not (memq (edebug-next-token-class) '(rparen dot)))
f7359658
RS
937 (if (eq (edebug-next-token-class) 'backquote)
938 (let ((edebug-read-backquote-new (not (null elements)))
939 (opoint (point)))
940 (if edebug-read-backquote-new
941 (setq elements (cons (edebug-read-backquote stream) elements))
942 (forward-char 1) ; Skip backquote.
943 ;; Call edebug-storing-offsets here so that we
944 ;; produce the same offsets we would have had
945 ;; if the backquote were an ordinary symbol.
946 (setq elements (cons (edebug-storing-offsets opoint '\`)
947 elements))))
948 (setq elements (cons (edebug-read-storing-offsets stream) elements))))
1fe3d507
DL
949 (setq elements (nreverse elements))
950 (if (eq 'dot (edebug-next-token-class))
951 (let (dotted-form)
952 (forward-char 1) ; skip \.
953 (setq dotted-form (edebug-read-storing-offsets stream))
954 elements (nconc elements dotted-form)
955 (if (not (eq (edebug-next-token-class) 'rparen))
956 (edebug-syntax-error "Expected `)'"))
957 (setq edebug-read-dotted-list (listp dotted-form))
958 ))
959 elements)
960 (forward-char 1) ; skip \)
961 ))
84fc2cfa 962
1fe3d507
DL
963(defun edebug-read-vector (stream)
964 (forward-char 1) ; skip \[
965 (prog1
966 (let ((elements))
967 (while (not (eq 'rbracket (edebug-next-token-class)))
968 (setq elements (cons (edebug-read-storing-offsets stream) elements)))
969 (apply 'vector (nreverse elements)))
970 (forward-char 1) ; skip \]
84fc2cfa
ER
971 ))
972
f7359658 973;;; Cursors for traversal of list and vector elements with offsets.
1fe3d507
DL
974
975(defvar edebug-dotted-spec nil)
976
977(defun edebug-new-cursor (expressions offsets)
978 ;; Return a new cursor for EXPRESSIONS with OFFSETS.
979 (if (vectorp expressions)
980 (setq expressions (append expressions nil)))
981 (cons expressions offsets))
982
983(defsubst edebug-set-cursor (cursor expressions offsets)
984 ;; Set the CURSOR's EXPRESSIONS and OFFSETS to the given.
985 ;; Return the cursor.
986 (setcar cursor expressions)
987 (setcdr cursor offsets)
988 cursor)
989
990'(defun edebug-copy-cursor (cursor)
991 ;; Copy the cursor using the same object and offsets.
992 (cons (car cursor) (cdr cursor)))
993
994(defsubst edebug-cursor-expressions (cursor)
995 (car cursor))
996(defsubst edebug-cursor-offsets (cursor)
997 (cdr cursor))
998
999(defsubst edebug-empty-cursor (cursor)
1000 ;; Return non-nil if CURSOR is empty - meaning no more elements.
1001 (null (car cursor)))
1002
1003(defsubst edebug-top-element (cursor)
1004 ;; Return the top element at the cursor.
1005 ;; Assumes not empty.
1006 (car (car cursor)))
1007
1008(defun edebug-top-element-required (cursor &rest error)
1009 ;; Check if a dotted form is required.
1010 (if edebug-dotted-spec (edebug-no-match cursor "Dot expected."))
1011 ;; Check if there is at least one more argument.
1012 (if (edebug-empty-cursor cursor) (apply 'edebug-no-match cursor error))
1013 ;; Return that top element.
1014 (edebug-top-element cursor))
1015
1016(defsubst edebug-top-offset (cursor)
1017 ;; Return the top offset pair corresponding to the top element.
1018 (car (cdr cursor)))
1019
1020(defun edebug-move-cursor (cursor)
1021 ;; Advance and return the cursor to the next element and offset.
1022 ;; throw no-match if empty before moving.
1023 ;; This is a violation of the cursor encapsulation, but
1024 ;; there is plenty of that going on while matching.
1025 ;; The following test should always fail.
1026 (if (edebug-empty-cursor cursor)
1027 (edebug-no-match cursor "Not enough arguments."))
1028 (setcar cursor (cdr (car cursor)))
1029 (setcdr cursor (cdr (cdr cursor)))
1030 cursor)
1031
1032
1033(defun edebug-before-offset (cursor)
1034 ;; Return the before offset of the cursor.
1035 ;; If there is nothing left in the offsets,
1036 ;; return one less than the offset itself,
1037 ;; which is the after offset for a list.
1038 (let ((offset (edebug-cursor-offsets cursor)))
1039 (if (consp offset)
1040 (car (car offset))
1041 (1- offset))))
1042
1043(defun edebug-after-offset (cursor)
1044 ;; Return the after offset of the cursor object.
1045 (let ((offset (edebug-top-offset cursor)))
1046 (while (consp offset)
1047 (setq offset (cdr offset)))
1048 offset))
1049
f7359658 1050;;; The Parser
1fe3d507 1051
f7359658
RS
1052;; The top level function for parsing forms is
1053;; edebug-read-and-maybe-wrap-form; it calls all the rest. It checks the
1054;; syntax a bit and leaves point at any error it finds, but otherwise
1055;; should appear to work like eval-defun.
1fe3d507 1056
f7359658
RS
1057;; The basic plan is to surround each expression with a call to
1058;; the edebug debugger together with indexes into a table of positions of
1059;; all expressions. Thus an expression "exp" becomes:
1fe3d507 1060
f7359658 1061;; (edebug-after (edebug-before 1) 2 exp)
1fe3d507 1062
f7359658
RS
1063;; When this is evaluated, first point is moved to the beginning of
1064;; exp at offset 1 of the current function. The expression is
1065;; evaluated, which may cause more edebug calls, and then point is
1066;; moved to offset 2 after the end of exp.
1fe3d507 1067
f7359658
RS
1068;; The highest level expressions of the function are wrapped in a call to
1069;; edebug-enter, which supplies the function name and the actual
1070;; arguments to the function. See functions edebug-enter, edebug-before,
1071;; and edebug-after for more details.
1fe3d507
DL
1072
1073;; Dynamically bound vars, left unbound, but globally declared.
1074;; This is to quiet the byte compiler.
1075
1076;; Window data of the highest definition being wrapped.
1077;; This data is shared by all embedded definitions.
1078(defvar edebug-top-window-data)
1079
1080(defvar edebug-&optional)
1081(defvar edebug-&rest)
1082(defvar edebug-gate nil) ;; whether no-match forces an error.
1083
1084(defconst edebug-def-name nil) ; name of definition, used by interactive-form
1085(defconst edebug-old-def-name nil) ; previous name of containing definition.
1086
1087(defconst edebug-error-point nil)
1088(defconst edebug-best-error nil)
1089
1090
1091(defun edebug-read-and-maybe-wrap-form ()
1092 ;; Read a form and wrap it with edebug calls, if the conditions are right.
1093 ;; Here we just catch any no-match not caught below and signal an error.
1094
1095 ;; Run the setup hook.
88b52bf5
RS
1096 ;; If it gets an error, make it nil.
1097 (let ((temp-hook edebug-setup-hook))
1098 (setq edebug-setup-hook nil)
1099 (run-hooks 'temp-hook))
1fe3d507
DL
1100
1101 (let (result
1102 edebug-top-window-data
1103 edebug-def-name;; make sure it is locally nil
f7359658 1104 ;; I don't like these here!!
1fe3d507
DL
1105 edebug-&optional
1106 edebug-&rest
1107 edebug-gate
1108 edebug-best-error
1109 edebug-error-point
1110 no-match
1111 ;; Do this once here instead of several times.
1112 (max-lisp-eval-depth (+ 800 max-lisp-eval-depth))
f7359658 1113 (max-specpdl-size (+ 2000 max-specpdl-size)))
1fe3d507
DL
1114 (setq no-match
1115 (catch 'no-match
1116 (setq result (edebug-read-and-maybe-wrap-form1))
1117 nil))
1118 (if no-match
1119 (apply 'edebug-syntax-error no-match))
1120 result))
1121
1122
1123(defun edebug-read-and-maybe-wrap-form1 ()
1124 (let (spec
1125 def-kind
1126 defining-form-p
1127 def-name
f7359658 1128 ;; These offset things don't belong here, but to support recursive
1fe3d507
DL
1129 ;; calls to edebug-read, they need to be here.
1130 edebug-offsets
1131 edebug-offsets-stack
1132 edebug-current-offset ; reset to nil
1133 )
1134 (save-excursion
1135 (if (and (eq 'lparen (edebug-next-token-class))
1136 (eq 'symbol (progn (forward-char 1) (edebug-next-token-class))))
1137 ;; Find out if this is a defining form from first symbol
88668147 1138 (setq def-kind (edebug-original-read (current-buffer))
1fe3d507
DL
1139 spec (and (symbolp def-kind) (get-edebug-spec def-kind))
1140 defining-form-p (and (listp spec)
1141 (eq '&define (car spec)))
1142 ;; This is incorrect in general!! But OK most of the time.
1143 def-name (if (and defining-form-p
1144 (eq 'name (car (cdr spec)))
1145 (eq 'symbol (edebug-next-token-class)))
88668147
DL
1146 (edebug-original-read (current-buffer))))))
1147;;;(message "all defs: %s all forms: %s" edebug-all-defs edebug-all-forms)
84fc2cfa 1148 (cond
1fe3d507
DL
1149 (defining-form-p
1150 (if (or edebug-all-defs edebug-all-forms)
1151 ;; If it is a defining form and we are edebugging defs,
1152 ;; then let edebug-list-form start it.
1153 (let ((cursor (edebug-new-cursor
1154 (list (edebug-read-storing-offsets (current-buffer)))
1155 (list edebug-offsets))))
1156 (car
1157 (edebug-make-form-wrapper
1158 cursor
1159 (edebug-before-offset cursor)
1160 (1- (edebug-after-offset cursor))
1161 (list (cons (symbol-name def-kind) (cdr spec))))))
1162
1163 ;; Not edebugging this form, so reset the symbol's edebug
1164 ;; property to be just a marker at the definition's source code.
1165 ;; This only works for defs with simple names.
1166 (put def-name 'edebug (point-marker))
1167 ;; Also nil out dependent defs.
1168 '(mapcar (function
1169 (lambda (def)
1170 (put def-name 'edebug nil)))
1171 (get def-name 'edebug-dependents))
1172 (edebug-read-sexp)))
1173
1174 ;; If all forms are being edebugged, explicitly wrap it.
1175 (edebug-all-forms
1176 (let ((cursor (edebug-new-cursor
1177 (list (edebug-read-storing-offsets (current-buffer)))
1178 (list edebug-offsets))))
1179 (edebug-make-form-wrapper
1180 cursor
1181 (edebug-before-offset cursor)
1182 (edebug-after-offset cursor)
1183 nil)))
1184
1185 ;; Not a defining form, and not edebugging.
1186 (t (edebug-read-sexp)))
1187 ))
1188
1189
1190(defvar edebug-def-args) ; args of defining form.
1191(defvar edebug-def-interactive) ; is it an emacs interactive function?
1192(defvar edebug-inside-func) ;; whether code is inside function context.
1193;; Currently def-form sets this to nil; def-body sets it to t.
1194
1195(defun edebug-interactive-p-name ()
1196 ;; Return a unique symbol for the variable used to store the
1197 ;; status of interactive-p for this function.
1198 (intern (format "edebug-%s-interactive-p" edebug-def-name)))
1199
1200
1201(defun edebug-wrap-def-body (forms)
1202 "Wrap the FORMS of a definition body."
1203 (if edebug-def-interactive
1204 (` (let (((, (edebug-interactive-p-name))
1205 (interactive-p)))
1206 (, (edebug-make-enter-wrapper forms))))
1207 (edebug-make-enter-wrapper forms)))
1208
1209
1210(defun edebug-make-enter-wrapper (forms)
1211 ;; Generate the enter wrapper for some forms of a definition.
1212 ;; This is not to be used for the body of other forms, e.g. `while',
1213 ;; since it wraps the list of forms with a call to `edebug-enter'.
1214 ;; Uses the dynamically bound vars edebug-def-name and edebug-def-args.
1215 ;; Do this after parsing since that may find a name.
1216 (setq edebug-def-name
f7359658 1217 (or edebug-def-name edebug-old-def-name (edebug-gensym "edebug-anon")))
1fe3d507
DL
1218 (` (edebug-enter
1219 (quote (, edebug-def-name))
1220 (, (if edebug-inside-func
1221 (` (list (,@
f7359658 1222 ;; Doesn't work with more than one def-body!!
1fe3d507
DL
1223 ;; But the list will just be reversed.
1224 (nreverse edebug-def-args))))
1225 'nil))
1226 (function (lambda () (,@ forms)))
1227 )))
1228
1229
1230(defvar edebug-form-begin-marker) ; the mark for def being instrumented
1231
1232(defvar edebug-offset-index) ; the next available offset index.
1233(defvar edebug-offset-list) ; the list of offset positions.
1234
1235(defun edebug-inc-offset (offset)
1236 ;; modifies edebug-offset-index and edebug-offset-list
1237 ;; accesses edebug-func-marc and buffer point
1238 (prog1
1239 edebug-offset-index
1240 (setq edebug-offset-list (cons (- offset edebug-form-begin-marker)
1241 edebug-offset-list)
1242 edebug-offset-index (1+ edebug-offset-index))))
1243
1244
1245(defun edebug-make-before-and-after-form (before-index form after-index)
1246 ;; Return the edebug form for the current function at offset BEFORE-INDEX
1247 ;; given FORM. Looks like:
1248 ;; (edebug-after (edebug-before BEFORE-INDEX) AFTER-INDEX FORM)
1249 ;; Also increment the offset index for subsequent use.
1fe3d507
DL
1250 (list 'edebug-after
1251 (list 'edebug-before before-index)
1252 after-index form))
1253
1254(defun edebug-make-after-form (form after-index)
1255 ;; Like edebug-make-before-and-after-form, but only after.
1256 (list 'edebug-after 0 after-index form))
1257
1258
1259(defun edebug-unwrap (sexp)
1260 "Return the unwrapped SEXP or return it as is if it is not wrapped.
1261The SEXP might be the result of wrapping a body, which is a list of
1262expressions; a `progn' form will be returned enclosing these forms."
1263 (if (consp sexp)
1264 (cond
1265 ((eq 'edebug-after (car sexp))
1266 (nth 3 sexp))
1267 ((eq 'edebug-enter (car sexp))
1268 (let ((forms (nthcdr 2 (nth 1 (nth 3 sexp)))))
1269 (if (> (length forms) 1)
1270 (cons 'progn forms) ;; could return (values forms) instead.
1271 (car forms))))
1272 (t sexp);; otherwise it is not wrapped, so just return it.
1273 )
1274 sexp))
1275
1276(defun edebug-unwrap* (sexp)
1277 "Return the sexp recursively unwrapped."
1278 (let ((new-sexp (edebug-unwrap sexp)))
1279 (while (not (eq sexp new-sexp))
1280 (setq sexp new-sexp
1281 new-sexp (edebug-unwrap sexp)))
1282 (if (consp new-sexp)
1283 (mapcar 'edebug-unwrap* new-sexp)
1284 new-sexp)))
1285
1286
1287(defun edebug-defining-form (cursor form-begin form-end speclist)
1288 ;; Process the defining form, starting outside the form.
1289 ;; The speclist is a generated list spec that looks like:
1290 ;; (("def-symbol" defining-form-spec-sans-&define))
1291 ;; Skip the first offset.
1292 (edebug-set-cursor cursor (edebug-cursor-expressions cursor)
1293 (cdr (edebug-cursor-offsets cursor)))
1294 (edebug-make-form-wrapper
1295 cursor
1296 form-begin (1- form-end)
1297 speclist))
1298
1299(defun edebug-make-form-wrapper (cursor form-begin form-end
1300 &optional speclist)
1301 ;; Wrap a form, usually a defining form, but any evaluated one.
1302 ;; If speclist is non-nil, this is being called by edebug-defining-form.
1303 ;; Otherwise it is being called from edebug-read-and-maybe-wrap-form1.
1304 ;; This is a hack, but I havent figured out a simpler way yet.
1305 (let* ((form-data-entry (edebug-get-form-data-entry form-begin form-end))
1306 ;; Set this marker before parsing.
1307 (edebug-form-begin-marker
1308 (if form-data-entry
1309 (edebug-form-data-begin form-data-entry)
1310 ;; Buffer must be current-buffer for this to work:
1311 (set-marker (make-marker) form-begin))))
1312
1313 (let (edebug-offset-list
1314 (edebug-offset-index 0)
1315 result
1316 ;; For definitions.
1317 ;; (edebug-containing-def-name edebug-def-name)
1318 ;; Get name from form-data, if any.
1319 (edebug-old-def-name (edebug-form-data-name form-data-entry))
1320 edebug-def-name
1321 edebug-def-args
1322 edebug-def-interactive
1323 edebug-inside-func;; whether wrapped code executes inside a function.
1324 )
84fc2cfa 1325
1fe3d507
DL
1326 (setq result
1327 (if speclist
1328 (edebug-match cursor speclist)
1329
1330 ;; else wrap as an enter-form.
1331 (edebug-make-enter-wrapper (list (edebug-form cursor)))))
84fc2cfa 1332
1fe3d507
DL
1333 ;; Set the name here if it was not set by edebug-make-enter-wrapper.
1334 (setq edebug-def-name
f7359658 1335 (or edebug-def-name edebug-old-def-name (edebug-gensym "edebug-anon")))
1fe3d507
DL
1336
1337 ;; Add this def as a dependent of containing def. Buggy.
1338 '(if (and edebug-containing-def-name
1339 (not (get edebug-containing-def-name 'edebug-dependents)))
1340 (put edebug-containing-def-name 'edebug-dependents
1341 (cons edebug-def-name
1342 (get edebug-containing-def-name
1343 'edebug-dependents))))
1344
1345 ;; Create a form-data-entry or modify existing entry's markers.
1346 ;; In the latter case, pointers to the entry remain eq.
1347 (if (not form-data-entry)
1348 (setq form-data-entry
1349 (edebug-make-form-data-entry
1350 edebug-def-name
1351 edebug-form-begin-marker
1352 ;; Buffer must be current-buffer.
1353 (set-marker (make-marker) form-end)
1354 ))
1355 (edebug-set-form-data-entry
1356 form-data-entry edebug-def-name ;; in case name is changed
1357 form-begin form-end))
1358
1359 ;; (message "defining: %s" edebug-def-name) (sit-for 2)
1360 (edebug-make-top-form-data-entry form-data-entry)
1361 (message "Edebug: %s" edebug-def-name)
1362 ;;(debug edebug-def-name)
1363
1364 ;; Destructively reverse edebug-offset-list and make vector from it.
1365 (setq edebug-offset-list (vconcat (nreverse edebug-offset-list)))
1366
1367 ;; Side effects on the property list of edebug-def-name.
1368 (edebug-clear-frequency-count edebug-def-name)
1369 (edebug-clear-coverage edebug-def-name)
1370
1371 ;; Set up the initial window data.
1372 (if (not edebug-top-window-data) ;; if not already set, do it now.
1373 (let ((window ;; Find the best window for this buffer.
1374 (or (get-buffer-window (current-buffer))
1375 (selected-window))))
1376 (setq edebug-top-window-data
1377 (cons window (window-start window)))))
1378
1379 ;; Store the edebug data in symbol's property list.
1380 (put edebug-def-name 'edebug
1381 ;; A struct or vector would be better here!!
1382 (list edebug-form-begin-marker
1383 nil ; clear breakpoints
1384 edebug-offset-list
1385 edebug-top-window-data
1386 ))
1387 result
84fc2cfa
ER
1388 )))
1389
1390
1fe3d507
DL
1391(defun edebug-clear-frequency-count (name)
1392 ;; Create initial frequency count vector.
1393 ;; For each stop point, the counter is incremented each time it is visited.
1394 (put name 'edebug-freq-count
1395 (make-vector (length edebug-offset-list) 0)))
1396
1397
1398(defun edebug-clear-coverage (name)
1399 ;; Create initial coverage vector.
1400 ;; Only need one per expression, but it is simpler to use stop points.
1401 (put name 'edebug-coverage
1402 (make-vector (length edebug-offset-list) 'unknown)))
84fc2cfa 1403
84fc2cfa 1404
1fe3d507
DL
1405(defun edebug-form (cursor)
1406 ;; Return the instrumented form for the following form.
1407 ;; Add the point offsets to the edebug-offset-list for the form.
1408 (let* ((form (edebug-top-element-required cursor "Expected form"))
1409 (offset (edebug-top-offset cursor)))
1410 (prog1
84fc2cfa 1411 (cond
1fe3d507
DL
1412 ((consp form)
1413 ;; The first offset for a list form is for the list form itself.
1414 (if (eq 'quote (car form))
1415 form
1416 (let* ((head (car form))
1417 (spec (and (symbolp head) (get-edebug-spec head)))
1418 (new-cursor (edebug-new-cursor form offset)))
1419 ;; Find out if this is a defining form from first symbol.
1420 ;; An indirect spec would not work here, yet.
1421 (if (and (consp spec) (eq '&define (car spec)))
1422 (edebug-defining-form
1423 new-cursor
1424 (car offset);; before the form
1425 (edebug-after-offset cursor)
1426 (cons (symbol-name head) (cdr spec)))
1427 ;; Wrap a regular form.
1428 (edebug-make-before-and-after-form
1429 (edebug-inc-offset (car offset))
1430 (edebug-list-form new-cursor)
1431 ;; After processing the list form, the new-cursor is left
1432 ;; with the offset after the form.
1433 (edebug-inc-offset (edebug-cursor-offsets new-cursor))))
1434 )))
1435
1436 ((symbolp form)
1437 (cond
f7359658 1438 ;; Check for constant symbols that don't get wrapped.
1fe3d507 1439 ((or (memq form '(t nil))
f7359658 1440 (and (fboundp 'edebug-keywordp) (edebug-keywordp form)))
1fe3d507
DL
1441 form)
1442
1fe3d507
DL
1443 (t ;; just a variable
1444 (edebug-make-after-form form (edebug-inc-offset (cdr offset))))))
1445
1446 ;; Anything else is self-evaluating.
1447 (t form))
1448 (edebug-move-cursor cursor))))
1449
1450
1451(defsubst edebug-forms (cursor) (edebug-match cursor '(&rest form)))
1452(defsubst edebug-sexps (cursor) (edebug-match cursor '(&rest sexp)))
1453
1454(defsubst edebug-list-form-args (head cursor)
1455 ;; Process the arguments of a list form given that head of form is a symbol.
1456 ;; Helper for edebug-list-form
1457 (let ((spec (get-edebug-spec head)))
1458 (cond
1459 (spec
1460 (cond
1461 ((consp spec)
1462 ;; It is a speclist.
1463 (let (edebug-best-error
1464 edebug-error-point);; This may not be needed.
1465 (edebug-match-sublist cursor spec)))
1466 ((eq t spec) (edebug-forms cursor))
1467 ((eq 0 spec) (edebug-sexps cursor))
1468 ((symbolp spec) (funcall spec cursor));; Not used by edebug,
1469 ; but leave it in for compatibility.
1470 ))
1471 ;; No edebug-form-spec provided.
1472 ((edebug-macrop head)
1473 (if edebug-eval-macro-args
1474 (edebug-forms cursor)
1475 (edebug-sexps cursor)))
1476 (t ;; Otherwise it is a function call.
1477 (edebug-forms cursor)))))
1478
1479
1480(defun edebug-list-form (cursor)
1481 ;; Return an instrumented form built from the list form.
1482 ;; The after offset will be left in the cursor after processing the form.
1483 (let ((head (edebug-top-element-required cursor "Expected elements"))
1484 ;; Prevent backtracking whenever instrumenting.
1485 (edebug-gate t)
1486 ;; A list form is never optional because it matches anything.
1487 (edebug-&optional nil)
1488 (edebug-&rest nil))
1489 ;; Skip the first offset.
1490 (edebug-set-cursor cursor (edebug-cursor-expressions cursor)
1491 (cdr (edebug-cursor-offsets cursor)))
1492 (cond
1493 ((null head) nil) ; () is legal.
1494
1495 ((symbolp head)
1496 (cond
1497 ((null head)
1498 (edebug-syntax-error "nil head"))
1499 ((eq head 'interactive-p)
1500 ;; Special case: replace (interactive-p) with variable
1501 (setq edebug-def-interactive 'check-it)
1502 (edebug-move-cursor cursor)
1503 (edebug-interactive-p-name))
1504 (t
1505 (cons head (edebug-list-form-args
1506 head (edebug-move-cursor cursor))))))
1507
1508 ((consp head)
1509 (if (and (listp head) (eq (car head) ',))
1510 (edebug-match cursor '(("," def-form) body))
1511 ;; Process anonymous function and args.
1512 ;; This assumes no anonymous macros.
1513 (edebug-match-specs cursor '(lambda-expr body) 'edebug-match-specs)))
1514
1515 (t (edebug-syntax-error
1516 "Head of list form must be a symbol or lambda expression.")))
1517 ))
1518
f7359658 1519;;; Matching of specs.
1fe3d507
DL
1520
1521(defvar edebug-after-dotted-spec nil)
1522
1523(defvar edebug-matching-depth 0) ;; initial value
1524(defconst edebug-max-depth 150) ;; maximum number of matching recursions.
1525
1526
f7359658
RS
1527;;; Failure to match
1528
1fe3d507
DL
1529;; This throws to no-match, if there are higher alternatives.
1530;; Otherwise it signals an error. The place of the error is found
1531;; with the two before- and after-offset functions.
1532
1533(defun edebug-no-match (cursor &rest edebug-args)
1534 ;; Throw a no-match, or signal an error immediately if gate is active.
1535 ;; Remember this point in case we need to report this error.
1536 (setq edebug-error-point (or edebug-error-point
1537 (edebug-before-offset cursor))
1538 edebug-best-error (or edebug-best-error edebug-args))
1539 (if (and edebug-gate (not edebug-&optional))
1540 (progn
1541 (if edebug-error-point
1542 (goto-char edebug-error-point))
1543 (apply 'edebug-syntax-error edebug-args))
1544 (funcall 'throw 'no-match edebug-args)))
1545
1546
1547(defun edebug-match (cursor specs)
1548 ;; Top level spec matching function.
1549 ;; Used also at each lower level of specs.
1550 (let (edebug-&optional
1551 edebug-&rest
1552 edebug-best-error
1553 edebug-error-point
1554 (edebug-gate edebug-gate) ;; locally bound to limit effect
1555 )
1556 (edebug-match-specs cursor specs 'edebug-match-specs)))
1557
1558
1559(defun edebug-match-one-spec (cursor spec)
1560 ;; Match one spec, which is not a keyword &-spec.
1561 (cond
1562 ((symbolp spec) (edebug-match-symbol cursor spec))
1563 ((vectorp spec) (edebug-match cursor (append spec nil)))
1564 ((stringp spec) (edebug-match-string cursor spec))
1565 ((listp spec) (edebug-match-list cursor spec))
1566 ))
1567
1568
1569(defun edebug-match-specs (cursor specs remainder-handler)
1570 ;; Append results of matching the list of specs.
1571 ;; The first spec is handled and the remainder-handler handles the rest.
1572 (let ((edebug-matching-depth
1573 (if (> edebug-matching-depth edebug-max-depth)
1574 (error "too deep - perhaps infinite loop in spec?")
1575 (1+ edebug-matching-depth))))
1576 (cond
1577 ((null specs) nil)
1578
1579 ;; Is the spec dotted?
1580 ((atom specs)
1581 (let ((edebug-dotted-spec t));; Containing spec list was dotted.
1582 (edebug-match-specs cursor (list specs) remainder-handler)))
1583
1584 ;; Is the form dotted?
1585 ((not (listp (edebug-cursor-expressions cursor)));; allow nil
1586 (if (not edebug-dotted-spec)
1587 (edebug-no-match cursor "Dotted spec required."))
1588 ;; Cancel dotted spec and dotted form.
1589 (let ((edebug-dotted-spec)
1590 (this-form (edebug-cursor-expressions cursor))
1591 (this-offset (edebug-cursor-offsets cursor)))
1592 ;; Wrap the form in a list, (by changing the cursor??)...
1593 (edebug-set-cursor cursor (list this-form) this-offset)
1594 ;; and process normally, then unwrap the result.
1595 (car (edebug-match-specs cursor specs remainder-handler))))
1596
1597 (t;; Process normally.
1598 (let* ((spec (car specs))
1599 (rest)
1600 (first-char (and (symbolp spec) (aref (symbol-name spec) 0))))
1601 ;;(message "spec = %s first char = %s" spec first-char) (sit-for 1)
1602 (nconc
1603 (cond
1604 ((eq ?& first-char);; "&" symbols take all following specs.
1605 (funcall (get-edebug-spec spec) cursor (cdr specs)))
1606 ((eq ?: first-char);; ":" symbols take one following spec.
1607 (setq rest (cdr (cdr specs)))
1608 (funcall (get-edebug-spec spec) cursor (car (cdr specs))))
1609 (t;; Any other normal spec.
1610 (setq rest (cdr specs))
1611 (edebug-match-one-spec cursor spec)))
1612 (funcall remainder-handler cursor rest remainder-handler)))))))
1613
1614
1615;; Define specs for all the symbol specs with functions used to process them.
f7359658 1616;; Perhaps we shouldn't be doing this with edebug-form-specs since the
1fe3d507
DL
1617;; user may want to define macros or functions with the same names.
1618;; We could use an internal obarray for these primitive specs.
1619
1620(mapcar
1621 (function (lambda (pair)
1622 (put (car pair) 'edebug-form-spec (cdr pair))))
1623 '((&optional . edebug-match-&optional)
1624 (&rest . edebug-match-&rest)
1625 (&or . edebug-match-&or)
1626 (form . edebug-match-form)
1627 (sexp . edebug-match-sexp)
1628 (body . edebug-match-body)
1629 (&define . edebug-match-&define)
1630 (name . edebug-match-name)
1631 (:name . edebug-match-colon-name)
1632 (arg . edebug-match-arg)
1633 (def-body . edebug-match-def-body)
1634 (def-form . edebug-match-def-form)
1635 ;; Less frequently used:
1636 ;; (function . edebug-match-function)
1637 (lambda-expr . edebug-match-lambda-expr)
1fe3d507
DL
1638 (&not . edebug-match-&not)
1639 (&key . edebug-match-&key)
1640 (place . edebug-match-place)
1641 (gate . edebug-match-gate)
1642 ;; (nil . edebug-match-nil) not this one - special case it.
1643 ))
1644
1645(defun edebug-match-symbol (cursor symbol)
1646 ;; Match a symbol spec.
1647 (let* ((spec (get-edebug-spec symbol)))
1648 (cond
1649 (spec
1650 (if (consp spec)
1651 ;; It is an indirect spec.
1652 (edebug-match cursor spec)
1653 ;; Otherwise it should be the symbol name of a function.
1654 ;; There could be a bug here - maybe need to do edebug-match bindings.
1655 (funcall spec cursor)))
1656
1657 ((null symbol) ;; special case this.
1658 (edebug-match-nil cursor))
1659
1660 ((fboundp symbol) ; is it a predicate?
1661 (let ((sexp (edebug-top-element-required cursor "Expected" symbol)))
1662 ;; Special case for edebug-`.
1663 (if (and (listp sexp) (eq (car sexp) ',))
1664 (edebug-match cursor '(("," def-form)))
1665 (if (not (funcall symbol sexp))
1666 (edebug-no-match cursor symbol "failed"))
1667 (edebug-move-cursor cursor)
1668 (list sexp))))
1669 (t (error "%s is not a form-spec or function" symbol))
1670 )))
1671
1672
1673(defun edebug-match-sexp (cursor)
1674 (list (prog1 (edebug-top-element-required cursor "Expected sexp")
1675 (edebug-move-cursor cursor))))
1676
1677(defun edebug-match-form (cursor)
1678 (list (edebug-form cursor)))
1679
1680(defalias 'edebug-match-place 'edebug-match-form)
1681 ;; Currently identical to edebug-match-form.
1682 ;; This is for common lisp setf-style place arguments.
1683
1684(defsubst edebug-match-body (cursor) (edebug-forms cursor))
1685
1686(defun edebug-match-&optional (cursor specs)
1687 ;; Keep matching until one spec fails.
1688 (edebug-&optional-wrapper cursor specs 'edebug-&optional-wrapper))
1689
1690(defun edebug-&optional-wrapper (cursor specs remainder-handler)
1691 (let (result
1692 (edebug-&optional specs)
1693 (edebug-gate nil)
1694 (this-form (edebug-cursor-expressions cursor))
1695 (this-offset (edebug-cursor-offsets cursor)))
1696 (if (null (catch 'no-match
1697 (setq result
1698 (edebug-match-specs cursor specs remainder-handler))
1699 ;; Returning nil means no no-match was thrown.
1700 nil))
1701 result
1702 ;; no-match, but don't fail; just reset cursor and return nil.
1703 (edebug-set-cursor cursor this-form this-offset)
1704 nil)))
1705
1706
1707(defun edebug-&rest-wrapper (cursor specs remainder-handler)
1708 (if (null specs) (setq specs edebug-&rest))
1709 ;; Reuse the &optional handler with this as the remainder handler.
1710 (edebug-&optional-wrapper cursor specs remainder-handler))
1711
1712(defun edebug-match-&rest (cursor specs)
1713 ;; Repeatedly use specs until failure.
1714 (let ((edebug-&rest specs) ;; remember these
1715 edebug-best-error
1716 edebug-error-point)
1717 (edebug-&rest-wrapper cursor specs 'edebug-&rest-wrapper)))
1718
1719
1720(defun edebug-match-&or (cursor specs)
1721 ;; Keep matching until one spec succeeds, and return its results.
1722 ;; If none match, fail.
1723 ;; This needs to be optimized since most specs spend time here.
1724 (let ((original-specs specs)
1725 (this-form (edebug-cursor-expressions cursor))
1726 (this-offset (edebug-cursor-offsets cursor)))
1727 (catch 'matched
1728 (while specs
1729 (catch 'no-match
1730 (throw 'matched
1731 (let (edebug-gate ;; only while matching each spec
1732 edebug-best-error
1733 edebug-error-point)
f7359658 1734 ;; Doesn't support e.g. &or symbolp &rest form
1fe3d507
DL
1735 (edebug-match-one-spec cursor (car specs)))))
1736 ;; Match failed, so reset and try again.
1737 (setq specs (cdr specs))
1738 ;; Reset the cursor for the next match.
1739 (edebug-set-cursor cursor this-form this-offset))
1740 ;; All failed.
1741 (apply 'edebug-no-match cursor "Expected one of" original-specs))
84fc2cfa
ER
1742 ))
1743
1744
1fe3d507
DL
1745(defun edebug-match-&not (cursor specs)
1746 ;; If any specs match, then fail
1747 (if (null (catch 'no-match
1748 (let ((edebug-gate nil))
1749 (save-excursion
1750 (edebug-match-&or cursor specs)))
1751 nil))
1752 ;; This means something matched, so it is a no match.
1753 (edebug-no-match cursor "Unexpected"))
1754 ;; This means nothing matched, so it is OK.
1755 nil) ;; So, return nothing
1756
1757
1758(def-edebug-spec &key edebug-match-&key)
1759
1760(defun edebug-match-&key (cursor specs)
1761 ;; Following specs must look like (<name> <spec>) ...
1762 ;; where <name> is the name of a keyword, and spec is its spec.
f7359658 1763 ;; This really doesn't save much over the expanded form and takes time.
1fe3d507
DL
1764 (edebug-match-&rest
1765 cursor
1766 (cons '&or
1767 (mapcar (function (lambda (pair)
1768 (vector (format ":%s" (car pair))
1769 (car (cdr pair)))))
1770 specs))))
1771
1772
1773(defun edebug-match-gate (cursor)
1774 ;; Simply set the gate to prevent backtracking at this level.
1775 (setq edebug-gate t)
1776 nil)
1777
1778
1779(defun edebug-match-list (cursor specs)
1780 ;; The spec is a list, but what kind of list, and what context?
1781 (if edebug-dotted-spec
1782 ;; After dotted spec but form did not contain dot,
1783 ;; so match list spec elements as if spliced in.
1784 (prog1
1785 (let ((edebug-dotted-spec))
1786 (edebug-match-specs cursor specs 'edebug-match-specs))
1787 ;; If it matched, really clear the dotted-spec flag.
1788 (setq edebug-dotted-spec nil))
1789 (let ((spec (car specs))
1790 (form (edebug-top-element-required cursor "Expected" specs)))
1791 (cond
1792 ((eq 'quote spec)
1793 (let ((spec (car (cdr specs))))
1794 (cond
1795 ((symbolp spec)
1796 ;; Special case: spec quotes a symbol to match.
1797 ;; Change in future. Use "..." instead.
1798 (if (not (eq spec form))
1799 (edebug-no-match cursor "Expected" spec))
1800 (edebug-move-cursor cursor)
1801 (setq edebug-gate t)
1802 form)
1803 (t
1804 (error "Bad spec: %s" specs)))))
1805
1806 ((listp form)
1807 (prog1
1808 (list (edebug-match-sublist
1809 ;; First offset is for the list form itself.
1810 ;; Treat nil as empty list.
1811 (edebug-new-cursor form (cdr (edebug-top-offset cursor)))
1812 specs))
1813 (edebug-move-cursor cursor)))
1814
1815 ((and (eq 'vector spec) (vectorp form))
1816 ;; Special case: match a vector with the specs.
1817 (let ((result (edebug-match-sublist
1818 (edebug-new-cursor
1819 form (cdr (edebug-top-offset cursor)))
1820 (cdr specs))))
1821 (edebug-move-cursor cursor)
1822 (list (apply 'vector result))))
84fc2cfa 1823
1fe3d507
DL
1824 (t (edebug-no-match cursor "Expected" specs)))
1825 )))
84fc2cfa
ER
1826
1827
1fe3d507
DL
1828(defun edebug-match-sublist (cursor specs)
1829 ;; Match a sublist of specs.
1830 (let (edebug-&optional
1831 ;;edebug-best-error
1832 ;;edebug-error-point
1833 )
1834 (prog1
1835 ;; match with edebug-match-specs so edebug-best-error is not bound.
1836 (edebug-match-specs cursor specs 'edebug-match-specs)
1837 (if (not (edebug-empty-cursor cursor))
1838 (if edebug-best-error
1839 (apply 'edebug-no-match cursor edebug-best-error)
1840 ;; A failed &rest or &optional spec may leave some args.
1841 (edebug-no-match cursor "Failed matching" specs)
1842 )))))
1843
1844
1845(defun edebug-match-string (cursor spec)
1846 (let ((sexp (edebug-top-element-required cursor "Expected" spec)))
1847 (if (not (eq (intern spec) sexp))
1848 (edebug-no-match cursor "Expected" spec)
1849 ;; Since it matched, failure means immediate error, unless &optional.
1850 (setq edebug-gate t)
1851 (edebug-move-cursor cursor)
1852 (list sexp)
1853 )))
84fc2cfa 1854
1fe3d507
DL
1855(defun edebug-match-nil (cursor)
1856 ;; There must be nothing left to match a nil.
1857 (if (not (edebug-empty-cursor cursor))
1858 (edebug-no-match cursor "Unmatched argument(s)")
1859 nil))
1860
1861
1862(defun edebug-match-function (cursor)
1863 (error "Use function-form instead of function in edebug spec"))
1864
1865(defun edebug-match-&define (cursor specs)
1866 ;; Match a defining form.
f7359658 1867 ;; Normally, &define is interpreted specially other places.
1fe3d507
DL
1868 ;; This should only be called inside of a spec list to match the remainder
1869 ;; of the current list. e.g. ("lambda" &define args def-body)
1870 (edebug-make-form-wrapper
1871 cursor
1872 (edebug-before-offset cursor)
1873 ;; Find the last offset in the list.
1874 (let ((offsets (edebug-cursor-offsets cursor)))
1875 (while (consp offsets) (setq offsets (cdr offsets)))
1876 offsets)
1877 specs))
1878
1879(defun edebug-match-lambda-expr (cursor)
1880 ;; The expression must be a function.
1881 ;; This will match any list form that begins with a symbol
1882 ;; that has an edebug-form-spec beginning with &define. In
1883 ;; practice, only lambda expressions should be used.
1884 ;; I could add a &lambda specification to avoid confusion.
1885 (let* ((sexp (edebug-top-element-required
1886 cursor "Expected lambda expression"))
1887 (offset (edebug-top-offset cursor))
1888 (head (and (consp sexp) (car sexp)))
1889 (spec (and (symbolp head) (get-edebug-spec head)))
1890 (edebug-inside-func nil))
1891 ;; Find out if this is a defining form from first symbol.
1892 (if (and (consp spec) (eq '&define (car spec)))
1893 (prog1
1894 (list
1895 (edebug-defining-form
1896 (edebug-new-cursor sexp offset)
1897 (car offset);; before the sexp
1898 (edebug-after-offset cursor)
1899 (cons (symbol-name head) (cdr spec))))
1900 (edebug-move-cursor cursor))
1901 (edebug-no-match cursor "Expected lambda expression")
1902 )))
84fc2cfa 1903
84fc2cfa 1904
1fe3d507
DL
1905(defun edebug-match-name (cursor)
1906 ;; Set the edebug-def-name bound in edebug-defining-form.
1907 (let ((name (edebug-top-element-required cursor "Expected name")))
1908 ;; Maybe strings and numbers could be used.
1909 (if (not (symbolp name))
1910 (edebug-no-match cursor "Symbol expected for name of definition"))
1911 (setq edebug-def-name
1912 (if edebug-def-name
1913 ;; Construct a new name by appending to previous name.
1914 (intern (format "%s@%s" edebug-def-name name))
1915 name))
1916 (edebug-move-cursor cursor)
1917 (list name)))
1918
1919(defun edebug-match-colon-name (cursor spec)
1920 ;; Set the edebug-def-name to the spec.
1921 (setq edebug-def-name
1922 (if edebug-def-name
1923 ;; Construct a new name by appending to previous name.
1924 (intern (format "%s@%s" edebug-def-name spec))
1925 spec))
1926 nil)
1927
1928(defun edebug-match-arg (cursor)
1929 ;; set the def-args bound in edebug-defining-form
1930 (let ((edebug-arg (edebug-top-element-required cursor "Expected arg")))
1931 (if (or (not (symbolp edebug-arg))
f7359658 1932 (edebug-lambda-list-keywordp edebug-arg))
1fe3d507
DL
1933 (edebug-no-match cursor "Bad argument:" edebug-arg))
1934 (edebug-move-cursor cursor)
1935 (setq edebug-def-args (cons edebug-arg edebug-def-args))
1936 (list edebug-arg)))
1937
1938(defun edebug-match-def-form (cursor)
1939 ;; Like form but the form is wrapped in edebug-enter form.
1940 ;; The form is assumed to be executing outside of the function context.
1941 ;; This is a hack for now, since a def-form might execute inside as well.
1942 ;; Not to be used otherwise.
1943 (let ((edebug-inside-func nil))
1944 (list (edebug-make-enter-wrapper (list (edebug-form cursor))))))
1945
1946(defun edebug-match-def-body (cursor)
1947 ;; Like body but body is wrapped in edebug-enter form.
1948 ;; The body is assumed to be executing inside of the function context.
1949 ;; Not to be used otherwise.
1950 (let ((edebug-inside-func t))
1951 (list (edebug-wrap-def-body (edebug-forms cursor)))))
1952
1953
1954;;;; Edebug Form Specs
1955;;; ==========================================================
1956;;; See cl-specs.el for common lisp specs.
1957
1958;;;;* Spec for def-edebug-spec
1959;;; Out of date.
1960
1961(defun edebug-spec-p (object)
1962 "Return non-nil if OBJECT is a symbol with an edebug-form-spec property."
1963 (and (symbolp object)
1964 (get object 'edebug-form-spec)))
1965
1966(def-edebug-spec def-edebug-spec
1967 ;; Top level is different from lower levels.
1968 (&define :name edebug-spec name
1969 &or "nil" edebug-spec-p "t" "0" (&rest edebug-spec)))
1970
1971(def-edebug-spec edebug-spec-list
1972 ;; A list must have something in it, or it is nil, a symbolp
1973 ((edebug-spec . [&or nil edebug-spec])))
1974
1975(def-edebug-spec edebug-spec
1976 (&or
1977 (vector &rest edebug-spec) ; matches a vector
1978 ("vector" &rest edebug-spec) ; matches a vector spec
1979 ("quote" symbolp)
1980 edebug-spec-list
1981 stringp
f7359658
RS
1982 [edebug-lambda-list-keywordp &rest edebug-spec]
1983 ;; [edebug-keywordp gate edebug-spec] ;; need edebug-keywordp for this.
1fe3d507
DL
1984 edebug-spec-p ;; Including all the special ones e.g. form.
1985 symbolp;; a predicate
1986 ))
84fc2cfa
ER
1987
1988
f7359658 1989;;;* Emacs special forms and some functions.
84fc2cfa 1990
1fe3d507
DL
1991;; quote expects only one argument, although it allows any number.
1992(def-edebug-spec quote sexp)
84fc2cfa 1993
1fe3d507
DL
1994;; The standard defining forms.
1995(def-edebug-spec defconst defvar)
1996(def-edebug-spec defvar (symbolp &optional form stringp))
84fc2cfa 1997
1fe3d507
DL
1998(def-edebug-spec defun
1999 (&define name lambda-list
2000 [&optional stringp]
2001 [&optional ("interactive" interactive)]
2002 def-body))
2003(def-edebug-spec defmacro
2004 (&define name lambda-list def-body))
84fc2cfa 2005
f7359658 2006(def-edebug-spec arglist lambda-list) ;; deprecated - use lambda-list.
84fc2cfa 2007
1fe3d507
DL
2008(def-edebug-spec lambda-list
2009 (([&rest arg]
2010 [&optional ["&optional" arg &rest arg]]
2011 &optional ["&rest" arg]
2012 )))
84fc2cfa 2013
1fe3d507
DL
2014(def-edebug-spec interactive
2015 (&optional &or stringp def-form))
84fc2cfa 2016
1fe3d507
DL
2017;; A function-form is for an argument that may be a function or a form.
2018;; This specially recognizes anonymous functions quoted with quote.
2019(def-edebug-spec function-form
2020 ;; form at the end could also handle "function",
2021 ;; but recognize it specially to avoid wrapping function forms.
2022 (&or ([&or "quote" "function"] &or symbolp lambda-expr) form))
84fc2cfa 2023
1fe3d507
DL
2024;; function expects a symbol or a lambda or macro expression
2025;; A macro is allowed by Emacs.
2026(def-edebug-spec function (&or symbolp lambda-expr))
84fc2cfa 2027
1fe3d507
DL
2028;; lambda is a macro in emacs 19.
2029(def-edebug-spec lambda (&define lambda-list
2030 [&optional stringp]
2031 [&optional ("interactive" interactive)]
2032 def-body))
2033
2034;; A macro expression is a lambda expression with "macro" prepended.
2035(def-edebug-spec macro (&define "lambda" lambda-list def-body))
2036
2037;; (def-edebug-spec anonymous-form ((&or ["lambda" lambda] ["macro" macro])))
2038
2039;; Standard functions that take function-forms arguments.
2040(def-edebug-spec mapcar (function-form form))
2041(def-edebug-spec mapconcat (function-form form form))
2042(def-edebug-spec mapatoms (function-form &optional form))
2043(def-edebug-spec apply (function-form &rest form))
2044(def-edebug-spec funcall (function-form &rest form))
2045
2046(def-edebug-spec let
2047 ((&rest &or (symbolp &optional form) symbolp)
2048 body))
2049
2050(def-edebug-spec let* let)
2051
2052(def-edebug-spec setq (&rest symbolp form))
2053(def-edebug-spec setq-default setq)
2054
2055(def-edebug-spec cond (&rest (&rest form)))
2056
2057(def-edebug-spec condition-case
2058 (symbolp
2059 form
284795f8 2060 &rest ([&or symbolp (&rest symbolp)] body)))
1fe3d507
DL
2061
2062
f7359658 2063(def-edebug-spec \` (backquote-form))
1fe3d507
DL
2064
2065;; Supports quotes inside backquotes,
2066;; but only at the top level inside unquotes.
2067(def-edebug-spec backquote-form
2068 (&or
2069 ([&or "," ",@"] &or ("quote" backquote-form) form)
2070 (backquote-form &rest backquote-form)
2071 ;; If you use dotted forms in backquotes, replace the previous line
2072 ;; with the following. This takes quite a bit more stack space, however.
2073 ;; (backquote-form . [&or nil backquote-form])
2074 (vector &rest backquote-form)
2075 sexp))
84fc2cfa 2076
1fe3d507
DL
2077;; Special version of backquote that instruments backquoted forms
2078;; destined to be evaluated, usually as the result of a
2079;; macroexpansion. Backquoted code can only have unquotes (, and ,@)
2080;; in places where list forms are allowed, and predicates. If the
2081;; backquote is used in a macro, unquoted code that come from
2082;; arguments must be instrumented, if at all, with def-form not def-body.
84fc2cfa 2083
1fe3d507
DL
2084;; We could assume that all forms (not nested in other forms)
2085;; in arguments of macros should be def-forms, whether or not the macros
2086;; are defined with edebug-` but this would be expensive.
84fc2cfa 2087
1fe3d507
DL
2088;; ,@ might have some problems.
2089
f7359658
RS
2090(defalias 'edebug-\` '\`) ;; same macro as regular backquote.
2091(def-edebug-spec edebug-\` (def-form))
1fe3d507
DL
2092
2093;; Assume immediate quote in unquotes mean backquote at next higher level.
2094(def-edebug-spec , (&or ("quote" edebug-`) def-form))
2095(def-edebug-spec ,@ (&define ;; so (,@ form) is never wrapped.
2096 &or ("quote" edebug-`) def-form))
2097
2098;; New byte compiler.
2099(def-edebug-spec defsubst defun)
2100(def-edebug-spec dont-compile t)
2101(def-edebug-spec eval-when-compile t)
2102(def-edebug-spec eval-and-compile t)
2103
8fd29408
RS
2104(def-edebug-spec save-selected-window t)
2105(def-edebug-spec save-current-buffer t)
2106(def-edebug-spec save-match-data t)
2107(def-edebug-spec with-output-to-string t)
2108(def-edebug-spec with-current-buffer t)
5398a9e7 2109(def-edebug-spec combine-after-change-calls t)
8fd29408
RS
2110(def-edebug-spec with-temp-file t)
2111(def-edebug-spec with-temp-buffer t)
2112
1fe3d507
DL
2113;; Anything else?
2114
2115
1fe3d507
DL
2116;; Some miscellaneous specs for macros in public packages.
2117;; Send me yours.
2118
2119;; advice.el by Hans Chalupsky (hans@cs.buffalo.edu)
2120
2121(def-edebug-spec ad-dolist ((symbolp form &optional form) body))
2122(def-edebug-spec defadvice
2123 (&define name ;; thing being advised.
2124 (name ;; class is [&or "before" "around" "after"
2125 ;; "activation" "deactivation"]
2126 name ;; name of advice
2127 &rest sexp ;; optional position and flags
2128 )
2129 [&optional stringp]
2130 [&optional ("interactive" interactive)]
2131 def-body))
2132
f7359658 2133;;; The debugger itself
1fe3d507
DL
2134
2135(defvar edebug-active nil) ;; Non-nil when edebug is active
84fc2cfa
ER
2136
2137;;; add minor-mode-alist entry
2138(or (assq 'edebug-active minor-mode-alist)
2139 (setq minor-mode-alist (cons (list 'edebug-active " *Debugging*")
2140 minor-mode-alist)))
2141
1fe3d507
DL
2142(defvar edebug-stack nil)
2143;; Stack of active functions evaluated via edebug.
2144;; Should be nil at the top level.
2145
2146(defvar edebug-stack-depth -1)
2147;; Index of last edebug-stack item.
2148
2149(defvar edebug-offset-indices nil)
2150;; Stack of offset indices of visited edebug sexps.
2151;; Should be nil at the top level.
2152;; Each function adds one cons. Top is modified with setcar.
84fc2cfa 2153
84fc2cfa
ER
2154
2155(defvar edebug-entered nil
1fe3d507
DL
2156 ;; Non-nil if edebug has already been entered at this recursive edit level.
2157 ;; This should stay nil at the top level.
2158 )
2159
2160;; Should these be options?
2161(defconst edebug-debugger 'edebug
2162 ;; Name of function to use for debugging when error or quit occurs.
2163 ;; Set this to 'debug if you want to debug edebug.
2164 )
2165
2166
2167;; Dynamically bound variables, declared globally but left unbound.
2168(defvar edebug-function) ; the function being executed. change name!!
2169(defvar edebug-args) ; the arguments of the function
2170(defvar edebug-data) ; the edebug data for the function
2171(defvar edebug-value) ; the result of the expression
2172(defvar edebug-after-index)
2173(defvar edebug-def-mark) ; the mark for the definition
2174(defvar edebug-freq-count) ; the count of expression visits.
2175(defvar edebug-coverage) ; the coverage results of each expression of function.
2176
2177(defvar edebug-buffer) ; which buffer the function is in.
2178(defvar edebug-result) ; the result of the function call returned by body
2179(defvar edebug-outside-executing-macro)
2180(defvar edebug-outside-defining-kbd-macro)
2181
2182(defvar edebug-execution-mode 'step) ; Current edebug mode set by user.
2183(defvar edebug-next-execution-mode nil) ; Use once instead of initial mode.
2184
2185(defvar edebug-outside-debug-on-error) ; the value of debug-on-error outside
2186(defvar edebug-outside-debug-on-quit) ; the value of debug-on-quit outside
2187
17b76fbd
RS
2188(defvar edebug-outside-overriding-local-map)
2189(defvar edebug-outside-overriding-terminal-local-map)
2190
88668147
DL
2191(defvar edebug-outside-pre-command-hook)
2192(defvar edebug-outside-post-command-hook)
88668147
DL
2193
2194(defvar cl-lexical-debug) ;; Defined in cl.el
2195
1fe3d507 2196;;; Handling signals
1fe3d507 2197
1fe3d507
DL
2198(defun edebug-signal (edebug-signal-name edebug-signal-data)
2199 "Signal an error. Args are SIGNAL-NAME, and associated DATA.
2200A signal name is a symbol with an `error-conditions' property
2201that is a list of condition names.
2202A handler for any of those names will get to handle this signal.
2203The symbol `error' should always be one of them.
2204
2205DATA should be a list. Its elements are printed as part of the error message.
2206If the signal is handled, DATA is made available to the handler.
2207See `condition-case'.
2208
2209This is the Edebug replacement for the standard `signal'. It should
2210only be active while Edebug is. It checks `debug-on-error' to see
2211whether it should call the debugger. When execution is resumed, the
2212error is signaled again."
2213 (if (and (listp debug-on-error) (memq edebug-signal-name debug-on-error))
2214 (edebug 'error (cons edebug-signal-name edebug-signal-data)))
2215 ;; If we reach here without another non-local exit, then send signal again.
2216 ;; i.e. the signal is not continuable, yet.
e76b547b
RS
2217 ;; Avoid infinite recursion.
2218 (let ((signal-hook-function nil))
2219 (signal edebug-signal-name edebug-signal-data)))
1fe3d507
DL
2220
2221;;; Entering Edebug
84fc2cfa 2222
1fe3d507
DL
2223(defun edebug-enter (edebug-function edebug-args edebug-body)
2224 ;; Entering FUNC. The arguments are ARGS, and the body is BODY.
2225 ;; Setup edebug variables and evaluate BODY. This function is called
2226 ;; when a function evaluated with edebug-eval-top-level-form is entered.
2227 ;; Return the result of BODY.
84fc2cfa
ER
2228
2229 ;; Is this the first time we are entering edebug since
2230 ;; lower-level recursive-edit command?
1fe3d507
DL
2231 ;; More precisely, this tests whether Edebug is currently active.
2232 (if (not edebug-entered)
2233 (let ((edebug-entered t)
2234 ;; Binding max-lisp-eval-depth here is OK,
88668147
DL
2235 ;; but not inside an unwind-protect.
2236 ;; Doing it here also keeps it from growing too large.
1fe3d507
DL
2237 (max-lisp-eval-depth (+ 100 max-lisp-eval-depth)) ; too much??
2238 (max-specpdl-size (+ 200 max-specpdl-size))
2239
2240 (debugger edebug-debugger) ; only while edebug is active.
2241 (edebug-outside-debug-on-error debug-on-error)
2242 (edebug-outside-debug-on-quit debug-on-quit)
2243 ;; Binding these may not be the right thing to do.
2244 ;; We want to allow the global values to be changed.
2245 (debug-on-error (or debug-on-error edebug-on-error))
2246 (debug-on-quit edebug-on-quit)
2247
88668147
DL
2248 ;; Lexical bindings must be uncompiled for this to work.
2249 (cl-lexical-debug t)
2250
17b76fbd
RS
2251 (edebug-outside-overriding-local-map overriding-local-map)
2252 (edebug-outside-overriding-terminal-local-map
2253 overriding-terminal-local-map)
2254
1fe3d507 2255 ;; Save the outside value of executing macro. (here??)
efcf38c7 2256 (edebug-outside-executing-macro executing-kbd-macro)
88668147 2257 (edebug-outside-pre-command-hook pre-command-hook)
ba88fc3a 2258 (edebug-outside-post-command-hook post-command-hook))
1fe3d507 2259 (unwind-protect
88668147
DL
2260 (let (;; Don't keep reading from an executing kbd macro
2261 ;; within edebug unless edebug-continue-kbd-macro is
2262 ;; non-nil. Again, local binding may not be best.
efcf38c7
KH
2263 (executing-kbd-macro
2264 (if edebug-continue-kbd-macro executing-kbd-macro))
88668147 2265
17b76fbd
RS
2266 ;; Don't get confused by the user's keymap changes.
2267 (overriding-local-map nil)
2268 (overriding-terminal-local-map nil)
2269
1e3ab67b
RS
2270 (signal-hook-function 'edebug-signal)
2271
88668147
DL
2272 ;; Disable command hooks. This is essential when
2273 ;; a hook function is instrumented - to avoid infinite loop.
2274 ;; This may be more than we need, however.
2275 (pre-command-hook nil)
ba88fc3a 2276 (post-command-hook nil))
88668147
DL
2277 (setq edebug-execution-mode (or edebug-next-execution-mode
2278 edebug-initial-mode
2279 edebug-execution-mode)
2280 edebug-next-execution-mode nil)
1e3ab67b 2281 (edebug-enter edebug-function edebug-args edebug-body))
88668147 2282 ;; Reset global variables in case outside value was changed.
efcf38c7 2283 (setq executing-kbd-macro edebug-outside-executing-macro
f7359658
RS
2284 pre-command-hook edebug-outside-pre-command-hook
2285 post-command-hook edebug-outside-post-command-hook
88668147 2286 )))
1fe3d507
DL
2287
2288 (let* ((edebug-data (get edebug-function 'edebug))
2289 (edebug-def-mark (car edebug-data)) ; mark at def start
2290 (edebug-freq-count (get edebug-function 'edebug-freq-count))
2291 (edebug-coverage (get edebug-function 'edebug-coverage))
2292 (edebug-buffer (marker-buffer edebug-def-mark))
2293
2294 (edebug-stack (cons edebug-function edebug-stack))
2295 (edebug-offset-indices (cons 0 edebug-offset-indices))
2296 )
2297 (if (get edebug-function 'edebug-on-entry)
2298 (progn
2299 (setq edebug-execution-mode 'step)
2300 (if (eq (get edebug-function 'edebug-on-entry) 'temp)
2301 (put edebug-function 'edebug-on-entry nil))))
2302 (if edebug-trace
2303 (edebug-enter-trace edebug-body)
2304 (funcall edebug-body))
84fc2cfa
ER
2305 )))
2306
84fc2cfa 2307
1fe3d507
DL
2308(defun edebug-enter-trace (edebug-body)
2309 (let ((edebug-stack-depth (1+ edebug-stack-depth))
2310 edebug-result)
2311 (edebug-print-trace-before
2312 (format "%s args: %s" edebug-function edebug-args))
2313 (prog1 (setq edebug-result (funcall edebug-body))
2314 (edebug-print-trace-after
2315 (format "%s result: %s" edebug-function edebug-result)))))
2316
2317(def-edebug-spec edebug-tracing (form body))
2318
2319(defmacro edebug-tracing (msg &rest body)
2320 "Print MSG in *edebug-trace* before and after evaluating BODY.
2321The result of BODY is also printed."
2322 (` (let ((edebug-stack-depth (1+ edebug-stack-depth))
2323 edebug-result)
2324 (edebug-print-trace-before (, msg))
2325 (prog1 (setq edebug-result (progn (,@ body)))
2326 (edebug-print-trace-after
2327 (format "%s result: %s" (, msg) edebug-result))))))
2328
2329(defun edebug-print-trace-before (msg)
2330 "Function called to print trace info before expression evaluation.
2331MSG is printed after `::::{ '."
84fc2cfa 2332 (edebug-trace-display
1fe3d507 2333 edebug-trace-buffer "%s{ %s" (make-string edebug-stack-depth ?\:) msg))
84fc2cfa 2334
1fe3d507
DL
2335(defun edebug-print-trace-after (msg)
2336 "Function called to print trace info after expression evaluation.
2337MSG is printed after `::::} '."
84fc2cfa 2338 (edebug-trace-display
1fe3d507
DL
2339 edebug-trace-buffer "%s} %s" (make-string edebug-stack-depth ?\:) msg))
2340
2341
84fc2cfa 2342
1fe3d507
DL
2343(defun edebug-slow-before (edebug-before-index)
2344 ;; Debug current function given BEFORE position.
2345 ;; Called from functions compiled with edebug-eval-top-level-form.
2346 ;; Return the before index.
2347 (setcar edebug-offset-indices edebug-before-index)
84fc2cfa 2348
1fe3d507
DL
2349 ;; Increment frequency count
2350 (aset edebug-freq-count edebug-before-index
2351 (1+ (aref edebug-freq-count edebug-before-index)))
2352
2353 (if (or (not (memq edebug-execution-mode '(Go-nonstop next)))
2354 (edebug-input-pending-p))
2355 (edebug-debugger edebug-before-index 'before nil))
2356 edebug-before-index)
2357
2358(defun edebug-fast-before (edebug-before-index)
2359 ;; Do nothing.
2360 )
2361
2362(defun edebug-slow-after (edebug-before-index edebug-after-index edebug-value)
2363 ;; Debug current function given AFTER position and VALUE.
2364 ;; Called from functions compiled with edebug-eval-top-level-form.
2365 ;; Return VALUE.
2366 (setcar edebug-offset-indices edebug-after-index)
2367
2368 ;; Increment frequency count
2369 (aset edebug-freq-count edebug-after-index
2370 (1+ (aref edebug-freq-count edebug-after-index)))
2371 (if edebug-test-coverage (edebug-update-coverage))
2372
2373 (if (and (eq edebug-execution-mode 'Go-nonstop)
2374 (not (edebug-input-pending-p)))
2375 ;; Just return result.
2376 edebug-value
2377 (edebug-debugger edebug-after-index 'after edebug-value)
2378 ))
2379
2380(defun edebug-fast-after (edebug-before-index edebug-after-index edebug-value)
2381 ;; Do nothing but return the value.
2382 edebug-value)
2383
2384(defun edebug-run-slow ()
2385 (defalias 'edebug-before 'edebug-slow-before)
2386 (defalias 'edebug-after 'edebug-slow-after))
2387
2388;; This is not used, yet.
2389(defun edebug-run-fast ()
2390 (defalias 'edebug-before 'edebug-fast-before)
2391 (defalias 'edebug-after 'edebug-fast-after))
2392
2393(edebug-run-slow)
2394
2395
2396(defun edebug-update-coverage ()
2397 (let ((old-result (aref edebug-coverage edebug-after-index)))
2398 (cond
2399 ((eq 'ok-coverage old-result))
2400 ((eq 'unknown old-result)
2401 (aset edebug-coverage edebug-after-index edebug-value))
2402 ;; Test if a different result.
2403 ((not (eq edebug-value old-result))
2404 (aset edebug-coverage edebug-after-index 'ok-coverage)))))
2405
2406
2407;; Dynamically declared unbound variables.
2408(defvar edebug-arg-mode) ; the mode, either before, after, or error
2409(defvar edebug-breakpoints)
2410(defvar edebug-break-data) ; break data for current function.
2411(defvar edebug-break) ; whether a break occurred.
2412(defvar edebug-global-break) ; whether a global break occurred.
2413(defvar edebug-break-condition) ; whether the breakpoint is conditional.
2414
2415(defvar edebug-break-result nil)
2416(defvar edebug-global-break-result nil)
2417
2418
2419(defun edebug-debugger (edebug-offset-index edebug-arg-mode edebug-value)
2420 ;; Check breakpoints and pending input.
2421 ;; If edebug display should be updated, call edebug-display.
2422 ;; Return edebug-value.
2423 (let* (;; This needs to be here since breakpoints may be changed.
84fc2cfa
ER
2424 (edebug-breakpoints (car (cdr edebug-data))) ; list of breakpoints
2425 (edebug-break-data (assq edebug-offset-index edebug-breakpoints))
1fe3d507
DL
2426 (edebug-break-condition (car (cdr edebug-break-data)))
2427 (edebug-global-break
2428 (if edebug-global-break-condition
2429 (condition-case nil
2430 (setq edebug-global-break-result
2431 (eval edebug-global-break-condition))
2432 (error nil))))
2433 (edebug-break))
2434
2435;;; (edebug-trace "exp: %s" edebug-value)
2436 ;; Test whether we should break.
2437 (setq edebug-break
2438 (or edebug-global-break
2439 (and edebug-break-data
2440 (or (not edebug-break-condition)
2441 (setq edebug-break-result
2442 (eval edebug-break-condition))))))
84fc2cfa 2443 (if (and edebug-break
1fe3d507 2444 (nth 2 edebug-break-data)) ; is it temporary?
84fc2cfa
ER
2445 ;; Delete the breakpoint.
2446 (setcdr edebug-data
2447 (cons (delq edebug-break-data edebug-breakpoints)
2448 (cdr (cdr edebug-data)))))
1fe3d507
DL
2449
2450 ;; Display if mode is not go, continue, or Continue-fast
2451 ;; or break, or input is pending,
2452 (if (or (not (memq edebug-execution-mode '(go continue Continue-fast)))
2453 edebug-break
2454 (edebug-input-pending-p))
2455 (edebug-display)) ; <--------------- display
84fc2cfa 2456
1fe3d507 2457 edebug-value
84fc2cfa
ER
2458 ))
2459
2460
1fe3d507
DL
2461;; window-start now stored with each function.
2462;;(defvar edebug-window-start nil)
2463;; Remember where each buffers' window starts between edebug calls.
2464;; This is to avoid spurious recentering.
2465;; Does this still need to be buffer-local??
2466;;(setq-default edebug-window-start nil)
2467;;(make-variable-buffer-local 'edebug-window-start)
2468
2469
2470;; Dynamically declared unbound vars
2471(defvar edebug-point) ; the point in edebug buffer
2472(defvar edebug-outside-buffer) ; the current-buffer outside of edebug
2473(defvar edebug-outside-point) ; the point outside of edebug
2474(defvar edebug-outside-mark) ; the mark outside of edebug
2475(defvar edebug-window-data) ; window and window-start for current function
2476(defvar edebug-outside-windows) ; outside window configuration
2477(defvar edebug-eval-buffer) ; for the evaluation list.
2478(defvar edebug-outside-o-a-p) ; outside overlay-arrow-position
2479(defvar edebug-outside-o-a-s) ; outside overlay-arrow-string
2480(defvar edebug-outside-c-i-e-a) ; outside cursor-in-echo-area
2481
2482(defvar edebug-eval-list nil) ;; List of expressions to evaluate.
2483
2484(defvar edebug-previous-result nil) ;; Last result returned.
2485
88668147 2486;; Emacs 19 adds an arg to mark and mark-marker.
1fe3d507
DL
2487(defalias 'edebug-mark 'mark)
2488(defalias 'edebug-mark-marker 'mark-marker)
84fc2cfa 2489
84fc2cfa
ER
2490
2491(defun edebug-display ()
1fe3d507
DL
2492 ;; Setup windows for edebug, determine mode, maybe enter recursive-edit.
2493 ;; Uses local variables of edebug-enter, edebug-before, edebug-after
2494 ;; and edebug-debugger.
84fc2cfa
ER
2495 (let ((edebug-active t) ; for minor mode alist
2496 edebug-stop ; should we enter recursive-edit
1fe3d507
DL
2497 (edebug-point (+ edebug-def-mark
2498 (aref (nth 2 edebug-data) edebug-offset-index)))
2499 edebug-buffer-outside-point ; current point in edebug-buffer
2500 ;; window displaying edebug-buffer
2501 (edebug-window-data (nth 3 edebug-data))
84fc2cfa
ER
2502 (edebug-outside-window (selected-window))
2503 (edebug-outside-buffer (current-buffer))
2504 (edebug-outside-point (point))
1fe3d507 2505 (edebug-outside-mark (edebug-mark))
84fc2cfa 2506 edebug-outside-windows ; window or screen configuration
1fe3d507 2507 edebug-buffer-points
84fc2cfa
ER
2508
2509 edebug-eval-buffer ; declared here so we can kill it below
2510 (edebug-eval-result-list (and edebug-eval-list
2511 (edebug-eval-result-list)))
1fe3d507
DL
2512 edebug-trace-window
2513 edebug-trace-window-start
88668147
DL
2514
2515 (edebug-outside-o-a-p overlay-arrow-position)
2516 (edebug-outside-o-a-s overlay-arrow-string)
2517 (edebug-outside-c-i-e-a cursor-in-echo-area))
2518 (unwind-protect
2519 (let ((overlay-arrow-position overlay-arrow-position)
2520 (overlay-arrow-string overlay-arrow-string)
2521 (cursor-in-echo-area nil)
2522 ;; any others??
2523 )
2524 (if (not (buffer-name edebug-buffer))
2525 (let ((debug-on-error nil))
2526 (error "Buffer defining %s not found" edebug-function)))
84fc2cfa 2527
88668147
DL
2528 (if (eq 'after edebug-arg-mode)
2529 ;; Compute result string now before windows are modified.
2530 (edebug-compute-previous-result edebug-value))
2531
2532 (if edebug-save-windows
2533 ;; Save windows now before we modify them.
2534 (setq edebug-outside-windows
2535 (edebug-current-windows edebug-save-windows)))
84fc2cfa 2536
88668147
DL
2537 (if edebug-save-displayed-buffer-points
2538 (setq edebug-buffer-points (edebug-get-displayed-buffer-points)))
2539
2540 ;; First move the edebug buffer point to edebug-point
f7359658
RS
2541 ;; so that window start doesn't get changed when we display it.
2542 ;; I don't know if this is going to help.
88668147
DL
2543 ;;(set-buffer edebug-buffer)
2544 ;;(goto-char edebug-point)
2545
2546 ;; If edebug-buffer is not currently displayed,
2547 ;; first find a window for it.
2548 (edebug-pop-to-buffer edebug-buffer (car edebug-window-data))
2549 (setcar edebug-window-data (selected-window))
2550
2551 ;; Now display eval list, if any.
2552 ;; This is done after the pop to edebug-buffer
2553 ;; so that buffer-window correspondence is correct after quitting.
2554 (edebug-eval-display edebug-eval-result-list)
2555 ;; The evaluation list better not have deleted edebug-window-data.
2556 (select-window (car edebug-window-data))
2557 (set-buffer edebug-buffer)
2558
2559 (setq edebug-buffer-outside-point (point))
2560 (goto-char edebug-point)
84fc2cfa 2561
88668147
DL
2562 (if (eq 'before edebug-arg-mode)
2563 ;; Check whether positions are up-to-date.
2564 ;; This assumes point is never before symbol.
2565 (if (not (memq (following-char) '(?\( ?\# ?\` )))
2566 (let ((debug-on-error nil))
2567 (error "Source has changed - reevaluate definition of %s"
2568 edebug-function)
2569 )))
1fe3d507 2570
88668147
DL
2571 (setcdr edebug-window-data
2572 (edebug-adjust-window (cdr edebug-window-data)))
84fc2cfa 2573
88668147
DL
2574 ;; Test if there is input, not including keyboard macros.
2575 (if (edebug-input-pending-p)
2576 (progn
2577 (setq edebug-execution-mode 'step
2578 edebug-stop t)
2579 (edebug-stop)
2580 ;; (discard-input) ; is this unfriendly??
2581 ))
2582 ;; Now display arrow based on mode.
2583 (edebug-overlay-arrow)
84fc2cfa 2584
88668147
DL
2585 (cond
2586 ((eq 'error edebug-arg-mode)
2587 ;; Display error message
2588 (setq edebug-execution-mode 'step)
2589 (edebug-overlay-arrow)
2590 (beep)
2591 (if (eq 'quit (car edebug-value))
2592 (message "Quit")
2593 (edebug-report-error edebug-value)))
2594 (edebug-break
2595 (cond
2596 (edebug-global-break
2597 (message "Global Break: %s => %s"
2598 edebug-global-break-condition
2599 edebug-global-break-result))
2600 (edebug-break-condition
2601 (message "Break: %s => %s"
2602 edebug-break-condition
2603 edebug-break-result))
2604 ((not (eq edebug-execution-mode 'Continue-fast))
2605 (message "Break"))
2606 (t)))
2607
2608 (t (message "")))
2609
2610 (if (eq 'after edebug-arg-mode)
2611 (progn
2612 ;; Display result of previous evaluation.
2613 (if (and edebug-break
2614 (not (eq edebug-execution-mode 'Continue-fast)))
2615 (sit-for 1)) ; Show break message.
2616 (edebug-previous-result)))
1fe3d507 2617
88668147
DL
2618 (cond
2619 (edebug-break
2620 (cond
2621 ((eq edebug-execution-mode 'continue) (edebug-sit-for 1))
2622 ((eq edebug-execution-mode 'Continue-fast) (edebug-sit-for 0))
2623 (t (setq edebug-stop t))))
2624 ;; not edebug-break
2625 ((eq edebug-execution-mode 'trace)
5492ef3c 2626 (edebug-sit-for edebug-sit-for-seconds)) ; Force update and pause.
88668147
DL
2627 ((eq edebug-execution-mode 'Trace-fast)
2628 (edebug-sit-for 0)) ; Force update and continue.
2629 )
1fe3d507 2630
88668147
DL
2631 (unwind-protect
2632 (if (or edebug-stop
2633 (memq edebug-execution-mode '(step next))
2634 (eq edebug-arg-mode 'error))
2635 (progn
2636 ;; (setq edebug-execution-mode 'step)
f7359658 2637 ;; (edebug-overlay-arrow) ; This doesn't always show up.
88668147
DL
2638 (edebug-recursive-edit))) ; <---------- Recursive edit
2639
2640 ;; Reset the edebug-window-data to whatever it is now.
2641 (let ((window (if (eq (window-buffer) edebug-buffer)
2642 (selected-window)
2643 (edebug-get-buffer-window edebug-buffer))))
2644 ;; Remember window-start for edebug-buffer, if still displayed.
2645 (if window
2646 (progn
2647 (setcar edebug-window-data window)
2648 (setcdr edebug-window-data (window-start window)))))
1fe3d507 2649
88668147
DL
2650 ;; Save trace window point before restoring outside windows.
2651 ;; Could generalize this for other buffers.
2652 (setq edebug-trace-window (get-buffer-window edebug-trace-buffer))
2653 (if edebug-trace-window
2654 (setq edebug-trace-window-start
2655 (and edebug-trace-window
2656 (window-start edebug-trace-window))))
2657
2658 ;; Restore windows before continuing.
2659 (if edebug-save-windows
2660 (progn
2661 (edebug-set-windows edebug-outside-windows)
2662
2663 ;; Restore displayed buffer points.
2664 ;; Needed even if restoring windows because
2665 ;; window-points are not restored. (should they be??)
2666 (if edebug-save-displayed-buffer-points
2667 (edebug-set-buffer-points edebug-buffer-points))
2668
2669 ;; Unrestore trace window's window-point.
2670 (if edebug-trace-window
2671 (set-window-start edebug-trace-window
2672 edebug-trace-window-start))
2673
2674 ;; Unrestore edebug-buffer's window-start, if displayed.
2675 (let ((window (car edebug-window-data)))
2676 (if (and window (edebug-window-live-p window)
2677 (eq (window-buffer) edebug-buffer))
2678 (progn
2679 (set-window-start window (cdr edebug-window-data)
2680 'no-force)
2681 ;; Unrestore edebug-buffer's window-point.
2682 ;; Needed in addition to setting the buffer point
f7359658 2683 ;; - otherwise quitting doesn't leave point as is.
88668147
DL
2684 ;; But this causes point to not be restored at times.
2685 ;; Also, it may not be a visible window.
2686 ;; (set-window-point window edebug-point)
2687 )))
2688
2689 ;; Unrestore edebug-buffer's point. Rerestored below.
2690 ;; (goto-char edebug-point) ;; in edebug-buffer
2691 )
2692 ;; Since we may be in a save-excursion, in case of quit,
2693 ;; reselect the outside window only.
2694 ;; Only needed if we are not recovering windows??
2695 (if (edebug-window-live-p edebug-outside-window)
2696 (select-window edebug-outside-window))
2697 ) ; if edebug-save-windows
2698
2699 ;; Restore current buffer always, in case application needs it.
2700 (set-buffer edebug-outside-buffer)
2701 ;; Restore point, and mark.
1fe3d507 2702 ;; Needed even if restoring windows because
f7359658
RS
2703 ;; that doesn't restore point and mark in the current buffer.
2704 ;; But don't restore point if edebug-buffer is current buffer.
88668147
DL
2705 (if (not (eq edebug-buffer edebug-outside-buffer))
2706 (goto-char edebug-outside-point))
2707 (if (marker-buffer (edebug-mark-marker))
2708 ;; Does zmacs-regions need to be nil while doing set-marker?
2709 (set-marker (edebug-mark-marker) edebug-outside-mark))
2710 ) ; unwind-protect
2711 ;; None of the following is done if quit or signal occurs.
2712
2713 ;; Restore edebug-buffer's outside point.
2714 ;; (edebug-trace "restore edebug-buffer point: %s"
2715 ;; edebug-buffer-outside-point)
2716 (let ((current-buffer (current-buffer)))
2717 (set-buffer edebug-buffer)
2718 (goto-char edebug-buffer-outside-point)
2719 (set-buffer current-buffer))
2720 ;; ... nothing more.
2721 )
2722 ;; Reset global variables to outside values in case they were changed.
2723 (setq
2724 overlay-arrow-position edebug-outside-o-a-p
2725 overlay-arrow-string edebug-outside-o-a-s
2726 cursor-in-echo-area edebug-outside-c-i-e-a)
2727 )))
1fe3d507 2728
84fc2cfa 2729
1fe3d507
DL
2730(defvar edebug-number-of-recursions 0)
2731;; Number of recursive edits started by edebug.
2732;; Should be 0 at the top level.
2733
2734(defvar edebug-recursion-depth 0)
2735;; Value of recursion-depth when edebug was called.
2736
2737;; Dynamically declared unbound vars
2738(defvar edebug-outside-match-data) ; match data outside of edebug
2739(defvar edebug-backtrace-buffer) ; each recursive edit gets its own
2740(defvar edebug-inside-windows)
2741(defvar edebug-interactive-p)
2742
2743(defvar edebug-outside-map)
2744(defvar edebug-outside-standard-output)
2745(defvar edebug-outside-standard-input)
2746(defvar edebug-outside-last-command-char)
2747(defvar edebug-outside-last-command)
2748(defvar edebug-outside-this-command)
2749(defvar edebug-outside-last-input-char)
2750
100aa77c
RS
2751;; Note: here we have defvars for variables that are
2752;; built-in in certain versions.
2753;; Each defvar makes a difference
2754;; in versions where the variable is *not* built-in.
2755
1fe3d507
DL
2756;; Emacs 18
2757(defvar edebug-outside-unread-command-char)
1fe3d507
DL
2758
2759;; Lucid Emacs
2760(defvar edebug-outside-unread-command-event) ;; like unread-command-events
2761(defvar unread-command-event nil)
2762
2763;; Emacs 19.
2764(defvar edebug-outside-last-command-event)
2765(defvar edebug-outside-unread-command-events)
2766(defvar edebug-outside-last-input-event)
2767(defvar edebug-outside-last-event-frame)
2768(defvar edebug-outside-last-nonmenu-event)
2769(defvar edebug-outside-track-mouse)
2770
1fe3d507
DL
2771;; Disable byte compiler warnings about unread-command-char and -event
2772;; (maybe works with byte-compile-version 2.22 at least)
2773(defvar edebug-unread-command-char-warning)
2774(defvar edebug-unread-command-event-warning)
2775(eval-when-compile
2776 (setq edebug-unread-command-char-warning
2777 (get 'unread-command-char 'byte-obsolete-variable))
2778 (put 'unread-command-char 'byte-obsolete-variable nil)
2779 (setq edebug-unread-command-event-warning
2780 (get 'unread-command-event 'byte-obsolete-variable))
2781 (put 'unread-command-event 'byte-obsolete-variable nil))
84fc2cfa
ER
2782
2783(defun edebug-recursive-edit ()
1fe3d507 2784 ;; Start up a recursive edit inside of edebug.
84fc2cfa 2785 ;; The current buffer is the edebug-buffer, which is put into edebug-mode.
1fe3d507 2786 ;; Assume that none of the variables below are buffer-local.
84fc2cfa
ER
2787 (let ((edebug-buffer-read-only buffer-read-only)
2788 ;; match-data must be done in the outside buffer
2789 (edebug-outside-match-data
1fe3d507
DL
2790 (save-excursion ; might be unnecessary now??
2791 (set-buffer edebug-outside-buffer) ; in case match buffer different
84fc2cfa
ER
2792 (match-data)))
2793
1fe3d507 2794 ;;(edebug-number-of-recursions (1+ edebug-number-of-recursions))
84fc2cfa
ER
2795 (edebug-recursion-depth (recursion-depth))
2796 edebug-entered ; bind locally to nil
1fe3d507 2797 (edebug-interactive-p nil) ; again non-interactive
84fc2cfa
ER
2798 edebug-backtrace-buffer ; each recursive edit gets its own
2799 ;; The window configuration may be saved and restored
2800 ;; during a recursive-edit
2801 edebug-inside-windows
2802
2803 (edebug-outside-map (current-local-map))
88668147 2804
84fc2cfa
ER
2805 (edebug-outside-standard-output standard-output)
2806 (edebug-outside-standard-input standard-input)
88668147 2807 (edebug-outside-defining-kbd-macro defining-kbd-macro)
84fc2cfa
ER
2808
2809 (edebug-outside-last-command-char last-command-char)
2810 (edebug-outside-last-command last-command)
2811 (edebug-outside-this-command this-command)
2812 (edebug-outside-last-input-char last-input-char)
1fe3d507
DL
2813
2814 (edebug-outside-unread-command-char unread-command-char)
2815
2816 (edebug-outside-last-input-event last-input-event)
2817 (edebug-outside-last-command-event last-command-event)
2818 (edebug-outside-unread-command-event unread-command-event)
2819 (edebug-outside-unread-command-events unread-command-events)
2820 (edebug-outside-last-event-frame last-event-frame)
2821 (edebug-outside-last-nonmenu-event last-nonmenu-event)
2822 (edebug-outside-track-mouse track-mouse)
84fc2cfa
ER
2823 )
2824
84fc2cfa 2825 (unwind-protect
88668147
DL
2826 (let (
2827 ;; Declare global values local but using the same global value.
2828 ;; We could set these to the values for previous edebug call.
2829 (last-command-char last-command-char)
2830 (last-command last-command)
2831 (this-command this-command)
2832 (last-input-char last-input-char)
2833
2834 ;; Assume no edebug command sets unread-command-char.
2835 (unread-command-char -1)
2836
2837 ;; More for Emacs 19
2838 (last-input-event nil)
2839 (last-command-event nil)
2840 (unread-command-event nil);; lemacs
2841 (unread-command-events nil)
2842 (last-event-frame nil)
2843 (last-nonmenu-event nil)
2844 (track-mouse nil)
2845
2846 ;; Bind again to outside values.
2847 (debug-on-error edebug-outside-debug-on-error)
2848 (debug-on-quit edebug-outside-debug-on-quit)
2849
2850 ;; Don't keep defining a kbd macro.
2851 (defining-kbd-macro
2852 (if edebug-continue-kbd-macro defining-kbd-macro))
2853
2854 ;; others??
2855 )
2856
2857 (if (fboundp 'zmacs-deactivate-region);; for lemacs
2858 (zmacs-deactivate-region))
2859 (if (and (eq edebug-execution-mode 'go)
2860 (not (memq edebug-arg-mode '(after error))))
2861 (message "Break"))
2862
2863 (setq buffer-read-only t)
1e3ab67b 2864 (setq signal-hook-function nil)
88668147
DL
2865
2866 (edebug-mode)
2867 (unwind-protect
2868 (recursive-edit) ; <<<<<<<<<< Recursive edit
2869
2870 ;; Do the following, even if quit occurs.
1e3ab67b 2871 (setq signal-hook-function 'edebug-signal)
88668147
DL
2872 (if edebug-backtrace-buffer
2873 (kill-buffer edebug-backtrace-buffer))
2874 ;; Could be an option to keep eval display up.
2875 (if edebug-eval-buffer (kill-buffer edebug-eval-buffer))
2876
2877 ;; Remember selected-window after recursive-edit.
2878 ;; (setq edebug-inside-window (selected-window))
2879
ccb61a97 2880 (set-match-data edebug-outside-match-data)
88668147
DL
2881
2882 ;; Recursive edit may have changed buffers,
2883 ;; so set it back before exiting let.
2884 (if (buffer-name edebug-buffer) ; if it still exists
2885 (progn
2886 (set-buffer edebug-buffer)
2887 (if (memq edebug-execution-mode '(go Go-nonstop))
2888 (edebug-overlay-arrow))
2889 (setq buffer-read-only edebug-buffer-read-only)
2890 (use-local-map edebug-outside-map)
2891 )
2892 ;; gotta have a buffer to let its buffer local variables be set
2893 (get-buffer-create " bogus edebug buffer"))
2894 ));; inner let
2895
2896 ;; Reset global vars to outside values, in case they have been changed.
2897 (setq
2898 last-command-char edebug-outside-last-command-char
2899 last-command-event edebug-outside-last-command-event
2900 last-command edebug-outside-last-command
2901 this-command edebug-outside-this-command
2902 unread-command-char edebug-outside-unread-command-char
2903 unread-command-event edebug-outside-unread-command-event
2904 unread-command-events edebug-outside-unread-command-events
2905 last-input-char edebug-outside-last-input-char
2906 last-input-event edebug-outside-last-input-event
2907 last-event-frame edebug-outside-last-event-frame
2908 last-nonmenu-event edebug-outside-last-nonmenu-event
2909 track-mouse edebug-outside-track-mouse
2910
2911 standard-output edebug-outside-standard-output
2912 standard-input edebug-outside-standard-input
2913 defining-kbd-macro edebug-outside-defining-kbd-macro
2914 ))
2915 ))
84fc2cfa 2916
1fe3d507
DL
2917
2918;;; Display related functions
84fc2cfa
ER
2919
2920(defun edebug-adjust-window (old-start)
1fe3d507
DL
2921 ;; If pos is not visible, adjust current window to fit following context.
2922;;; (message "window: %s old-start: %s window-start: %s pos: %s"
2923;;; (selected-window) old-start (window-start) (point)) (sit-for 5)
84fc2cfa
ER
2924 (if (not (pos-visible-in-window-p))
2925 (progn
1fe3d507
DL
2926 ;; First try old-start
2927 (if old-start
2928 (set-window-start (selected-window) old-start))
84fc2cfa 2929 (if (not (pos-visible-in-window-p))
1fe3d507
DL
2930 (progn
2931;; (message "resetting window start") (sit-for 2)
2932 (set-window-start
2933 (selected-window)
2934 (save-excursion
2935 (forward-line
2936 (if (< (point) (window-start)) -1 ; one line before if in back
2937 (- (/ (window-height) 2)) ; center the line moving forward
2938 ))
2939 (beginning-of-line)
2940 (point)))))))
84fc2cfa 2941 (window-start))
1fe3d507 2942
84fc2cfa
ER
2943
2944
1fe3d507
DL
2945(defconst edebug-arrow-alist
2946 '((Continue-fast . "=")
2947 (Trace-fast . "-")
2948 (continue . ">")
2949 (trace . "->")
2950 (step . "=>")
2951 (next . "=>")
2952 (go . "<>")
2953 (Go-nonstop . "..") ; not used
2954 )
2955 "Association list of arrows for each edebug mode.")
2956
2957(defun edebug-overlay-arrow ()
2958 ;; Set up the overlay arrow at beginning-of-line in current buffer.
2959 ;; The arrow string is derived from edebug-arrow-alist and
2960 ;; edebug-execution-mode.
88668147 2961 (let ((pos (save-excursion (beginning-of-line) (point))))
1fe3d507
DL
2962 (setq overlay-arrow-string
2963 (cdr (assq edebug-execution-mode edebug-arrow-alist)))
2964 (setq overlay-arrow-position (make-marker))
2965 (set-marker overlay-arrow-position pos (current-buffer))))
84fc2cfa 2966
1fe3d507
DL
2967
2968(defun edebug-toggle-save-all-windows ()
2969 "Toggle the saving and restoring of all windows.
2970Also, each time you toggle it on, the inside and outside window
2971configurations become the same as the current configuration."
84fc2cfa 2972 (interactive)
1fe3d507
DL
2973 (setq edebug-save-windows (not edebug-save-windows))
2974 (if edebug-save-windows
84fc2cfa
ER
2975 (setq edebug-inside-windows
2976 (setq edebug-outside-windows
1fe3d507
DL
2977 (edebug-current-windows
2978 edebug-save-windows))))
2979 (message "Window saving is %s for all windows."
84fc2cfa
ER
2980 (if edebug-save-windows "on" "off")))
2981
1fe3d507
DL
2982(defmacro edebug-changing-windows (&rest body)
2983 (` (let ((window (selected-window)))
2984 (setq edebug-inside-windows (edebug-current-windows t))
2985 (edebug-set-windows edebug-outside-windows)
2986 (,@ body) ;; Code to change edebug-save-windows
2987 (setq edebug-outside-windows (edebug-current-windows
2988 edebug-save-windows))
2989 ;; Problem: what about outside windows that are deleted inside?
2990 (edebug-set-windows edebug-inside-windows))))
2991
2992(defun edebug-toggle-save-selected-window ()
2993 "Toggle the saving and restoring of the selected window.
2994Also, each time you toggle it on, the inside and outside window
2995configurations become the same as the current configuration."
2996 (interactive)
2997 (cond
2998 ((eq t edebug-save-windows)
2999 ;; Save all outside windows except the selected one.
3000 ;; Remove (selected-window) from outside-windows.
3001 (edebug-changing-windows
3002 (setq edebug-save-windows (delq window (edebug-window-list)))))
3003
3004 ((memq (selected-window) edebug-save-windows)
3005 (setq edebug-outside-windows
3006 (delq (assq (selected-window) edebug-outside-windows)
3007 edebug-outside-windows))
3008 (setq edebug-save-windows
3009 (delq (selected-window) edebug-save-windows)))
3010 (t ; Save a new window.
3011 (edebug-changing-windows
3012 (setq edebug-save-windows (cons window edebug-save-windows)))))
3013
3014 (message "Window saving is %s for %s."
3015 (if (memq (selected-window) edebug-save-windows)
3016 "on" "off")
3017 (selected-window)))
3018
3019(defun edebug-toggle-save-windows (arg)
3020 "Toggle the saving and restoring of windows.
3021With prefix, toggle for just the selected window.
3022Otherwise, toggle for all windows."
3023 (interactive "P")
3024 (if arg
3025 (edebug-toggle-save-selected-window)
3026 (edebug-toggle-save-all-windows)))
3027
84fc2cfa
ER
3028
3029(defun edebug-where ()
3030 "Show the debug windows and where we stopped in the program."
3031 (interactive)
3032 (if (not edebug-active)
1fe3d507
DL
3033 (error "Edebug is not active"))
3034 ;; Restore the window configuration to what it last was inside.
3035 ;; But it is not always set. - experiment
3036 ;;(if edebug-inside-windows
3037 ;; (edebug-set-windows edebug-inside-windows))
84fc2cfa 3038 (edebug-pop-to-buffer edebug-buffer)
1fe3d507 3039 (goto-char edebug-point))
84fc2cfa
ER
3040
3041(defun edebug-view-outside ()
3042 "Change to the outside window configuration."
3043 (interactive)
3044 (if (not edebug-active)
1fe3d507
DL
3045 (error "Edebug is not active"))
3046 (setq edebug-inside-windows
3047 (edebug-current-windows edebug-save-windows))
3048 (edebug-set-windows edebug-outside-windows)
84fc2cfa 3049 (goto-char edebug-outside-point)
1fe3d507 3050 (message "Window configuration outside of Edebug. Return with %s"
84fc2cfa
ER
3051 (substitute-command-keys "\\<global-map>\\[edebug-where]")))
3052
3053
1fe3d507
DL
3054(defun edebug-bounce-point (arg)
3055 "Bounce the point in the outside current buffer.
3056If prefix arg is supplied, sit for that many seconds before returning.
3057The default is one second."
3058 (interactive "p")
84fc2cfa 3059 (if (not edebug-active)
1fe3d507 3060 (error "Edebug is not active"))
84fc2cfa 3061 (save-excursion
1fe3d507 3062 ;; If the buffer's currently displayed, avoid set-window-configuration.
84fc2cfa
ER
3063 (save-window-excursion
3064 (edebug-pop-to-buffer edebug-outside-buffer)
84fc2cfa 3065 (goto-char edebug-outside-point)
1fe3d507
DL
3066 (message "Current buffer: %s Point: %s Mark: %s"
3067 (current-buffer) (point)
3068 (if (marker-buffer (edebug-mark-marker))
3069 (marker-position (edebug-mark-marker)) "<not set>"))
3070 (edebug-sit-for arg)
3071 (edebug-pop-to-buffer edebug-buffer (car edebug-window-data)))))
84fc2cfa 3072
84fc2cfa 3073
1fe3d507
DL
3074;; Joe Wells, here is a start at your idea of adding a buffer to the internal
3075;; display list. Still need to use this list in edebug-display.
84fc2cfa 3076
1fe3d507
DL
3077'(defvar edebug-display-buffer-list nil
3078 "List of buffers that edebug will display when it is active.")
84fc2cfa 3079
1fe3d507
DL
3080'(defun edebug-display-buffer (buffer)
3081 "Toggle display of a buffer inside of edebug."
3082 (interactive "bBuffer: ")
3083 (let ((already-displaying (memq buffer edebug-display-buffer-list)))
3084 (setq edebug-display-buffer-list
3085 (if already-displaying
3086 (delq buffer edebug-display-buffer-list)
3087 (cons buffer edebug-display-buffer-list)))
3088 (message "Displaying %s %s" buffer
3089 (if already-displaying "off" "on"))))
84fc2cfa 3090
1fe3d507 3091;;; Breakpoint related functions
84fc2cfa
ER
3092
3093(defun edebug-find-stop-point ()
1fe3d507
DL
3094 ;; Return (function . index) of the nearest edebug stop point.
3095 (let* ((edebug-def-name (edebug-form-data-symbol))
84fc2cfa 3096 (edebug-data
1fe3d507
DL
3097 (let ((data (get edebug-def-name 'edebug)))
3098 (if (or (null data) (markerp data))
3099 (error "%s is not instrumented for Edebug" edebug-def-name))
3100 data)) ; we could do it automatically, if data is a marker.
84fc2cfa 3101 ;; pull out parts of edebug-data.
1fe3d507
DL
3102 (edebug-def-mark (car edebug-data))
3103 ;; (edebug-breakpoints (car (cdr edebug-data)))
84fc2cfa 3104
1fe3d507 3105 (offset-vector (nth 2 edebug-data))
84fc2cfa
ER
3106 (offset (- (save-excursion
3107 (if (looking-at "[ \t]")
3108 ;; skip backwards until non-whitespace, or bol
3109 (skip-chars-backward " \t"))
3110 (point))
1fe3d507 3111 edebug-def-mark))
84fc2cfa
ER
3112 len i)
3113 ;; the offsets are in order so we can do a linear search
3114 (setq len (length offset-vector))
3115 (setq i 0)
3116 (while (and (< i len) (> offset (aref offset-vector i)))
3117 (setq i (1+ i)))
3118 (if (and (< i len)
3119 (<= offset (aref offset-vector i)))
3120 ;; return the relevant info
1fe3d507 3121 (cons edebug-def-name i)
84fc2cfa 3122 (message "Point is not on an expression in %s."
1fe3d507 3123 edebug-def-name)
84fc2cfa
ER
3124 )))
3125
3126
3127(defun edebug-next-breakpoint ()
3128 "Move point to the next breakpoint, or first if none past point."
3129 (interactive)
3130 (let ((edebug-stop-point (edebug-find-stop-point)))
3131 (if edebug-stop-point
1fe3d507 3132 (let* ((edebug-def-name (car edebug-stop-point))
84fc2cfa 3133 (index (cdr edebug-stop-point))
1fe3d507 3134 (edebug-data (get edebug-def-name 'edebug))
84fc2cfa
ER
3135
3136 ;; pull out parts of edebug-data
1fe3d507 3137 (edebug-def-mark (car edebug-data))
84fc2cfa 3138 (edebug-breakpoints (car (cdr edebug-data)))
1fe3d507 3139 (offset-vector (nth 2 edebug-data))
84fc2cfa
ER
3140 breakpoint)
3141 (if (not edebug-breakpoints)
3142 (message "No breakpoints in this function.")
3143 (let ((breaks edebug-breakpoints))
3144 (while (and breaks
3145 (<= (car (car breaks)) index))
3146 (setq breaks (cdr breaks)))
3147 (setq breakpoint
3148 (if breaks
3149 (car breaks)
3150 ;; goto the first breakpoint
3151 (car edebug-breakpoints)))
1fe3d507 3152 (goto-char (+ edebug-def-mark
84fc2cfa
ER
3153 (aref offset-vector (car breakpoint))))
3154
f7359658
RS
3155 (message "%s"
3156 (concat (if (nth 2 breakpoint)
84fc2cfa
ER
3157 "Temporary " "")
3158 (if (car (cdr breakpoint))
3159 (format "Condition: %s"
1fe3d507 3160 (edebug-safe-prin1-to-string
84fc2cfa
ER
3161 (car (cdr breakpoint))))
3162 "")))
3163 ))))))
3164
3165
3166(defun edebug-modify-breakpoint (flag &optional condition temporary)
3167 "Modify the breakpoint for the form at point or after it according
3168to FLAG: set if t, clear if nil. Then move to that point.
3169If CONDITION or TEMPORARY are non-nil, add those attributes to
3170the breakpoint. "
3171 (let ((edebug-stop-point (edebug-find-stop-point)))
3172 (if edebug-stop-point
1fe3d507 3173 (let* ((edebug-def-name (car edebug-stop-point))
84fc2cfa 3174 (index (cdr edebug-stop-point))
1fe3d507 3175 (edebug-data (get edebug-def-name 'edebug))
84fc2cfa
ER
3176
3177 ;; pull out parts of edebug-data
1fe3d507 3178 (edebug-def-mark (car edebug-data))
84fc2cfa 3179 (edebug-breakpoints (car (cdr edebug-data)))
1fe3d507 3180 (offset-vector (nth 2 edebug-data))
84fc2cfa
ER
3181 present)
3182 ;; delete it either way
3183 (setq present (assq index edebug-breakpoints))
3184 (setq edebug-breakpoints (delq present edebug-breakpoints))
3185 (if flag
3186 (progn
3187 ;; add it to the list and resort
3188 (setq edebug-breakpoints
3189 (edebug-sort-alist
3190 (cons
3191 (list index condition temporary)
3192 edebug-breakpoints) '<))
1fe3d507
DL
3193 (if condition
3194 (message "Breakpoint set in %s with condition: %s"
3195 edebug-def-name condition)
3196 (message "Breakpoint set in %s" edebug-def-name)))
84fc2cfa 3197 (if present
1fe3d507
DL
3198 (message "Breakpoint unset in %s" edebug-def-name)
3199 (message "No breakpoint here")))
84fc2cfa 3200
1fe3d507
DL
3201 (setcar (cdr edebug-data) edebug-breakpoints)
3202 (goto-char (+ edebug-def-mark (aref offset-vector index)))
84fc2cfa
ER
3203 ))))
3204
3205(defun edebug-set-breakpoint (arg)
3206 "Set the breakpoint of nearest sexp.
3207With prefix argument, make it a temporary breakpoint."
3208 (interactive "P")
3209 (edebug-modify-breakpoint t nil arg))
3210
3211(defun edebug-unset-breakpoint ()
3212 "Clear the breakpoint of nearest sexp."
3213 (interactive)
3214 (edebug-modify-breakpoint nil))
3215
1fe3d507
DL
3216
3217;; For emacs 18, no read-expression-history
84fc2cfa
ER
3218(defun edebug-set-conditional-breakpoint (arg condition)
3219 "Set a conditional breakpoint at nearest sexp.
3220The condition is evaluated in the outside context.
3221With prefix argument, make it a temporary breakpoint."
1fe3d507
DL
3222 ;; (interactive "P\nxCondition: ")
3223 (interactive
3224 (list
3225 current-prefix-arg
3226 ;; Edit previous condition as follows, but it is cumbersome:
3227 (let ((edebug-stop-point (edebug-find-stop-point)))
3228 (if edebug-stop-point
3229 (let* ((edebug-def-name (car edebug-stop-point))
3230 (index (cdr edebug-stop-point))
3231 (edebug-data (get edebug-def-name 'edebug))
3232 (edebug-breakpoints (car (cdr edebug-data)))
3233 (edebug-break-data (assq index edebug-breakpoints))
3234 (edebug-break-condition (car (cdr edebug-break-data))))
3235 (read-minibuffer
3236 (format "Condition in %s: " edebug-def-name)
3237 (if edebug-break-condition
3238 (format "%s" edebug-break-condition)
3239 (format ""))))))))
84fc2cfa
ER
3240 (edebug-modify-breakpoint t condition arg))
3241
1fe3d507
DL
3242
3243(defun edebug-set-global-break-condition (expression)
3244 (interactive (list (read-minibuffer
3245 "Global Condition: "
3246 (format "%s" edebug-global-break-condition))))
3247 (setq edebug-global-break-condition expression))
3248
3249
3250;;; Mode switching functions
84fc2cfa
ER
3251
3252(defun edebug-set-mode (mode shortmsg msg)
1fe3d507
DL
3253 ;; Set the edebug mode to MODE.
3254 ;; Display SHORTMSG, or MSG if not within edebug.
3255 (if (eq (1+ edebug-recursion-depth) (recursion-depth))
3256 (progn
3257 (setq edebug-execution-mode mode)
3258 (message shortmsg)
3259 ;; Continue execution
3260 (exit-recursive-edit))
3261 ;; This is not terribly useful!!
3262 (setq edebug-next-execution-mode mode)
84fc2cfa
ER
3263 (message msg)))
3264
3265
1fe3d507
DL
3266(defalias 'edebug-step-through-mode 'edebug-step-mode)
3267
3268(defun edebug-step-mode ()
3269 "Proceed to next stop point."
3270 (interactive)
3271 (edebug-set-mode 'step "" "Edebug will stop at next stop point."))
3272
3273(defun edebug-next-mode ()
3274 "Proceed to next `after' stop point."
84fc2cfa 3275 (interactive)
1fe3d507 3276 (edebug-set-mode 'next "" "Edebug will stop after next eval."))
84fc2cfa 3277
1fe3d507 3278(defun edebug-go-mode (arg)
84fc2cfa 3279 "Go, evaluating until break.
1fe3d507 3280With prefix ARG, set temporary break at current point and go."
84fc2cfa
ER
3281 (interactive "P")
3282 (if arg
3283 (edebug-set-breakpoint t))
1fe3d507 3284 (edebug-set-mode 'go "Go..." "Edebug will go until break."))
84fc2cfa 3285
1fe3d507 3286(defun edebug-Go-nonstop-mode ()
84fc2cfa
ER
3287 "Go, evaluating without debugging."
3288 (interactive)
3289 (edebug-set-mode 'Go-nonstop "Go-Nonstop..."
1fe3d507
DL
3290 "Edebug will not stop at breaks."))
3291
3292
3293(defun edebug-trace-mode ()
3294 "Begin trace mode."
3295 (interactive)
3296 (edebug-set-mode 'trace "Tracing..." "Edebug will trace with pause."))
3297
3298(defun edebug-Trace-fast-mode ()
3299 "Trace with no wait at each step."
3300 (interactive)
3301 (edebug-set-mode 'Trace-fast
3302 "Trace fast..." "Edebug will trace without pause."))
3303
3304(defun edebug-continue-mode ()
3305 "Begin continue mode."
3306 (interactive)
3307 (edebug-set-mode 'continue "Continue..."
3308 "Edebug will pause at breakpoints."))
3309
3310(defun edebug-Continue-fast-mode ()
3311 "Trace with no wait at each step."
3312 (interactive)
3313 (edebug-set-mode 'Continue-fast "Continue fast..."
3314 "Edebug will stop and go at breakpoints."))
3315
3316;; ------------------------------------------------------------
3317;; The following use the mode changing commands and breakpoints.
3318
3319
3320(defun edebug-goto-here ()
3321 "Proceed to this stop point."
3322 (interactive)
3323 (edebug-go-mode t))
3324
3325
3326(defun edebug-stop ()
3327 "Stop execution and do not continue.
3328Useful for exiting from trace or continue loop."
3329 (interactive)
3330 (message "Stop"))
3331
3332
3333'(defun edebug-forward ()
3334 "Proceed to the exit of the next expression to be evaluated."
3335 (interactive)
3336 (edebug-set-mode
3337 'forward "Forward"
3338 "Edebug will stop after exiting the next expression."))
3339
84fc2cfa
ER
3340
3341(defun edebug-forward-sexp (arg)
3342 "Proceed from the current point to the end of the ARGth sexp ahead.
3343If there are not ARG sexps ahead, then do edebug-step-out."
3344 (interactive "p")
1fe3d507 3345 (condition-case nil
84fc2cfa
ER
3346 (let ((parse-sexp-ignore-comments t))
3347 ;; Call forward-sexp repeatedly until done or failure.
3348 (forward-sexp arg)
1fe3d507 3349 (edebug-go-mode t))
84fc2cfa
ER
3350 (error
3351 (edebug-step-out)
3352 )))
3353
3354(defun edebug-step-out ()
3355 "Proceed from the current point to the end of the containing sexp.
3356If there is no containing sexp that is not the top level defun,
3357go to the end of the last sexp, or if that is the same point, then step."
3358 (interactive)
1fe3d507 3359 (condition-case nil
84fc2cfa
ER
3360 (let ((parse-sexp-ignore-comments t))
3361 (up-list 1)
3362 (save-excursion
3363 ;; Is there still a containing expression?
3364 (up-list 1))
1fe3d507 3365 (edebug-go-mode t))
84fc2cfa
ER
3366 (error
3367 ;; At top level - 1, so first check if there are more sexps at this level.
3368 (let ((start-point (point)))
3369;; (up-list 1)
3370 (down-list -1)
3371 (if (= (point) start-point)
1fe3d507
DL
3372 (edebug-step-mode) ; No more at this level, so step.
3373 (edebug-go-mode t)
84fc2cfa
ER
3374 )))))
3375
1fe3d507
DL
3376(defun edebug-instrument-function (func)
3377 ;; Func should be a function symbol.
3378 ;; Return the function symbol, or nil if not instrumented.
3379 (let ((func-marker))
3380 (setq func-marker (get func 'edebug))
3381 (cond
3382 ((markerp func-marker)
3383 ;; It is uninstrumented, so instrument it.
3384 (save-excursion
3385 (set-buffer (marker-buffer func-marker))
3386 (goto-char func-marker)
3387 (edebug-eval-top-level-form)
3388 func))
3389 ((consp func-marker)
3390 (message "%s is already instrumented." func)
3391 func)
3392 (t
3393 ;; We could try harder, e.g. do a tags search.
3394 (error "Don't know where %s is defined" func)
3395 nil))))
3396
3397(defun edebug-instrument-callee ()
3398 "Instrument the definition of the function or macro about to be called.
3399Do this when stopped before the form or it will be too late.
3400One side effect of using this command is that the next time the
3401function or macro is called, Edebug will be called there as well."
84fc2cfa 3402 (interactive)
1fe3d507
DL
3403 (if (not (looking-at "\("))
3404 (error "You must be before a list form")
3405 (let ((func
3406 (save-excursion
3407 (down-list 1)
3408 (if (looking-at "\(")
3409 (edebug-form-data-name
3410 (edebug-get-form-data-entry (point)))
88668147 3411 (edebug-original-read (current-buffer))))))
1fe3d507 3412 (edebug-instrument-function func))))
84fc2cfa 3413
84fc2cfa 3414
1fe3d507
DL
3415(defun edebug-step-in ()
3416 "Step into the definition of the function or macro about to be called.
3417This first does `edebug-instrument-callee' to ensure that it is
3418instrumented. Then it does `edebug-on-entry' and switches to `go' mode."
84fc2cfa 3419 (interactive)
1fe3d507
DL
3420 (let ((func (edebug-instrument-callee)))
3421 (if func
3422 (progn
3423 (edebug-on-entry func 'temp)
3424 (edebug-go-mode nil)))))
84fc2cfa 3425
1fe3d507
DL
3426(defun edebug-on-entry (function &optional flag)
3427 "Cause Edebug to stop when FUNCTION is called.
3428With prefix argument, make this temporary so it is automatically
3429cancelled the first time the function is entered."
3430 (interactive "aEdebug on entry to: \nP")
3431 ;; Could store this in the edebug data instead.
3432 (put function 'edebug-on-entry (if flag 'temp t)))
84fc2cfa 3433
1fe3d507
DL
3434(defun cancel-edebug-on-entry (function)
3435 (interactive "aEdebug on entry to: ")
3436 (put function 'edebug-on-entry nil))
84fc2cfa 3437
1fe3d507 3438
88668147
DL
3439(if (not (fboundp 'edebug-original-debug-on-entry))
3440 (fset 'edebug-original-debug-on-entry (symbol-function 'debug-on-entry)))
1fe3d507
DL
3441'(fset 'debug-on-entry 'edebug-debug-on-entry) ;; Should we do this?
3442;; Also need edebug-cancel-debug-on-entry
3443
3444'(defun edebug-debug-on-entry (function)
3445 "Request FUNCTION to invoke debugger each time it is called.
3446If the user continues, FUNCTION's execution proceeds.
3447Works by modifying the definition of FUNCTION,
3448which must be written in Lisp, not predefined.
3449Use `cancel-debug-on-entry' to cancel the effect of this command.
3450Redefining FUNCTION also does that.
3451
3452This version is from Edebug. If the function is instrumented for
3453Edebug, it calls `edebug-on-entry'"
3454 (interactive "aDebug on entry (to function): ")
3455 (let ((func-data (get function 'edebug)))
3456 (if (or (null func-data) (markerp func-data))
88668147 3457 (edebug-original-debug-on-entry function)
1fe3d507
DL
3458 (edebug-on-entry function))))
3459
3460
3461(defun edebug-top-level-nonstop ()
3462 "Set mode to Go-nonstop, and exit to top-level.
3463This is useful for exiting even if unwind-protect code may be executed."
84fc2cfa 3464 (interactive)
1fe3d507
DL
3465 (setq edebug-execution-mode 'Go-nonstop)
3466 (top-level))
84fc2cfa
ER
3467
3468
3469;;(defun edebug-exit-out ()
3470;; "Go until the current function exits."
3471;; (interactive)
3472;; (edebug-set-mode 'exiting "Exit..."))
3473
3474
84fc2cfa
ER
3475;;; The following initial mode setting definitions are not used yet.
3476
1fe3d507 3477'(defconst edebug-initial-mode-alist
84fc2cfa
ER
3478 '((edebug-Continue-fast . Continue-fast)
3479 (edebug-Trace-fast . Trace-fast)
3480 (edebug-continue . continue)
3481 (edebug-trace . trace)
3482 (edebug-go . go)
3483 (edebug-step-through . step)
3484 (edebug-Go-nonstop . Go-nonstop)
3485 )
3486 "Association list between commands and the modes they set.")
3487
3488
1fe3d507 3489'(defun edebug-set-initial-mode ()
84fc2cfa
ER
3490 "Ask for the initial mode of the enclosing function.
3491The mode is requested via the key that would be used to set the mode in
3492edebug-mode."
3493 (interactive)
3494 (let* ((this-function (edebug-which-function))
3495 (keymap (if (eq edebug-mode-map (current-local-map))
3496 edebug-mode-map))
3497 (old-mode (or (get this-function 'edebug-initial-mode)
3498 edebug-initial-mode))
3499 (key (read-key-sequence
3500 (format
3501 "Change initial edebug mode for %s from %s (%s) to (enter key): "
3502 this-function
3503 old-mode
3504 (where-is-internal
3505 (car (rassq old-mode edebug-initial-mode-alist))
3506 keymap 'firstonly
3507 ))))
3508 (mode (cdr (assq (key-binding key) edebug-initial-mode-alist)))
3509 )
3510 (if (and mode
3511 (or (get this-function 'edebug-initial-mode)
3512 (not (eq mode edebug-initial-mode))))
3513 (progn
3514 (put this-function 'edebug-initial-mode mode)
3515 (message "Initial mode for %s is now: %s"
3516 this-function mode))
4897b0a0 3517 (error "Key must map to one of the mode changing commands")
84fc2cfa
ER
3518 )))
3519
1fe3d507 3520;;; Evaluation of expressions
84fc2cfa 3521
1fe3d507 3522(def-edebug-spec edebug-outside-excursion t)
84fc2cfa 3523
1fe3d507
DL
3524(defmacro edebug-outside-excursion (&rest body)
3525 "Evaluate an expression list in the outside context.
3526Return the result of the last expression."
3527 (` (save-excursion ; of current-buffer
3528 (if edebug-save-windows
3529 (progn
3530 ;; After excursion, we will
3531 ;; restore to current window configuration.
3532 (setq edebug-inside-windows
3533 (edebug-current-windows edebug-save-windows))
3534 ;; Restore outside windows.
3535 (edebug-set-windows edebug-outside-windows)))
3536
3537 (set-buffer edebug-buffer) ; why?
3538 ;; (use-local-map edebug-outside-map)
ccb61a97 3539 (set-match-data edebug-outside-match-data)
1fe3d507
DL
3540 ;; Restore outside context.
3541 (let (;; (edebug-inside-map (current-local-map)) ;; restore map??
3542 (last-command-char edebug-outside-last-command-char)
3543 (last-command-event edebug-outside-last-command-event)
3544 (last-command edebug-outside-last-command)
3545 (this-command edebug-outside-this-command)
3546 (unread-command-char edebug-outside-unread-command-char)
3547 (unread-command-event edebug-outside-unread-command-event)
3548 (unread-command-events edebug-outside-unread-command-events)
3549 (last-input-char edebug-outside-last-input-char)
3550 (last-input-event edebug-outside-last-input-event)
3551 (last-event-frame edebug-outside-last-event-frame)
3552 (last-nonmenu-event edebug-outside-last-nonmenu-event)
3553 (track-mouse edebug-outside-track-mouse)
1fe3d507
DL
3554 (standard-output edebug-outside-standard-output)
3555 (standard-input edebug-outside-standard-input)
88668147 3556
efcf38c7 3557 (executing-kbd-macro edebug-outside-executing-macro)
1fe3d507 3558 (defining-kbd-macro edebug-outside-defining-kbd-macro)
88668147
DL
3559 (pre-command-hook edebug-outside-pre-command-hook)
3560 (post-command-hook edebug-outside-post-command-hook)
3561
3562 ;; See edebug-display
3563 (overlay-arrow-position edebug-outside-o-a-p)
3564 (overlay-arrow-string edebug-outside-o-a-s)
3565 (cursor-in-echo-area edebug-outside-c-i-e-a)
1fe3d507
DL
3566 )
3567 (unwind-protect
3568 (save-excursion ; of edebug-buffer
3569 (set-buffer edebug-outside-buffer)
3570 (goto-char edebug-outside-point)
3571 (if (marker-buffer (edebug-mark-marker))
3572 (set-marker (edebug-mark-marker) edebug-outside-mark))
3573 (,@ body))
3574
3575 ;; Back to edebug-buffer. Restore rest of inside context.
3576 ;; (use-local-map edebug-inside-map)
3577 (if edebug-save-windows
3578 ;; Restore inside windows.
3579 (edebug-set-windows edebug-inside-windows))
88668147
DL
3580
3581 ;; Save values that may have been changed.
3582 (setq
3583 edebug-outside-last-command-char last-command-char
3584 edebug-outside-last-command-event last-command-event
3585 edebug-outside-last-command last-command
3586 edebug-outside-this-command this-command
3587 edebug-outside-unread-command-char unread-command-char
3588 edebug-outside-unread-command-event unread-command-event
3589 edebug-outside-unread-command-events unread-command-events
3590 edebug-outside-last-input-char last-input-char
3591 edebug-outside-last-input-event last-input-event
3592 edebug-outside-last-event-frame last-event-frame
3593 edebug-outside-last-nonmenu-event last-nonmenu-event
3594 edebug-outside-track-mouse track-mouse
3595 edebug-outside-standard-output standard-output
3596 edebug-outside-standard-input standard-input
3597
efcf38c7 3598 edebug-outside-executing-macro executing-kbd-macro
88668147
DL
3599 edebug-outside-defining-kbd-macro defining-kbd-macro
3600 edebug-outside-pre-command-hook pre-command-hook
3601 edebug-outside-post-command-hook post-command-hook
3602
3603 edebug-outside-o-a-p overlay-arrow-position
3604 edebug-outside-o-a-s overlay-arrow-string
3605 edebug-outside-c-i-e-a cursor-in-echo-area
3606 ))) ; let
1fe3d507
DL
3607 )))
3608
3609(defvar cl-debug-env nil) ;; defined in cl; non-nil when lexical env used.
3610
3611(defun edebug-eval (edebug-expr)
3612 ;; Are there cl lexical variables active?
3613 (if cl-debug-env
3614 (eval (cl-macroexpand-all edebug-expr cl-debug-env))
3615 (eval edebug-expr)))
3616
3617(defun edebug-safe-eval (edebug-expr)
3618 ;; Evaluate EXPR safely.
3619 ;; If there is an error, a string is returned describing the error.
3620 (condition-case edebug-err
3621 (edebug-eval edebug-expr)
3622 (error (edebug-format "%s: %s" ;; could
3623 (get (car edebug-err) 'error-message)
3624 (car (cdr edebug-err))))))
3625
f7359658
RS
3626;;; Printing
3627
1fe3d507
DL
3628;; Replace printing functions.
3629
3630;; obsolete names
3631(defalias 'edebug-install-custom-print-funcs 'edebug-install-custom-print)
3632(defalias 'edebug-reset-print-funcs 'edebug-uninstall-custom-print)
3633(defalias 'edebug-uninstall-custom-print-funcs 'edebug-uninstall-custom-print)
3634
3635(defun edebug-install-custom-print ()
3636 "Replace print functions used by Edebug with custom versions."
3637 ;; Modifying the custom print functions, or changing print-length,
3638 ;; print-level, print-circle, custom-print-list or custom-print-vector
3639 ;; have immediate effect.
84fc2cfa 3640 (interactive)
1fe3d507
DL
3641 (require 'cust-print)
3642 (defalias 'edebug-prin1 'custom-prin1)
3643 (defalias 'edebug-print 'custom-print)
3644 (defalias 'edebug-prin1-to-string 'custom-prin1-to-string)
3645 (defalias 'edebug-format 'custom-format)
3646 (defalias 'edebug-message 'custom-message)
3647 "Installed")
3648
3649(eval-and-compile
3650 (defun edebug-uninstall-custom-print ()
3651 "Replace edebug custom print functions with internal versions."
3652 (interactive)
3653 (defalias 'edebug-prin1 'prin1)
3654 (defalias 'edebug-print 'print)
3655 (defalias 'edebug-prin1-to-string 'prin1-to-string)
3656 (defalias 'edebug-format 'format)
3657 (defalias 'edebug-message 'message)
3658 "Uninstalled")
3659
3660 ;; Default print functions are the same as Emacs'.
3661 (edebug-uninstall-custom-print))
3662
3663
3664(defun edebug-report-error (edebug-value)
3665 ;; Print an error message like command level does.
3666 ;; This also prints the error name if it has no error-message.
3667 (message "%s: %s"
3668 (or (get (car edebug-value) 'error-message)
3669 (format "peculiar error (%s)" (car edebug-value)))
3670 (mapconcat (function (lambda (edebug-arg)
3671 ;; continuing after an error may
3672 ;; complain about edebug-arg. why??
3673 (prin1-to-string edebug-arg)))
3674 (cdr edebug-value) ", ")))
3675
3676;; Define here in case they are not already defined.
3677(defvar print-level nil)
3678(defvar print-circle nil)
3679(defvar print-readably) ;; defined by lemacs
3680;; Alternatively, we could change the definition of
88668147 3681;; edebug-safe-prin1-to-string to only use these if defined.
1fe3d507
DL
3682
3683(defun edebug-safe-prin1-to-string (value)
84fc2cfa 3684 (let ((print-escape-newlines t)
1fe3d507
DL
3685 (print-length (or edebug-print-length print-length))
3686 (print-level (or edebug-print-level print-level))
3687 (print-circle (or edebug-print-circle print-circle))
3688 (print-readably nil)) ;; lemacs uses this.
3689 (edebug-prin1-to-string value)))
3690
3691(defun edebug-compute-previous-result (edebug-previous-value)
3692 (setq edebug-previous-result
3060a062 3693 (if (and (integerp edebug-previous-value)
1fe3d507
DL
3694 (< edebug-previous-value 256)
3695 (>= edebug-previous-value 0))
3696 (format "Result: %s = %s" edebug-previous-value
3697 (single-key-description edebug-previous-value))
3698 (if edebug-unwrap-results
3699 (setq edebug-previous-value
3700 (edebug-unwrap* edebug-previous-value)))
3701 (concat "Result: "
3702 (edebug-safe-prin1-to-string edebug-previous-value)))))
84fc2cfa 3703
1fe3d507
DL
3704(defun edebug-previous-result ()
3705 "Print the previous result."
3706 (interactive)
3707 (message "%s" edebug-previous-result))
84fc2cfa 3708
f7359658 3709;;; Read, Eval and Print
84fc2cfa 3710
1fe3d507
DL
3711(defun edebug-eval-expression (edebug-expr)
3712 "Evaluate an expression in the outside environment.
3713If interactive, prompt for the expression.
84fc2cfa
ER
3714Print result in minibuffer."
3715 (interactive "xEval: ")
1fe3d507
DL
3716 (princ
3717 (edebug-outside-excursion
3718 (setq values (cons (edebug-eval edebug-expr) values))
3719 (edebug-safe-prin1-to-string (car values)))))
84fc2cfa
ER
3720
3721(defun edebug-eval-last-sexp ()
3722 "Evaluate sexp before point in the outside environment;
3723print value in minibuffer."
3724 (interactive)
1fe3d507 3725 (edebug-eval-expression (edebug-last-sexp)))
84fc2cfa
ER
3726
3727(defun edebug-eval-print-last-sexp ()
3728 "Evaluate sexp before point in the outside environment;
3729print value into current buffer."
3730 (interactive)
1fe3d507
DL
3731 (let* ((edebug-form (edebug-last-sexp))
3732 (edebug-result-string
3733 (edebug-outside-excursion
3734 (edebug-safe-prin1-to-string (edebug-safe-eval edebug-form))))
3735 (standard-output (current-buffer)))
3736 (princ "\n")
3737 ;; princ the string to get rid of quotes.
3738 (princ edebug-result-string)
3739 (princ "\n")
3740 ))
3741
f7359658 3742;;; Edebug Minor Mode
84fc2cfa 3743
1fe3d507
DL
3744;; Global GUD bindings for all emacs-lisp-mode buffers.
3745(define-key emacs-lisp-mode-map "\C-x\C-a\C-s" 'edebug-step-mode)
3746(define-key emacs-lisp-mode-map "\C-x\C-a\C-n" 'edebug-next-mode)
3747(define-key emacs-lisp-mode-map "\C-x\C-a\C-c" 'edebug-go-mode)
3748(define-key emacs-lisp-mode-map "\C-x\C-a\C-l" 'edebug-where)
3749
84fc2cfa
ER
3750
3751(defvar edebug-mode-map nil)
3752(if edebug-mode-map
3753 nil
3754 (progn
3755 (setq edebug-mode-map (copy-keymap emacs-lisp-mode-map))
3756 ;; control
1fe3d507
DL
3757 (define-key edebug-mode-map " " 'edebug-step-mode)
3758 (define-key edebug-mode-map "n" 'edebug-next-mode)
3759 (define-key edebug-mode-map "g" 'edebug-go-mode)
3760 (define-key edebug-mode-map "G" 'edebug-Go-nonstop-mode)
3761 (define-key edebug-mode-map "t" 'edebug-trace-mode)
3762 (define-key edebug-mode-map "T" 'edebug-Trace-fast-mode)
3763 (define-key edebug-mode-map "c" 'edebug-continue-mode)
3764 (define-key edebug-mode-map "C" 'edebug-Continue-fast-mode)
3765
3766 ;;(define-key edebug-mode-map "f" 'edebug-forward) not implemented
84fc2cfa
ER
3767 (define-key edebug-mode-map "f" 'edebug-forward-sexp)
3768 (define-key edebug-mode-map "h" 'edebug-goto-here)
3769
1fe3d507 3770 (define-key edebug-mode-map "I" 'edebug-instrument-callee)
84fc2cfa
ER
3771 (define-key edebug-mode-map "i" 'edebug-step-in)
3772 (define-key edebug-mode-map "o" 'edebug-step-out)
3773
1fe3d507 3774 ;; quitting and stopping
84fc2cfa 3775 (define-key edebug-mode-map "q" 'top-level)
1fe3d507 3776 (define-key edebug-mode-map "Q" 'edebug-top-level-nonstop)
84fc2cfa
ER
3777 (define-key edebug-mode-map "a" 'abort-recursive-edit)
3778 (define-key edebug-mode-map "S" 'edebug-stop)
3779
3780 ;; breakpoints
3781 (define-key edebug-mode-map "b" 'edebug-set-breakpoint)
3782 (define-key edebug-mode-map "u" 'edebug-unset-breakpoint)
3783 (define-key edebug-mode-map "B" 'edebug-next-breakpoint)
3784 (define-key edebug-mode-map "x" 'edebug-set-conditional-breakpoint)
1fe3d507 3785 (define-key edebug-mode-map "X" 'edebug-set-global-break-condition)
84fc2cfa
ER
3786
3787 ;; evaluation
1fe3d507 3788 (define-key edebug-mode-map "r" 'edebug-previous-result)
84fc2cfa
ER
3789 (define-key edebug-mode-map "e" 'edebug-eval-expression)
3790 (define-key edebug-mode-map "\C-x\C-e" 'edebug-eval-last-sexp)
3791 (define-key edebug-mode-map "E" 'edebug-visit-eval-list)
3792
3793 ;; views
3794 (define-key edebug-mode-map "w" 'edebug-where)
1fe3d507 3795 (define-key edebug-mode-map "v" 'edebug-view-outside) ;; maybe obsolete??
84fc2cfa 3796 (define-key edebug-mode-map "p" 'edebug-bounce-point)
1fe3d507 3797 (define-key edebug-mode-map "P" 'edebug-view-outside) ;; same as v
84fc2cfa 3798 (define-key edebug-mode-map "W" 'edebug-toggle-save-windows)
1fe3d507 3799
84fc2cfa
ER
3800 ;; misc
3801 (define-key edebug-mode-map "?" 'edebug-help)
3802 (define-key edebug-mode-map "d" 'edebug-backtrace)
3803
3804 (define-key edebug-mode-map "-" 'negative-argument)
1fe3d507
DL
3805
3806 ;; statistics
3807 (define-key edebug-mode-map "=" 'edebug-temp-display-freq-count)
3808
3809 ;; GUD bindings
3810 (define-key edebug-mode-map "\C-c\C-s" 'edebug-step-mode)
3811 (define-key edebug-mode-map "\C-c\C-n" 'edebug-next-mode)
3812 (define-key edebug-mode-map "\C-c\C-c" 'edebug-go-mode)
3813
3814 (define-key edebug-mode-map "\C-x " 'edebug-set-breakpoint)
3815 (define-key edebug-mode-map "\C-c\C-d" 'edebug-unset-breakpoint)
3816 (define-key edebug-mode-map "\C-c\C-t"
3817 (function (lambda () (edebug-set-breakpoint t))))
3818 (define-key edebug-mode-map "\C-c\C-l" 'edebug-where)
84fc2cfa
ER
3819 ))
3820
1fe3d507
DL
3821;; Autoloading these global bindings doesn't make sense because
3822;; they cannot be used anyway unless Edebug is already loaded and active.
3823
84fc2cfa
ER
3824(defvar global-edebug-prefix "\^XX"
3825 "Prefix key for global edebug commands, available from any buffer.")
3826
3827(defvar global-edebug-map nil
3828 "Global map of edebug commands, available from any buffer.")
3829
3830(if global-edebug-map
3831 nil
3832 (setq global-edebug-map (make-sparse-keymap))
3833
3834 (global-unset-key global-edebug-prefix)
3835 (global-set-key global-edebug-prefix global-edebug-map)
3836
1fe3d507
DL
3837 (define-key global-edebug-map " " 'edebug-step-mode)
3838 (define-key global-edebug-map "g" 'edebug-go-mode)
3839 (define-key global-edebug-map "G" 'edebug-Go-nonstop-mode)
3840 (define-key global-edebug-map "t" 'edebug-trace-mode)
3841 (define-key global-edebug-map "T" 'edebug-Trace-fast-mode)
3842 (define-key global-edebug-map "c" 'edebug-continue-mode)
3843 (define-key global-edebug-map "C" 'edebug-Continue-fast-mode)
3844
3845 ;; breakpoints
84fc2cfa 3846 (define-key global-edebug-map "b" 'edebug-set-breakpoint)
84fc2cfa 3847 (define-key global-edebug-map "u" 'edebug-unset-breakpoint)
1fe3d507
DL
3848 (define-key global-edebug-map "x" 'edebug-set-conditional-breakpoint)
3849 (define-key global-edebug-map "X" 'edebug-set-global-break-condition)
3850
3851 ;; views
84fc2cfa 3852 (define-key global-edebug-map "w" 'edebug-where)
1fe3d507
DL
3853 (define-key global-edebug-map "W" 'edebug-toggle-save-windows)
3854
3855 ;; quitting
84fc2cfa 3856 (define-key global-edebug-map "q" 'top-level)
1fe3d507
DL
3857 (define-key global-edebug-map "Q" 'edebug-top-level-nonstop)
3858 (define-key global-edebug-map "a" 'abort-recursive-edit)
84fc2cfa 3859
1fe3d507
DL
3860 ;; statistics
3861 (define-key global-edebug-map "=" 'edebug-display-freq-count)
3862 )
84fc2cfa
ER
3863
3864(defun edebug-help ()
3865 (interactive)
3866 (describe-function 'edebug-mode))
3867
84fc2cfa 3868(defun edebug-mode ()
1fe3d507
DL
3869 "Mode for Emacs Lisp buffers while in Edebug.
3870
3871In addition to all Emacs Lisp commands (except those that modify the
3872buffer) there are local and global key bindings to several Edebug
3873specific commands. E.g. `edebug-step-mode' is bound to \\[edebug-step-mode]
3874in the Edebug buffer and \\<global-map>\\[edebug-step-mode] in any buffer.
84fc2cfa 3875
1fe3d507 3876Also see bindings for the eval list buffer, *edebug*.
84fc2cfa 3877
1fe3d507 3878The edebug buffer commands:
84fc2cfa
ER
3879\\{edebug-mode-map}
3880
1fe3d507 3881Global commands prefixed by `global-edebug-prefix':
84fc2cfa
ER
3882\\{global-edebug-map}
3883
3884Options:
1fe3d507
DL
3885edebug-setup-hook
3886edebug-all-defs
3887edebug-all-forms
84fc2cfa 3888edebug-save-windows
1fe3d507 3889edebug-save-displayed-buffer-points
84fc2cfa
ER
3890edebug-initial-mode
3891edebug-trace
1fe3d507
DL
3892edebug-test-coverage
3893edebug-continue-kbd-macro
3894edebug-print-length
3895edebug-print-level
3896edebug-print-circle
3897edebug-on-error
3898edebug-on-quit
3899edebug-on-signal
3900edebug-unwrap-results
3901edebug-global-break-condition
84fc2cfa
ER
3902"
3903 (use-local-map edebug-mode-map))
3904
f7359658 3905;;; edebug eval list mode
84fc2cfa 3906
1fe3d507 3907;; A list of expressions and their evaluations is displayed in *edebug*.
84fc2cfa
ER
3908
3909(defun edebug-eval-result-list ()
3910 "Return a list of evaluations of edebug-eval-list"
3911 ;; Assumes in outside environment.
88668147
DL
3912 ;; Don't do any edebug things now.
3913 (let ((edebug-execution-mode 'Go-nonstop)
3914 (edebug-trace nil))
3915 (mapcar 'edebug-safe-eval edebug-eval-list)))
84fc2cfa
ER
3916
3917(defun edebug-eval-display-list (edebug-eval-result-list)
3918 ;; Assumes edebug-eval-buffer exists.
3919 (let ((edebug-eval-list-temp edebug-eval-list)
3920 (standard-output edebug-eval-buffer)
1fe3d507 3921 (edebug-comment-line
84fc2cfa 3922 (format ";%s\n" (make-string (- (window-width) 2) ?-))))
1fe3d507 3923 (set-buffer edebug-eval-buffer)
84fc2cfa
ER
3924 (erase-buffer)
3925 (while edebug-eval-list-temp
3926 (prin1 (car edebug-eval-list-temp)) (terpri)
3927 (prin1 (car edebug-eval-result-list)) (terpri)
1fe3d507 3928 (princ edebug-comment-line)
84fc2cfa
ER
3929 (setq edebug-eval-list-temp (cdr edebug-eval-list-temp))
3930 (setq edebug-eval-result-list (cdr edebug-eval-result-list)))
1fe3d507 3931 (edebug-pop-to-buffer edebug-eval-buffer)
84fc2cfa
ER
3932 ))
3933
3934(defun edebug-create-eval-buffer ()
3935 (if (not (and edebug-eval-buffer (buffer-name edebug-eval-buffer)))
3936 (progn
3937 (set-buffer (setq edebug-eval-buffer (get-buffer-create "*edebug*")))
3938 (edebug-eval-mode))))
3939
3940;; Should generalize this to be callable outside of edebug
3941;; with calls in user functions, e.g. (edebug-eval-display)
3942
3943(defun edebug-eval-display (edebug-eval-result-list)
3944 "Display expressions and evaluations in EVAL-LIST.
3945It modifies the context by popping up the eval display."
3946 (if edebug-eval-result-list
3947 (progn
3948 (edebug-create-eval-buffer)
84fc2cfa
ER
3949 (edebug-eval-display-list edebug-eval-result-list)
3950 )))
3951
3952(defun edebug-eval-redisplay ()
3953 "Redisplay eval list in outside environment.
3954May only be called from within edebug-recursive-edit."
3955 (edebug-create-eval-buffer)
84fc2cfa
ER
3956 (edebug-outside-excursion
3957 (edebug-eval-display-list (edebug-eval-result-list))
3958 ))
3959
3960(defun edebug-visit-eval-list ()
3961 (interactive)
3962 (edebug-eval-redisplay)
3963 (edebug-pop-to-buffer edebug-eval-buffer))
3964
3965
3966(defun edebug-update-eval-list ()
3967 "Replace the evaluation list with the sexps now in the eval buffer."
3968 (interactive)
3969 (let ((starting-point (point))
3970 new-list)
3971 (goto-char (point-min))
3972 ;; get the first expression
3973 (edebug-skip-whitespace)
3974 (if (not (eobp))
3975 (progn
3976 (forward-sexp 1)
3977 (setq new-list (cons (edebug-last-sexp) new-list))))
3978
3979 (while (re-search-forward "^;" nil t)
3980 (forward-line 1)
3981 (skip-chars-forward " \t\n\r")
3982 (if (and (/= ?\; (following-char))
3983 (not (eobp)))
3984 (progn
3985 (forward-sexp 1)
3986 (setq new-list (cons (edebug-last-sexp) new-list)))))
3987
3988 (setq edebug-eval-list (nreverse new-list))
3989 (edebug-eval-redisplay)
3990 (goto-char starting-point)))
3991
3992
3993(defun edebug-delete-eval-item ()
3994 "Delete the item under point and redisplay."
3995 ;; could add arg to do repeatedly
3996 (interactive)
3997 (if (re-search-backward "^;" nil 'nofail)
3998 (forward-line 1))
3999 (delete-region
4000 (point) (progn (re-search-forward "^;" nil 'nofail)
4001 (beginning-of-line)
4002 (point)))
4003 (edebug-update-eval-list))
4004
4005
4006
4007(defvar edebug-eval-mode-map nil
6392137f 4008 "Keymap for Edebug Eval mode. Superset of Lisp Interaction mode.")
84fc2cfa
ER
4009
4010(if edebug-eval-mode-map
4011 nil
4012 (setq edebug-eval-mode-map (copy-keymap lisp-interaction-mode-map))
4013
4014 (define-key edebug-eval-mode-map "\C-c\C-w" 'edebug-where)
4015 (define-key edebug-eval-mode-map "\C-c\C-d" 'edebug-delete-eval-item)
4016 (define-key edebug-eval-mode-map "\C-c\C-u" 'edebug-update-eval-list)
4017 (define-key edebug-eval-mode-map "\C-x\C-e" 'edebug-eval-last-sexp)
4018 (define-key edebug-eval-mode-map "\C-j" 'edebug-eval-print-last-sexp)
4019 )
4020
b7414395 4021(put 'edebug-eval-mode 'mode-class 'special)
84fc2cfa
ER
4022
4023(defun edebug-eval-mode ()
1fe3d507
DL
4024 "Mode for evaluation list buffer while in Edebug.
4025
4026In addition to all Interactive Emacs Lisp commands there are local and
4027global key bindings to several Edebug specific commands. E.g.
4028`edebug-step-mode' is bound to \\[edebug-step-mode] in the Edebug
4029buffer and \\<global-map>\\[edebug-step-mode] in any buffer.
84fc2cfa
ER
4030
4031Eval list buffer commands:
4032\\{edebug-eval-mode-map}
4033
1fe3d507 4034Global commands prefixed by global-edebug-prefix:
84fc2cfa
ER
4035\\{global-edebug-map}
4036"
4037 (lisp-interaction-mode)
4038 (setq major-mode 'edebug-eval-mode)
6392137f 4039 (setq mode-name "Edebug Eval")
84fc2cfa
ER
4040 (use-local-map edebug-eval-mode-map))
4041
f7359658 4042;;; Interface with standard debugger.
84fc2cfa 4043
1fe3d507
DL
4044;; (setq debugger 'edebug) ; to use the edebug debugger
4045;; (setq debugger 'debug) ; use the standard debugger
84fc2cfa 4046
1fe3d507
DL
4047;; Note that debug and its utilities must be byte-compiled to work,
4048;; since they depend on the backtrace looking a certain way. But
4049;; edebug is not dependent on this, yet.
84fc2cfa 4050
1fe3d507 4051(defun edebug (&optional edebug-arg-mode &rest debugger-args)
84fc2cfa 4052 "Replacement for debug.
1fe3d507 4053If we are running an edebugged function,
84fc2cfa 4054show where we last were. Otherwise call debug normally."
1fe3d507
DL
4055;; (message "entered: %s depth: %s edebug-recursion-depth: %s"
4056;; edebug-entered (recursion-depth) edebug-recursion-depth) (sit-for 1)
4057 (if (and edebug-entered ; anything active?
4058 (eq (recursion-depth) edebug-recursion-depth))
4059 (let (;; Where were we before the error occurred?
4060 (edebug-offset-index (car edebug-offset-indices))
4061 ;; Bind variables required by edebug-display
4062 (edebug-value (car debugger-args))
4063 edebug-breakpoints
4064 edebug-break-data
4065 edebug-break-condition
4066 edebug-global-break
4067 (edebug-break (null edebug-arg-mode)) ;; if called explicitly
4068 )
84fc2cfa 4069 (edebug-display)
1fe3d507
DL
4070 (if (eq edebug-arg-mode 'error)
4071 nil
4072 edebug-value))
84fc2cfa
ER
4073
4074 ;; Otherwise call debug normally.
4075 ;; Still need to remove extraneous edebug calls from stack.
1fe3d507 4076 (apply 'debug edebug-arg-mode debugger-args)
84fc2cfa
ER
4077 ))
4078
4079
4080(defun edebug-backtrace ()
4081 "Display a non-working backtrace. Better than nothing..."
4082 (interactive)
1fe3d507
DL
4083 (if (or (not edebug-backtrace-buffer)
4084 (null (buffer-name edebug-backtrace-buffer)))
4085 (setq edebug-backtrace-buffer
4086 (generate-new-buffer "*Backtrace*"))
4087 ;; else, could just display edebug-backtrace-buffer
4088 )
4089 (with-output-to-temp-buffer (buffer-name edebug-backtrace-buffer)
4090 (setq edebug-backtrace-buffer standard-output)
4091 (let ((print-escape-newlines t)
84fc2cfa 4092 (print-length 50)
1fe3d507 4093 last-ok-point)
84fc2cfa
ER
4094 (backtrace)
4095
1fe3d507
DL
4096 ;; Clean up the backtrace.
4097 ;; Not quite right for current edebug scheme.
4098 (set-buffer edebug-backtrace-buffer)
4099 (setq truncate-lines t)
84fc2cfa 4100 (goto-char (point-min))
84fc2cfa 4101 (setq last-ok-point (point))
1fe3d507 4102 (if t (progn
84fc2cfa
ER
4103
4104 ;; Delete interspersed edebug internals.
1fe3d507
DL
4105 (while (re-search-forward "^ \(?edebug" nil t)
4106 (beginning-of-line)
4107 (cond
4108 ((looking-at "^ \(edebug-after")
4109 ;; Previous lines may contain code, so just delete this line
4110 (setq last-ok-point (point))
4111 (forward-line 1)
4112 (delete-region last-ok-point (point)))
4113
4114 ((looking-at "^ edebug")
4115 (forward-line 1)
4116 (delete-region last-ok-point (point))
4117 )))
4118 )))))
84fc2cfa
ER
4119
4120\f
f7359658 4121;;; Trace display
84fc2cfa
ER
4122
4123(defun edebug-trace-display (buf-name fmt &rest args)
4124 "In buffer BUF-NAME, display FMT and ARGS at the end and make it visible.
4125The buffer is created if it does not exist.
1fe3d507
DL
4126You must include newlines in FMT to break lines, but one newline is appended."
4127;; e.g.
4128;; (edebug-trace-display "*trace-point*"
4129;; "saving: point = %s window-start = %s"
4130;; (point) (window-start))
dc0e03f3
RS
4131 (let* ((oldbuf (current-buffer))
4132 (selected-window (selected-window))
84fc2cfa 4133 (buffer (get-buffer-create buf-name))
1fe3d507
DL
4134 buf-window)
4135;; (message "before pop-to-buffer") (sit-for 1)
84fc2cfa 4136 (edebug-pop-to-buffer buffer)
1fe3d507
DL
4137 (setq truncate-lines t)
4138 (setq buf-window (selected-window))
4139 (goto-char (point-max))
4140 (insert (apply 'edebug-format fmt args) "\n")
4141 ;; Make it visible.
4142 (vertical-motion (- 1 (window-height)))
4143 (set-window-start buf-window (point))
4144 (goto-char (point-max))
4145;; (set-window-point buf-window (point))
4146;; (edebug-sit-for 0)
4147 (bury-buffer buffer)
dc0e03f3
RS
4148 (select-window selected-window)
4149 (set-buffer oldbuf))
1fe3d507
DL
4150 buf-name)
4151
4152
4153(defun edebug-trace (fmt &rest args)
4154 "Convenience call to edebug-trace-display using edebug-trace-buffer"
4155 (apply 'edebug-trace-display edebug-trace-buffer fmt args))
4156
4157\f
f7359658 4158;;; Frequency count and coverage
1fe3d507
DL
4159
4160(defun edebug-display-freq-count ()
4161 "Display the frequency count data for each line of the current
4162definition. The frequency counts are inserted as comment lines after
4163each line, and you can undo all insertions with one `undo' command.
4164
4165The counts are inserted starting under the `(' before an expression
4166or the `)' after an expression, or on the last char of a symbol.
4167The counts are only displayed when they differ from previous counts on
4168the same line.
4169
4170If coverage is being tested, whenever all known results of an expression
4171are `eq', the char `=' will be appended after the count
4172for that expression. Note that this is always the case for an
4173expression only evaluated once.
4174
4175To clear the frequency count and coverage data for a definition,
4176reinstrument it."
4177 (interactive)
4178 (let* ((function (edebug-form-data-symbol))
4179 (counts (get function 'edebug-freq-count))
4180 (coverages (get function 'edebug-coverage))
4181 (data (get function 'edebug))
4182 (def-mark (car data)) ; mark at def start
4183 (edebug-points (nth 2 data))
4184 (i (1- (length edebug-points)))
4185 (last-index)
4186 (first-index)
4187 (start-of-line)
4188 (start-of-count-line)
4189 (last-count)
4190 )
84fc2cfa 4191 (save-excursion
1fe3d507
DL
4192 ;; Traverse in reverse order so offsets are correct.
4193 (while (<= 0 i)
4194 ;; Start at last expression in line.
4195 (goto-char (+ def-mark (aref edebug-points i)))
4196 (beginning-of-line)
4197 (setq start-of-line (- (point) def-mark)
4198 last-index i)
4199
4200 ;; Find all indexes on same line.
4201 (while (and (<= 0 (setq i (1- i)))
4202 (<= start-of-line (aref edebug-points i))))
4203 ;; Insert all the indices for this line.
4204 (forward-line 1)
4205 (setq start-of-count-line (point)
4206 first-index i ; really last index for line above this one.
4207 last-count -1) ; cause first count to always appear.
4208 (insert ";#")
4209 ;; i == first-index still
4210 (while (<= (setq i (1+ i)) last-index)
4211 (let ((count (aref counts i))
4212 (coverage (aref coverages i))
4213 (col (save-excursion
4214 (goto-char (+ (aref edebug-points i) def-mark))
4215 (- (current-column)
4216 (if (= ?\( (following-char)) 0 1)))))
4217 (insert (make-string
4218 (max 0 (- col (- (point) start-of-count-line))) ?\ )
4219 (if (and (< 0 count)
4220 (not (memq coverage
4221 '(unknown ok-coverage))))
4222 "=" "")
4223 (if (= count last-count) "" (int-to-string count))
4224 " ")
4225 (setq last-count count)))
4226 (insert "\n")
4227 (setq i first-index)))))
4228
4229(defun edebug-temp-display-freq-count ()
4230 "Temporarily display the frequency count data for the current definition.
4231It is removed when you hit any char."
4232 ;; This seems not to work with Emacs 18.59. It undoes too far.
4233 (interactive)
4234 (let ((buffer-read-only nil))
4235 (undo-boundary)
4236 (edebug-display-freq-count)
4237 (setq unread-command-char (read-char))
4238 (undo)))
4239
4240\f
f7359658 4241;;; Menus
1fe3d507
DL
4242
4243(defun edebug-toggle (variable)
4244 (set variable (not (eval variable)))
4245 (message "%s: %s" variable (eval variable)))
4246
4247;; We have to require easymenu (even for Emacs 18) just so
4248;; the easy-menu-define macro call is compiled correctly.
4249(require 'easymenu)
4250
4251(defconst edebug-mode-menus
4252 '("Edebug"
4253 "----"
4254 ["Stop" edebug-stop t]
4255 ["Step" edebug-step-mode t]
4256 ["Next" edebug-next-mode t]
4257 ["Trace" edebug-trace-mode t]
4258 ["Trace Fast" edebug-Trace-fast-mode t]
4259 ["Continue" edebug-continue-mode t]
4260 ["Continue Fast" edebug-Continue-fast-mode t]
4261 ["Go" edebug-go-mode t]
4262 ["Go Nonstop" edebug-Go-nonstop-mode t]
4263 "----"
4264 ["Help" edebug-help t]
4265 ["Abort" abort-recursive-edit t]
4266 ["Quit to Top Level" top-level t]
4267 ["Quit Nonstop" edebug-top-level-nonstop t]
4268 "----"
4269 ("Jumps"
4270 ["Forward Sexp" edebug-forward-sexp t]
4271 ["Step In" edebug-step-in t]
4272 ["Step Out" edebug-step-out t]
4273 ["Goto Here" edebug-goto-here t])
4274
4275 ("Breaks"
4276 ["Set Breakpoint" edebug-set-breakpoint t]
4277 ["Unset Breakpoint" edebug-unset-breakpoint t]
4278 ["Set Conditional Breakpoint" edebug-set-conditional-breakpoint t]
4279 ["Set Global Break Condition" edebug-set-global-break-condition t]
4280 ["Show Next Breakpoint" edebug-next-breakpoint t])
4281
4282 ("Views"
4283 ["Where am I?" edebug-where t]
4284 ["Bounce to Current Point" edebug-bounce-point t]
4285 ["View Outside Windows" edebug-view-outside t]
4286 ["Previous Result" edebug-previous-result t]
4287 ["Show Backtrace" edebug-backtrace t]
4288 ["Display Freq Count" edebug-display-freq-count t])
4289
4290 ("Eval"
4291 ["Expression" edebug-eval-expression t]
4292 ["Last Sexp" edebug-eval-last-sexp t]
4293 ["Visit Eval List" edebug-visit-eval-list t])
4294
4295 ("Options"
4296 ["Edebug All Defs" edebug-all-defs t]
4297 ["Edebug All Forms" edebug-all-forms t]
4298 "----"
4299 ["Toggle Tracing" (edebug-toggle 'edebug-trace) t]
4300 ["Toggle Coverage Testing" (edebug-toggle 'edebug-test-coverage) t]
4301 ["Toggle Window Saving" edebug-toggle-save-windows t]
4302 ["Toggle Point Saving"
4303 (edebug-toggle 'edebug-save-displayed-buffer-points) t]
4304 ))
4305 "Lemacs style menus for Edebug.")
4306
4307\f
f7359658
RS
4308;;; Emacs version specific code
4309
1fe3d507
DL
4310;;; The default for all above is Emacs 18, because it is easier to compile
4311;;; Emacs 18 code in Emacs 19 than vice versa. This default will
4312;;; change once most people are using Emacs 19 or derivatives.
4313
4314;; Epoch specific code is in a separate file: edebug-epoch.el.
4315
4316;; The byte-compiler will complain about changes in number of arguments
4317;; to functions like mark and read-from-minibuffer. These warnings
4318;; may be ignored because the right call should always be made.
4319
100aa77c 4320(defun edebug-emacs-19-specific ()
1fe3d507
DL
4321
4322 (defalias 'edebug-window-live-p 'window-live-p)
4323
4324 ;; Mark takes an argument in Emacs 19.
4325 (defun edebug-mark ()
4326 (mark t));; Does this work for lemacs too?
4327
1fe3d507
DL
4328 (defun edebug-set-conditional-breakpoint (arg condition)
4329 "Set a conditional breakpoint at nearest sexp.
4330The condition is evaluated in the outside context.
4331With prefix argument, make it a temporary breakpoint."
4332 ;; (interactive "P\nxCondition: ")
4333 (interactive
4334 (list
4335 current-prefix-arg
4336 ;; Read condition as follows; getting previous condition is cumbersome:
4337 (let ((edebug-stop-point (edebug-find-stop-point)))
4338 (if edebug-stop-point
4339 (let* ((edebug-def-name (car edebug-stop-point))
4340 (index (cdr edebug-stop-point))
4341 (edebug-data (get edebug-def-name 'edebug))
4342 (edebug-breakpoints (car (cdr edebug-data)))
4343 (edebug-break-data (assq index edebug-breakpoints))
4344 (edebug-break-condition (car (cdr edebug-break-data)))
4345 (edebug-expression-history
4346 ;; Prepend the current condition, if any.
4347 (if edebug-break-condition
4348 (cons edebug-break-condition read-expression-history)
4349 read-expression-history)))
4350 (prog1
4351 (read-from-minibuffer
4352 "Condition: " nil read-expression-map t
4353 'edebug-expression-history)
4354 (setq read-expression-history edebug-expression-history)
4355 ))))))
4356 (edebug-modify-breakpoint t condition arg))
4357
4358 (defun edebug-eval-expression (edebug-expr)
4359 "Evaluate an expression in the outside environment.
4360If interactive, prompt for the expression.
4361Print result in minibuffer."
4362 (interactive (list (read-from-minibuffer
4363 "Eval: " nil read-expression-map t
4364 'read-expression-history)))
4365 (princ
4366 (edebug-outside-excursion
4367 (setq values (cons (edebug-eval edebug-expr) values))
4368 (edebug-safe-prin1-to-string (car values)))))
4369
f7359658
RS
4370 (easy-menu-define edebug-menu edebug-mode-map "Edebug menus" edebug-mode-menus)
4371 (if window-system
4372 (x-popup-menu nil (lookup-key edebug-mode-map [menu-bar Edebug])))
1fe3d507
DL
4373 )
4374
4375
4376(defun edebug-lemacs-specific ()
4377
4378 ;; We need to bind zmacs-regions to nil around all calls to `mark' and
4379 ;; `mark-marker' but don't bind it to nil before entering a recursive edit,
4380 ;; that is, don't interfere with the binding the user might see while
4381 ;; executing a command.
4382
4383 (defvar zmacs-regions)
4384
4385 (defun edebug-mark ()
4386 (let ((zmacs-regions nil))
4387 (mark)))
4388
4389 (defun edebug-mark-marker ()
4390 (let ((zmacs-regions nil));; for lemacs
4391 (mark-marker)))
4392
4393
4394 (defun edebug-mode-menu (event)
4395 (interactive "@event")
4396 (popup-menu edebug-mode-menus))
4397
4398 (define-key edebug-mode-map 'button3 'edebug-mode-menu)
4399 )
4400
4401(defun edebug-emacs-version-specific ()
4402 (cond
100aa77c 4403 ((string-match "Lucid" emacs-version);; Lucid Emacs
1fe3d507
DL
4404 (edebug-lemacs-specific))
4405
1fe3d507 4406 ((and (boundp 'epoch::version) epoch::version)
100aa77c
RS
4407 (require 'edebug-epoch))
4408
4409 ((not (string-match "^18" emacs-version))
4410 (edebug-emacs-19-specific))))
1fe3d507
DL
4411
4412(edebug-emacs-version-specific)
4413
4414\f
f7359658
RS
4415;;; Byte-compiler
4416
1fe3d507
DL
4417;; Extension for bytecomp to resolve undefined function references.
4418;; Requires new byte compiler.
4419
4420;; Reenable byte compiler warnings about unread-command-char and -event.
4421;; Disabled before edebug-recursive-edit.
4422(eval-when-compile
4423 (if edebug-unread-command-char-warning
4424 (put 'unread-command-char 'byte-obsolete-variable
4425 edebug-unread-command-char-warning))
4426 (if edebug-unread-command-event-warning
4427 (put 'unread-command-event 'byte-obsolete-variable
4428 edebug-unread-command-event-warning)))
4429
4430(eval-when-compile
4431 ;; The body of eval-when-compile seems to get evaluated with eval-defun.
4432 ;; We only want to evaluate when actually byte compiling.
4433 ;; But it is OK to evaluate as long as byte-compiler has been loaded.
4434 (if (featurep 'byte-compile) (progn
4435
4436 (defun byte-compile-resolve-functions (funcs)
4437 "Say it is OK for the named functions to be unresolved."
4438 (mapcar
4439 (function
4440 (lambda (func)
4441 (setq byte-compile-unresolved-functions
4442 (delq (assq func byte-compile-unresolved-functions)
4443 byte-compile-unresolved-functions))))
4444 funcs)
4445 nil)
4446
4447 '(defun byte-compile-resolve-free-references (vars)
4448 "Say it is OK for the named variables to be referenced."
4449 (mapcar
4450 (function
4451 (lambda (var)
4452 (setq byte-compile-free-references
4453 (delq var byte-compile-free-references))))
4454 vars)
4455 nil)
4456
4457 '(defun byte-compile-resolve-free-assignments (vars)
4458 "Say it is OK for the named variables to be assigned."
4459 (mapcar
4460 (function
4461 (lambda (var)
4462 (setq byte-compile-free-assignments
4463 (delq var byte-compile-free-assignments))))
4464 vars)
4465 nil)
4466
4467 (byte-compile-resolve-functions
4468 '(reporter-submit-bug-report
f7359658 4469 edebug-gensym ;; also in cl.el
1fe3d507
DL
4470 ;; Interfaces to standard functions.
4471 edebug-original-eval-defun
4472 edebug-original-read
4473 edebug-get-buffer-window
4474 edebug-mark
4475 edebug-mark-marker
4476 edebug-input-pending-p
4477 edebug-sit-for
4478 edebug-prin1-to-string
4479 edebug-format
1fe3d507
DL
4480 ;; lemacs
4481 zmacs-deactivate-region
4482 popup-menu
4483 ;; CL
4484 cl-macroexpand-all
f7359658 4485 ;; And believe it or not, the byte compiler doesn't know about:
1fe3d507
DL
4486 byte-compile-resolve-functions
4487 ))
4488
4489 '(byte-compile-resolve-free-references
4490 '(read-expression-history
4491 read-expression-map))
4492
4493 '(byte-compile-resolve-free-assignments
4494 '(read-expression-history))
4495
4496 )))
4497
4498\f
f7359658 4499;;; Autoloading of Edebug accessories
1fe3d507
DL
4500
4501(if (featurep 'cl)
4502 (add-hook 'edebug-setup-hook
4503 (function (lambda () (require 'cl-specs))))
4504 ;; The following causes cl-specs to be loaded if you load cl.el.
4505 (add-hook 'cl-load-hook
4506 (function (lambda () (require 'cl-specs)))))
4507
f7359658 4508;;; edebug-cl-read and cl-read are available from liberte@cs.uiuc.edu
1fe3d507
DL
4509(if (featurep 'cl-read)
4510 (add-hook 'edebug-setup-hook
4511 (function (lambda () (require 'edebug-cl-read))))
4512 ;; The following causes edebug-cl-read to be loaded when you load cl-read.el.
4513 (add-hook 'cl-read-load-hooks
4514 (function (lambda () (require 'edebug-cl-read)))))
4515
4516\f
f7359658 4517;;; Finalize Loading
1fe3d507
DL
4518
4519;;; Finally, hook edebug into the rest of Emacs.
4520;;; There are probably some other things that could go here.
4521
4522;; Install edebug read and eval functions.
4523(edebug-install-read-eval-functions)
84fc2cfa 4524
e8544af2
RS
4525(provide 'edebug)
4526
84fc2cfa 4527;;; edebug.el ends here