1 ;;; edebug.el --- a source-level debugger for Emacs Lisp -*- lexical-binding: t -*-
3 ;; Copyright (C) 1988-1995, 1997, 1999-2014 Free Software Foundation,
6 ;; Author: Daniel LaLiberte <liberte@holonexus.org>
7 ;; Maintainer: emacs-devel@gnu.org
8 ;; Keywords: lisp, tools, maint
10 ;; This file is part of GNU Emacs.
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 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
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.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;; This minor mode allows programmers to step through Emacs Lisp
28 ;; source code while executing functions. You can also set
29 ;; breakpoints, trace (stopping at each expression), evaluate
30 ;; expressions as if outside Edebug, reevaluate and display a list of
31 ;; expressions, trap errors normally caught by debug, and display a
32 ;; debug style backtrace.
34 ;;; Minimal Instructions
35 ;; =====================
37 ;; First evaluate a defun with C-M-x, then run the function. Step
38 ;; through the code with SPC, mark breakpoints with b, go until a
39 ;; breakpoint is reached with g, and quit execution with q. Use the
40 ;; "?" command in edebug to describe other commands.
41 ;; See the Emacs Lisp Reference Manual for more details.
43 ;; If you wish to change the default edebug global command prefix, change:
44 ;; (setq edebug-global-prefix "\C-xX")
46 ;; Edebug was written by
51 ;; liberte@holonexus.org
57 (eval-when-compile (require 'pcase
))
62 "A source-level debugger for Emacs Lisp."
66 (defcustom edebug-setup-hook nil
67 "Functions to call before edebug is used.
68 Each time it is set to a new value, Edebug will call those functions
69 once and then reset `edebug-setup-hook' to nil. You could use this
70 to load up Edebug specifications associated with a package you are
71 using, but only when you also use Edebug."
75 ;; edebug-all-defs and edebug-all-forms need to be autoloaded
76 ;; because the byte compiler binds them; as a result, if edebug
77 ;; is first loaded for a require in a compilation, they will be left unbound.
80 (defcustom edebug-all-defs nil
81 "If non-nil, evaluating defining forms instruments for Edebug.
82 This applies to `eval-defun', `eval-region', `eval-buffer', and
83 `eval-current-buffer'. `eval-region' is also called by
84 `eval-last-sexp', and `eval-print-last-sexp'.
86 You can use the command `edebug-all-defs' to toggle the value of this
87 variable. You may wish to make it local to each buffer with
88 \(make-local-variable 'edebug-all-defs) in your
89 `emacs-lisp-mode-hook'."
93 ;; edebug-all-defs and edebug-all-forms need to be autoloaded
94 ;; because the byte compiler binds them; as a result, if edebug
95 ;; is first loaded for a require in a compilation, they will be left unbound.
98 (defcustom edebug-all-forms nil
99 "Non-nil means evaluation of all forms will instrument for Edebug.
100 This doesn't apply to loading or evaluations in the minibuffer.
101 Use the command `edebug-all-forms' to toggle the value of this option."
105 (defcustom edebug-eval-macro-args nil
106 "Non-nil means all macro call arguments may be evaluated.
107 If this variable is nil, the default, Edebug will *not* wrap
108 macro call arguments as if they will be evaluated.
109 For each macro, an `edebug-form-spec' overrides this option.
110 So to specify exceptions for macros that have some arguments evaluated
111 and some not, use `def-edebug-spec' to specify an `edebug-form-spec'."
115 (defcustom edebug-save-windows t
116 "If non-nil, Edebug saves and restores the window configuration.
117 That takes some time, so if your program does not care what happens to
118 the window configurations, it is better to set this variable to nil.
120 If the value is a list, only the listed windows are saved and
123 `edebug-toggle-save-windows' may be used to change this variable."
124 :type
'(choice boolean
(repeat string
))
127 (defcustom edebug-save-displayed-buffer-points nil
128 "If non-nil, save and restore point in all displayed buffers.
130 Saving and restoring point in other buffers is necessary if you are
131 debugging code that changes the point of a buffer that is displayed
132 in a non-selected window. If Edebug or the user then selects the
133 window, the buffer's point will be changed to the window's point.
135 Saving and restoring point in all buffers is expensive, since it
136 requires selecting each window twice, so enable this only if you
141 (defcustom edebug-initial-mode
'step
142 "Initial execution mode for Edebug, if non-nil.
143 If this variable is non-nil, it specifies the initial execution mode
144 for Edebug when it is first activated. Possible values are step, next,
145 go, Go-nonstop, trace, Trace-fast, continue, and Continue-fast."
146 :type
'(choice (const step
) (const next
) (const go
)
147 (const Go-nonstop
) (const trace
)
148 (const Trace-fast
) (const continue
)
149 (const Continue-fast
))
152 (defcustom edebug-trace nil
153 "Non-nil means display a trace of function entry and exit.
154 Tracing output is displayed in a buffer named `*edebug-trace*', one
155 function entry or exit per line, indented by the recursion level.
157 You can customize by replacing functions `edebug-print-trace-before'
158 and `edebug-print-trace-after'."
162 (defcustom edebug-test-coverage nil
163 "If non-nil, Edebug tests coverage of all expressions debugged.
164 This is done by comparing the result of each expression with the
165 previous result. Coverage is considered OK if two different
168 Use `edebug-display-freq-count' to display the frequency count and
169 coverage information for a definition."
173 (defcustom edebug-continue-kbd-macro nil
174 "If non-nil, continue defining or executing any keyboard macro.
175 Use this with caution since it is not debugged."
180 (defcustom edebug-print-length
50
181 "If non-nil, default value of `print-length' for printing results in Edebug."
184 (defcustom edebug-print-level
50
185 "If non-nil, default value of `print-level' for printing results in Edebug."
188 (defcustom edebug-print-circle t
189 "If non-nil, default value of `print-circle' for printing results in Edebug."
193 (defcustom edebug-unwrap-results nil
194 "Non-nil if Edebug should unwrap results of expressions.
195 That is, Edebug will try to remove its own instrumentation from the result.
196 This is useful when debugging macros where the results of expressions
197 are instrumented expressions. But don't do this when results might be
198 circular or an infinite loop will result."
202 (defcustom edebug-on-error t
203 "Value bound to `debug-on-error' while Edebug is active.
205 If `debug-on-error' is non-nil, that value is still used.
207 If the value is a list of signal names, Edebug will stop when any of
208 these errors are signaled from Lisp code whether or not the signal is
209 handled by a `condition-case'. This option is useful for debugging
210 signals that *are* handled since they would otherwise be missed.
211 After execution is resumed, the error is signaled again."
212 :type
'(choice (const :tag
"off")
213 (repeat :menu-tag
"When"
215 (symbol :format
"%v"))
216 (const :tag
"always" t
))
219 (defcustom edebug-on-quit t
220 "Value bound to `debug-on-quit' while Edebug is active."
224 (defcustom edebug-global-break-condition nil
225 "If non-nil, an expression to test for at every stop point.
226 If the result is non-nil, then break. Errors are ignored."
230 (defcustom edebug-sit-for-seconds
1
231 "Number of seconds to pause when execution mode is `trace' or `continue'."
235 ;;; Form spec utilities.
237 (defun get-edebug-spec (symbol)
238 ;; Get the spec of symbol resolving all indirection.
243 (and (symbolp indirect
)
245 (function-get indirect
'edebug-form-spec
'macro
))))
246 ;; (edebug-trace "indirection: %s" edebug-form-spec)
247 (setq spec indirect
))
251 (defun edebug-basic-spec (spec)
252 "Return t if SPEC uses only extant spec symbols.
253 An extant spec symbol is a symbol that is not a function and has a
254 `edebug-form-spec' property."
258 (unless (edebug-basic-spec (car spec
)) (throw 'basic nil
))
259 (setq spec
(cdr spec
)))
262 (unless (functionp spec
) (function-get spec
'edebug-form-spec
)))))
266 (defun edebug-lambda-list-keywordp (object)
267 "Return t if OBJECT is a lambda list keyword.
268 A lambda list keyword is a symbol that starts with `&'."
269 (and (symbolp object
)
270 (= ?
& (aref (symbol-name object
) 0))))
273 (defun edebug-last-sexp ()
274 ;; Return the last sexp before point in current buffer.
275 ;; Assumes Emacs Lisp syntax is active.
284 (defun edebug-window-list ()
285 "Return a list of windows, in order of `next-window'."
286 ;; This doesn't work for epoch.
288 (walk-windows (lambda (w) (push w window-list
)))
289 (nreverse window-list
)))
292 '(defun edebug-two-window-p ()
293 "Return t if there are two windows."
294 (and (not (one-window-p))
295 (eq (selected-window)
296 (next-window (next-window)))))
298 (defun edebug-sort-alist (alist function
)
299 ;; Return the ALIST sorted with comparison function FUNCTION.
300 ;; This uses 'sort so the sorting is destructive.
301 (sort alist
(function
303 (funcall function
(car e1
) (car e2
))))))
306 '(defmacro edebug-save-restriction
(&rest body
)
307 "Evaluate BODY while saving the current buffers restriction.
308 BODY may change buffer outside of current restriction, unlike
309 save-restriction. BODY may change the current buffer,
310 and the restriction will be restored to the original buffer,
311 and the current buffer remains current.
312 Return the result of the last expression in BODY."
314 `(let ((edebug:s-r-beg
(point-min-marker))
315 (edebug:s-r-end
(point-max-marker)))
318 (with-current-buffer (marker-buffer edebug
:s-r-beg
)
319 (narrow-to-region edebug
:s-r-beg edebug
:s-r-end
)))))
323 (defconst edebug-trace-buffer
"*edebug-trace*"
324 "Name of the buffer to put trace info in.")
326 (defun edebug-pop-to-buffer (buffer &optional window
)
327 ;; Like pop-to-buffer, but select window where BUFFER was last shown.
328 ;; Select WINDOW if it is provided and still exists. Otherwise,
329 ;; if buffer is currently shown in several windows, choose one.
330 ;; Otherwise, find a new window, possibly splitting one.
331 ;; FIXME: We should probably just be using `pop-to-buffer'.
334 ((and (edebug-window-live-p window
)
335 (eq (window-buffer window
) buffer
))
337 ((eq (window-buffer) buffer
)
338 ;; Selected window already displays BUFFER.
340 ((get-buffer-window buffer
0))
341 ((one-window-p 'nomini
)
342 ;; When there's one window only, split it.
343 (split-window (minibuffer-selected-window)))
344 ((let ((trace-window (get-buffer-window edebug-trace-buffer
)))
346 (dolist (elt (window-list nil
'nomini
))
347 (unless (or (eq elt
(selected-window)) (eq elt trace-window
)
348 (window-dedicated-p elt
))
349 ;; Found a non-dedicated window not showing
350 ;; `edebug-trace-buffer', use it.
351 (throw 'found elt
))))))
352 ;; All windows are dedicated or show `edebug-trace-buffer', split
354 (t (split-window (minibuffer-selected-window)))))
355 (set-window-buffer window buffer
)
356 (select-window window
)
357 (set-window-hscroll window
0)) ;; should this be??
359 (defun edebug-get-displayed-buffer-points ()
360 ;; Return a list of buffer point pairs, for all displayed buffers.
362 (walk-windows (lambda (w)
363 (unless (eq w
(selected-window))
364 (push (cons (window-buffer w
)
370 (defun edebug-set-buffer-points (buffer-points)
371 ;; Restore the buffer-points created by edebug-get-displayed-buffer-points.
373 (mapcar (lambda (buf-point)
374 (when (buffer-live-p (car buf-point
))
375 (set-buffer (car buf-point
))
376 (goto-char (cdr buf-point
))))
379 (defun edebug-current-windows (which-windows)
380 ;; Get either a full window configuration or some window information.
381 (if (listp which-windows
)
382 (mapcar (function (lambda (window)
383 (if (edebug-window-live-p window
)
385 (window-buffer window
)
386 (window-point window
)
387 (window-start window
)
388 (window-hscroll window
)))))
390 (current-window-configuration)))
392 (defun edebug-set-windows (window-info)
393 ;; Set either a full window configuration or some window information.
394 (if (listp window-info
)
396 (lambda (one-window-info)
399 (lambda (window buffer point start hscroll
)
400 (if (edebug-window-live-p window
)
402 (set-window-buffer window buffer
)
403 (set-window-point window point
)
404 (set-window-start window start
)
405 (set-window-hscroll window hscroll
)))))
408 (set-window-configuration window-info
)))
410 ;;; Redefine read and eval functions
411 ;; read is redefined to maybe instrument forms.
412 ;; eval-defun is redefined to check edebug-all-forms and edebug-all-defs.
414 ;; Save the original read function
415 (defalias 'edebug-original-read
416 (symbol-function (if (fboundp 'edebug-original-read
)
417 'edebug-original-read
'read
)))
419 (defun edebug-read (&optional stream
)
420 "Read one Lisp expression as text from STREAM, return as Lisp object.
421 If STREAM is nil, use the value of `standard-input' (which see).
422 STREAM or the value of `standard-input' may be:
423 a buffer (read from point and advance it)
424 a marker (read from where it points and advance it)
425 a function (call it with no arguments for each character,
426 call it with a char as argument to push a char back)
427 a string (takes text from string, starting at the beginning)
428 t (read text line using minibuffer and use it).
430 This version, from Edebug, maybe instruments the expression. But the
431 STREAM must be the current buffer to do so. Whether it instruments is
432 also dependent on the values of the option `edebug-all-defs' and
433 the option `edebug-all-forms'."
434 (or stream
(setq stream standard-input
))
435 (if (eq stream
(current-buffer))
436 (edebug-read-and-maybe-wrap-form)
437 (edebug-original-read stream
)))
439 (or (fboundp 'edebug-original-eval-defun
)
440 (defalias 'edebug-original-eval-defun
(symbol-function 'eval-defun
)))
442 (defvar edebug-result
) ; The result of the function call returned by body.
444 ;; We should somehow arrange to be able to do this
445 ;; without actually replacing the eval-defun command.
446 (defun edebug-eval-defun (edebug-it)
447 "Evaluate the top-level form containing point, or after point.
449 If the current defun is actually a call to `defvar', then reset the
450 variable using its initial value expression even if the variable
451 already has some other value. (Normally `defvar' does not change the
452 variable's value if it already has a value.) Treat `defcustom'
453 similarly. Reinitialize the face according to `defface' specification.
455 With a prefix argument, instrument the code for Edebug.
457 Setting option `edebug-all-defs' to a non-nil value reverses the meaning
458 of the prefix argument. Code is then instrumented when this function is
459 invoked without a prefix argument.
461 If acting on a `defun' for FUNCTION, and the function was instrumented,
462 `Edebug: FUNCTION' is printed in the minibuffer. If not instrumented,
463 just FUNCTION is printed.
465 If not acting on a `defun', the result of evaluation is displayed in
468 (let* ((edebugging (not (eq (not edebug-it
) (not edebug-all-defs
))))
471 (let ((edebug-all-forms edebugging
)
472 (edebug-all-defs (eq edebug-all-defs
(not edebug-it
))))
473 (edebug-read-top-level-form))))
474 ;; This should be consistent with `eval-defun-1', but not the
475 ;; same, since that gets a macroexpanded form.
476 (cond ((and (eq (car form
) 'defvar
)
477 (cdr-safe (cdr-safe form
)))
478 ;; Force variable to be bound.
479 (makunbound (nth 1 form
)))
480 ((and (eq (car form
) 'defcustom
)
481 (default-boundp (nth 1 form
)))
482 ;; Force variable to be bound.
483 ;; FIXME: Shouldn't this use the :setter or :initializer?
484 (set-default (nth 1 form
) (eval (nth 2 form
) lexical-binding
)))
485 ((eq (car form
) 'defface
)
487 (setq face-new-frame-defaults
488 (assq-delete-all (nth 1 form
) face-new-frame-defaults
))
489 (put (nth 1 form
) 'face-defface-spec nil
)
490 (put (nth 1 form
) 'face-documentation
(nth 3 form
))
491 ;; See comments in `eval-defun-1' for purpose of code below
492 (setq form
(prog1 `(prog1 ,form
493 (put ',(nth 1 form
) 'saved-face
494 ',(get (nth 1 form
) 'saved-face
))
495 (put ',(nth 1 form
) 'customized-face
497 (put (nth 1 form
) 'saved-face nil
)))))
498 (setq edebug-result
(eval (eval-sexp-add-defvars form
) lexical-binding
))
501 (princ edebug-result
)
502 (let ((str (eval-expression-print-format edebug-result
)))
503 (if str
(princ str
))))
508 (defalias 'edebug-defun
'edebug-eval-top-level-form
)
511 (defun edebug-eval-top-level-form ()
512 "Evaluate the top level form point is in, stepping through with Edebug.
513 This is like `eval-defun' except that it steps the code for Edebug
514 before evaluating it. It displays the value in the echo area
515 using `eval-expression' (which see).
517 If you do this on a function definition such as a defun or defmacro,
518 it defines the function and instruments its definition for Edebug,
519 so it will do Edebug stepping when called later. It displays
520 `Edebug: FUNCTION' in the echo area to indicate that FUNCTION is now
521 instrumented for Edebug.
523 If the current defun is actually a call to `defvar' or `defcustom',
524 evaluating it this way resets the variable using its initial value
525 expression even if the variable already has some other value.
526 \(Normally `defvar' and `defcustom' do not alter the value if there
530 ;; Bind edebug-all-forms only while reading, not while evalling
531 ;; but this causes problems while edebugging edebug.
532 (let ((edebug-all-forms t
)
534 (eval-sexp-add-defvars
535 (edebug-read-top-level-form)))))
538 (defun edebug-read-top-level-form ()
539 (let ((starting-point (point)))
543 (edebug-read-and-maybe-wrap-form)
544 ;; Recover point, but only if no error occurred.
545 (goto-char starting-point
))))
548 ;; Compatibility with old versions.
549 (defalias 'edebug-all-defuns
'edebug-all-defs
)
552 (defun edebug-all-defs ()
553 "Toggle edebugging of all definitions."
555 (setq edebug-all-defs
(not edebug-all-defs
))
556 (message "Edebugging all definitions is %s."
557 (if edebug-all-defs
"on" "off")))
561 (defun edebug-all-forms ()
562 "Toggle edebugging of all forms."
564 (setq edebug-all-forms
(not edebug-all-forms
))
565 (message "Edebugging all forms is %s."
566 (if edebug-all-forms
"on" "off")))
569 (defun edebug-install-read-eval-functions ()
571 ;; Don't install if already installed.
572 (unless load-read-function
573 (setq load-read-function
'edebug-read
)
574 (defalias 'eval-defun
'edebug-eval-defun
)))
576 (defun edebug-uninstall-read-eval-functions ()
578 (setq load-read-function nil
)
579 (defalias 'eval-defun
(symbol-function 'edebug-original-eval-defun
)))
582 ;;; Edebug internal data
584 ;; The internal data that is needed for edebugging is kept in the
585 ;; buffer-local variable `edebug-form-data'.
587 (defvar-local edebug-form-data nil
588 "A list of entries associating symbols with buffer regions.
589 Each entry is an `edebug--form-data' struct with fields:
590 SYMBOL, BEGIN-MARKER, and END-MARKER. The markers
591 are at the beginning and end of an entry level form and SYMBOL is
592 a symbol that holds all edebug related information for the form on its
595 In the future (haha!), the symbol will be irrelevant and edebug data will
596 be stored in the definitions themselves rather than in the property
599 (cl-defstruct (edebug--form-data
600 ;; Some callers expect accessors to return nil when passed nil.
602 (:constructor edebug--make-form-data-entry
(name begin end
))
603 (:predicate nil
) (:constructor nil
) (:copier nil
))
606 (defsubst edebug-set-form-data-entry
(entry name begin end
)
607 (setf (edebug--form-data-name entry
) name
) ;; In case name is changed.
608 (set-marker (edebug--form-data-begin entry
) begin
)
609 (set-marker (edebug--form-data-end entry
) end
))
611 (defun edebug-get-form-data-entry (pnt &optional end-point
)
612 ;; Find the edebug form data entry which is closest to PNT.
613 ;; If END-POINT is supplied, match must be exact.
614 ;; Return `nil' if none found.
615 (let ((rest edebug-form-data
)
617 (closest-dist 999999)) ;; Need maxint here.
618 (while (and rest
(< 0 closest-dist
))
619 (let* ((entry (car rest
))
620 (begin (edebug--form-data-begin entry
))
621 (dist (- pnt begin
)))
622 (setq rest
(cdr rest
))
624 (< dist closest-dist
)
626 (= end-point
(edebug--form-data-end entry
)))
627 (<= pnt
(edebug--form-data-end entry
)))
628 (setq closest-dist dist
629 closest-entry entry
))))
632 ;; Also need to find all contained entries,
633 ;; and find an entry given a symbol, which should be just assq.
635 (defun edebug-form-data-symbol ()
636 "Return the edebug data symbol of the form where point is in.
637 If point is not inside a edebuggable form, cause error."
638 (or (edebug--form-data-name (edebug-get-form-data-entry (point)))
639 (error "Not inside instrumented form")))
641 (defun edebug-make-top-form-data-entry (new-entry)
642 ;; Make NEW-ENTRY the first element in the `edebug-form-data' list.
643 (edebug-clear-form-data-entry new-entry
)
644 (push new-entry edebug-form-data
))
646 (defun edebug-clear-form-data-entry (entry)
647 "If non-nil, clear ENTRY out of the form data.
648 Maybe clear the markers and delete the symbol's edebug property?"
651 ;; Instead of this, we could just find all contained forms.
652 ;; (put (car entry) 'edebug nil) ;
653 ;; (mapcar 'edebug-clear-form-data-entry ; dangerous
654 ;; (get (car entry) 'edebug-dependents))
655 ;; (set-marker (nth 1 entry) nil)
656 ;; (set-marker (nth 2 entry) nil)
657 (setq edebug-form-data
(delq entry edebug-form-data
)))))
661 (defun edebug-syntax-error (&rest args
)
662 ;; Signal an invalid-read-syntax with ARGS.
663 (signal 'invalid-read-syntax args
))
666 (defconst edebug-read-syntax-table
667 ;; Lookup table for significant characters indicating the class of the
668 ;; token that follows. This is not a \"real\" syntax table.
669 (let ((table (make-char-table 'syntax-table
'symbol
))
672 (aset table i
'space
)
674 (aset table ?\
( 'lparen
)
675 (aset table ?\
) 'rparen
)
676 (aset table ?
\' 'quote
)
677 (aset table ?\
` 'backquote
)
678 (aset table ?\
, 'comma
)
679 (aset table ?
\" 'string
)
680 (aset table ?
\? 'char
)
681 (aset table ?\
[ 'lbracket
)
682 (aset table ?\
] 'rbracket
)
683 (aset table ?\.
'dot
)
684 (aset table ?\
# 'hash
)
685 ;; We treat numbers as symbols, because of confusion with -, -1, and 1-.
686 ;; We don't care about any other chars since they won't be seen.
689 (defun edebug-next-token-class ()
690 ;; Move to the next token and return its class. We only care about
691 ;; lparen, rparen, dot, quote, backquote, comma, string, char, vector,
693 (edebug-skip-whitespace)
694 (if (and (eq (following-char) ?.
)
697 (or (and (eq (aref edebug-read-syntax-table
(following-char))
699 (not (= (following-char) ?\
;)))
700 (memq (following-char) '(?\
, ?\.
)))))
702 (aref edebug-read-syntax-table
(following-char))))
705 (defun edebug-skip-whitespace ()
706 ;; Leave point before the next token, skipping white space and comments.
707 (skip-chars-forward " \t\r\n\f")
708 (while (= (following-char) ?\
;)
709 (skip-chars-forward "^\n") ; skip the comment
710 (skip-chars-forward " \t\r\n\f")))
713 ;; Mostly obsolete reader; still used in one case.
715 (defun edebug-read-sexp ()
716 ;; Read one sexp from the current buffer starting at point.
717 ;; Leave point immediately after it. A sexp can be a list or atom.
718 ;; An atom is a symbol (or number), character, string, or vector.
719 ;; This works for reading anything legitimate, but it
720 ;; is gummed up by parser inconsistencies (bugs?)
721 (let ((class (edebug-next-token-class)))
723 ;; read goes one too far if a (possibly quoted) string or symbol
724 ;; is immediately followed by non-whitespace.
725 ((eq class
'symbol
) (edebug-original-read (current-buffer)))
726 ((eq class
'string
) (edebug-original-read (current-buffer)))
727 ((eq class
'quote
) (forward-char 1)
728 (list 'quote
(edebug-read-sexp)))
729 ((eq class
'backquote
)
730 (list '\
` (edebug-read-sexp)))
732 (list '\
, (edebug-read-sexp)))
733 (t ; anything else, just read it.
734 (edebug-original-read (current-buffer))))))
736 ;;; Offsets for reader
738 ;; Define a structure to represent offset positions of expressions.
739 ;; Each offset structure looks like: (before . after) for constituents,
740 ;; or for structures that have elements: (before <subexpressions> . after)
741 ;; where the <subexpressions> are the offset structures for subexpressions
742 ;; including the head of a list.
743 (defvar edebug-offsets nil
)
745 ;; Stack of offset structures in reverse order of the nesting.
746 ;; This is used to get back to previous levels.
747 (defvar edebug-offsets-stack nil
)
748 (defvar edebug-current-offset nil
) ; Top of the stack, for convenience.
750 ;; We must store whether we just read a list with a dotted form that
751 ;; is itself a list. This structure will be condensed, so the offsets
752 ;; must also be condensed.
753 (defvar edebug-read-dotted-list nil
)
755 (defsubst edebug-initialize-offsets
()
756 ;; Reinitialize offset recording.
757 (setq edebug-current-offset nil
))
759 (defun edebug-store-before-offset (point)
760 ;; Add a new offset pair with POINT as the before offset.
761 (let ((new-offset (list point
)))
762 (if edebug-current-offset
763 (setcdr edebug-current-offset
764 (cons new-offset
(cdr edebug-current-offset
)))
765 ;; Otherwise, we are at the top level, so initialize.
766 (setq edebug-offsets new-offset
767 edebug-offsets-stack nil
768 edebug-read-dotted-list nil
))
769 ;; Cons the new offset to the front of the stack.
770 (setq edebug-offsets-stack
(cons new-offset edebug-offsets-stack
)
771 edebug-current-offset new-offset
)
774 (defun edebug-store-after-offset (point)
775 ;; Finalize the current offset struct by reversing it and
776 ;; store POINT as the after offset.
777 (if (not edebug-read-dotted-list
)
778 ;; Just reverse the offsets of all subexpressions.
779 (setcdr edebug-current-offset
(nreverse (cdr edebug-current-offset
)))
781 ;; We just read a list after a dot, which will be abbreviated out.
782 (setq edebug-read-dotted-list nil
)
783 ;; Drop the corresponding offset pair.
784 ;; That is, nconc the reverse of the rest of the offsets
785 ;; with the cdr of last offset.
786 (setcdr edebug-current-offset
787 (nconc (nreverse (cdr (cdr edebug-current-offset
)))
788 (cdr (car (cdr edebug-current-offset
))))))
790 ;; Now append the point using nconc.
791 (setq edebug-current-offset
(nconc edebug-current-offset point
))
793 (setq edebug-offsets-stack
(cdr edebug-offsets-stack
)
794 edebug-current-offset
(car edebug-offsets-stack
)))
796 (defun edebug-ignore-offset ()
797 ;; Ignore the last created offset pair.
798 (setcdr edebug-current-offset
(cdr (cdr edebug-current-offset
))))
800 (defmacro edebug-storing-offsets
(point &rest body
)
801 (declare (debug (form body
)) (indent 1))
804 (edebug-store-before-offset ,point
)
806 (edebug-store-after-offset (point))))
809 ;;; Reader for Emacs Lisp.
811 ;; Uses edebug-next-token-class (and edebug-skip-whitespace) above.
813 (defconst edebug-read-alist
814 '((symbol . edebug-read-symbol
)
815 (lparen . edebug-read-list
)
816 (string . edebug-read-string
)
817 (quote . edebug-read-quote
)
818 (backquote . edebug-read-backquote
)
819 (comma . edebug-read-comma
)
820 (lbracket . edebug-read-vector
)
821 (hash . edebug-read-function
)
824 (defun edebug-read-storing-offsets (stream)
825 (let (edebug-read-dotted-list) ; see edebug-store-after-offset
826 (edebug-storing-offsets (point)
828 (or (cdr (assq (edebug-next-token-class) edebug-read-alist
))
829 ;; anything else, just read it.
830 'edebug-original-read
)
833 (defun edebug-read-symbol (stream)
834 (edebug-original-read stream
))
836 (defun edebug-read-string (stream)
837 (edebug-original-read stream
))
839 (defun edebug-read-quote (stream)
840 ;; Turn 'thing into (quote thing)
843 (edebug-storing-offsets (1- (point)) 'quote
)
844 (edebug-read-storing-offsets stream
)))
846 (defun edebug-read-backquote (stream)
847 ;; Turn `thing into (\` thing)
850 (edebug-storing-offsets (1- (point)) '\
`)
851 (edebug-read-storing-offsets stream
)))
853 (defun edebug-read-comma (stream)
854 ;; Turn ,thing into (\, thing). Handle ,@ and ,. also.
855 (let ((opoint (point)))
858 (cond ((eq (following-char) ?\.
)
861 ((eq (following-char) ?\
@)
864 ;; Generate the same structure of offsets we would have
865 ;; if the resulting list appeared verbatim in the input text.
867 (edebug-storing-offsets opoint symbol
)
868 (edebug-read-storing-offsets stream
)))))
870 (defun edebug-read-function (stream)
871 ;; Turn #'thing into (function thing)
873 (cond ((eq ?
\' (following-char))
876 (edebug-storing-offsets (- (point) 2) 'function
)
877 (edebug-read-storing-offsets stream
)))
878 ((memq (following-char) '(?
: ?B ?O ?X ?b ?o ?x ?
1 ?
2 ?
3 ?
4 ?
5 ?
6
881 (edebug-original-read stream
))
882 (t (edebug-syntax-error "Bad char after #"))))
884 (defun edebug-read-list (stream)
885 (forward-char 1) ; skip \(
888 (while (not (memq (edebug-next-token-class) '(rparen dot
)))
889 (push (edebug-read-storing-offsets stream
) elements
))
890 (setq elements
(nreverse elements
))
891 (if (eq 'dot
(edebug-next-token-class))
893 (forward-char 1) ; skip \.
894 (setq dotted-form
(edebug-read-storing-offsets stream
))
895 elements
(nconc elements dotted-form
)
896 (if (not (eq (edebug-next-token-class) 'rparen
))
897 (edebug-syntax-error "Expected `)'"))
898 (setq edebug-read-dotted-list
(listp dotted-form
))
901 (forward-char 1) ; skip \)
904 (defun edebug-read-vector (stream)
905 (forward-char 1) ; skip \[
908 (while (not (eq 'rbracket
(edebug-next-token-class)))
909 (push (edebug-read-storing-offsets stream
) elements
))
910 (apply 'vector
(nreverse elements
)))
911 (forward-char 1) ; skip \]
914 ;;; Cursors for traversal of list and vector elements with offsets.
916 (defvar edebug-dotted-spec nil
)
918 (defun edebug-new-cursor (expressions offsets
)
919 ;; Return a new cursor for EXPRESSIONS with OFFSETS.
920 (if (vectorp expressions
)
921 (setq expressions
(append expressions nil
)))
922 (cons expressions offsets
))
924 (defsubst edebug-set-cursor
(cursor expressions offsets
)
925 ;; Set the CURSOR's EXPRESSIONS and OFFSETS to the given.
926 ;; Return the cursor.
927 (setcar cursor expressions
)
928 (setcdr cursor offsets
)
931 (defun edebug-copy-cursor (cursor)
932 ;; Copy the cursor using the same object and offsets.
933 (cons (car cursor
) (cdr cursor
)))
935 (defsubst edebug-cursor-expressions
(cursor)
937 (defsubst edebug-cursor-offsets
(cursor)
940 (defsubst edebug-empty-cursor
(cursor)
941 ;; Return non-nil if CURSOR is empty - meaning no more elements.
944 (defsubst edebug-top-element
(cursor)
945 ;; Return the top element at the cursor.
946 ;; Assumes not empty.
949 (defun edebug-top-element-required (cursor &rest error
)
950 ;; Check if a dotted form is required.
951 (if edebug-dotted-spec
(edebug-no-match cursor
"Dot expected."))
952 ;; Check if there is at least one more argument.
953 (if (edebug-empty-cursor cursor
) (apply 'edebug-no-match cursor error
))
954 ;; Return that top element.
955 (edebug-top-element cursor
))
957 (defsubst edebug-top-offset
(cursor)
958 ;; Return the top offset pair corresponding to the top element.
961 (defun edebug-move-cursor (cursor)
962 ;; Advance and return the cursor to the next element and offset.
963 ;; throw no-match if empty before moving.
964 ;; This is a violation of the cursor encapsulation, but
965 ;; there is plenty of that going on while matching.
966 ;; The following test should always fail.
967 (if (edebug-empty-cursor cursor
)
968 (edebug-no-match cursor
"Not enough arguments."))
969 (setcar cursor
(cdr (car cursor
)))
970 (setcdr cursor
(cdr (cdr cursor
)))
974 (defun edebug-before-offset (cursor)
975 ;; Return the before offset of the cursor.
976 ;; If there is nothing left in the offsets,
977 ;; return one less than the offset itself,
978 ;; which is the after offset for a list.
979 (let ((offset (edebug-cursor-offsets cursor
)))
984 (defun edebug-after-offset (cursor)
985 ;; Return the after offset of the cursor object.
986 (let ((offset (edebug-top-offset cursor
)))
987 (while (consp offset
)
988 (setq offset
(cdr offset
)))
993 ;; The top level function for parsing forms is
994 ;; edebug-read-and-maybe-wrap-form; it calls all the rest. It checks the
995 ;; syntax a bit and leaves point at any error it finds, but otherwise
996 ;; should appear to work like eval-defun.
998 ;; The basic plan is to surround each expression with a call to
999 ;; the edebug debugger together with indexes into a table of positions of
1000 ;; all expressions. Thus an expression "exp" becomes:
1002 ;; (edebug-after (edebug-before 1) 2 exp)
1004 ;; When this is evaluated, first point is moved to the beginning of
1005 ;; exp at offset 1 of the current function. The expression is
1006 ;; evaluated, which may cause more edebug calls, and then point is
1007 ;; moved to offset 2 after the end of exp.
1009 ;; The highest level expressions of the function are wrapped in a call to
1010 ;; edebug-enter, which supplies the function name and the actual
1011 ;; arguments to the function. See functions edebug-enter, edebug-before,
1012 ;; and edebug-after for more details.
1014 ;; Dynamically bound vars, left unbound, but globally declared.
1015 ;; This is to quiet the byte compiler.
1017 ;; Window data of the highest definition being wrapped.
1018 ;; This data is shared by all embedded definitions.
1019 (defvar edebug-top-window-data
)
1021 (defvar edebug-
&optional
)
1022 (defvar edebug-
&rest
)
1023 (defvar edebug-gate nil
) ;; whether no-match forces an error.
1025 (defvar edebug-def-name nil
) ; name of definition, used by interactive-form
1026 (defvar edebug-old-def-name nil
) ; previous name of containing definition.
1028 (defvar edebug-error-point nil
)
1029 (defvar edebug-best-error nil
)
1032 (defun edebug-read-and-maybe-wrap-form ()
1033 ;; Read a form and wrap it with edebug calls, if the conditions are right.
1034 ;; Here we just catch any no-match not caught below and signal an error.
1036 ;; Run the setup hook.
1037 ;; If it gets an error, make it nil.
1038 (let ((temp-hook edebug-setup-hook
))
1039 (setq edebug-setup-hook nil
)
1040 (if (functionp temp-hook
) (funcall temp-hook
)
1041 (mapc #'funcall temp-hook
)))
1044 edebug-top-window-data
1045 edebug-def-name
;; make sure it is locally nil
1046 ;; I don't like these here!!
1053 ;; Do this once here instead of several times.
1054 (max-lisp-eval-depth (+ 800 max-lisp-eval-depth
))
1055 (max-specpdl-size (+ 2000 max-specpdl-size
)))
1058 (setq result
(edebug-read-and-maybe-wrap-form1))
1061 (apply 'edebug-syntax-error no-match
))
1065 (defun edebug-read-and-maybe-wrap-form1 ()
1070 ;; These offset things don't belong here, but to support recursive
1071 ;; calls to edebug-read, they need to be here.
1073 edebug-offsets-stack
1074 edebug-current-offset
; reset to nil
1077 (if (and (eq 'lparen
(edebug-next-token-class))
1078 (eq 'symbol
(progn (forward-char 1) (edebug-next-token-class))))
1079 ;; Find out if this is a defining form from first symbol
1080 (setq def-kind
(edebug-original-read (current-buffer))
1081 spec
(and (symbolp def-kind
) (get-edebug-spec def-kind
))
1082 defining-form-p
(and (listp spec
)
1083 (eq '&define
(car spec
)))
1084 ;; This is incorrect in general!! But OK most of the time.
1085 def-name
(if (and defining-form-p
1086 (eq 'name
(car (cdr spec
)))
1087 (eq 'symbol
(edebug-next-token-class)))
1088 (edebug-original-read (current-buffer))))))
1089 ;;;(message "all defs: %s all forms: %s" edebug-all-defs edebug-all-forms)
1092 (if (or edebug-all-defs edebug-all-forms
)
1093 ;; If it is a defining form and we are edebugging defs,
1094 ;; then let edebug-list-form start it.
1095 (let ((cursor (edebug-new-cursor
1096 (list (edebug-read-storing-offsets (current-buffer)))
1097 (list edebug-offsets
))))
1099 (edebug-make-form-wrapper
1101 (edebug-before-offset cursor
)
1102 (1- (edebug-after-offset cursor
))
1103 (list (cons (symbol-name def-kind
) (cdr spec
))))))
1105 ;; Not edebugging this form, so reset the symbol's edebug
1106 ;; property to be just a marker at the definition's source code.
1107 ;; This only works for defs with simple names.
1108 (put def-name
'edebug
(point-marker))
1109 ;; Also nil out dependent defs.
1112 (put def-name
'edebug nil
)))
1113 (get def-name
'edebug-dependents
))
1114 (edebug-read-sexp)))
1116 ;; If all forms are being edebugged, explicitly wrap it.
1118 (let ((cursor (edebug-new-cursor
1119 (list (edebug-read-storing-offsets (current-buffer)))
1120 (list edebug-offsets
))))
1121 (edebug-make-form-wrapper
1123 (edebug-before-offset cursor
)
1124 (edebug-after-offset cursor
)
1127 ;; Not a defining form, and not edebugging.
1128 (t (edebug-read-sexp)))
1132 (defvar edebug-def-args
) ; args of defining form.
1133 (defvar edebug-def-interactive
) ; is it an emacs interactive function?
1134 (defvar edebug-inside-func
) ;; whether code is inside function context.
1135 ;; Currently def-form sets this to nil; def-body sets it to t.
1137 (defun edebug-interactive-p-name ()
1138 ;; Return a unique symbol for the variable used to store the
1139 ;; status of interactive-p for this function.
1140 (intern (format "edebug-%s-interactive-p" edebug-def-name
)))
1143 (defun edebug-wrap-def-body (forms)
1144 "Wrap the FORMS of a definition body."
1145 (if edebug-def-interactive
1146 `(let ((,(edebug-interactive-p-name)
1148 ,(edebug-make-enter-wrapper forms
))
1149 (edebug-make-enter-wrapper forms
)))
1152 (defun edebug-make-enter-wrapper (forms)
1153 ;; Generate the enter wrapper for some forms of a definition.
1154 ;; This is not to be used for the body of other forms, e.g. `while',
1155 ;; since it wraps the list of forms with a call to `edebug-enter'.
1156 ;; Uses the dynamically bound vars edebug-def-name and edebug-def-args.
1157 ;; Do this after parsing since that may find a name.
1158 (setq edebug-def-name
1159 (or edebug-def-name edebug-old-def-name
(cl-gensym "edebug-anon")))
1161 (quote ,edebug-def-name
)
1162 ,(if edebug-inside-func
1164 ;; Doesn't work with more than one def-body!!
1165 ;; But the list will just be reversed.
1166 ,@(nreverse edebug-def-args
))
1168 (function (lambda () ,@forms
))
1172 (defvar edebug-form-begin-marker
) ; the mark for def being instrumented
1174 (defvar edebug-offset-index
) ; the next available offset index.
1175 (defvar edebug-offset-list
) ; the list of offset positions.
1177 (defun edebug-inc-offset (offset)
1178 ;; Modifies edebug-offset-index and edebug-offset-list
1179 ;; accesses edebug-func-marc and buffer point.
1182 (setq edebug-offset-list
(cons (- offset edebug-form-begin-marker
)
1184 edebug-offset-index
(1+ edebug-offset-index
))))
1187 (defun edebug-make-before-and-after-form (before-index form after-index
)
1188 ;; Return the edebug form for the current function at offset BEFORE-INDEX
1189 ;; given FORM. Looks like:
1190 ;; (edebug-after (edebug-before BEFORE-INDEX) AFTER-INDEX FORM)
1191 ;; Also increment the offset index for subsequent use.
1192 `(edebug-after (edebug-before ,before-index
) ,after-index
,form
))
1194 (defun edebug-make-after-form (form after-index
)
1195 ;; Like edebug-make-before-and-after-form, but only after.
1196 `(edebug-after 0 ,after-index
,form
))
1199 (defun edebug-unwrap (sexp)
1200 "Return the unwrapped SEXP or return it as is if it is not wrapped.
1201 The SEXP might be the result of wrapping a body, which is a list of
1202 expressions; a `progn' form will be returned enclosing these forms."
1205 ((eq 'edebug-after
(car sexp
))
1207 ((eq 'edebug-enter
(car sexp
))
1208 (macroexp-progn (nthcdr 2 (nth 1 (nth 3 sexp
)))))
1209 (t sexp
);; otherwise it is not wrapped, so just return it.
1213 (defun edebug-unwrap* (sexp)
1214 "Return the SEXP recursively unwrapped."
1215 (let ((new-sexp (edebug-unwrap sexp
)))
1216 (while (not (eq sexp new-sexp
))
1218 new-sexp
(edebug-unwrap sexp
)))
1219 (if (consp new-sexp
)
1220 (mapcar 'edebug-unwrap
* new-sexp
)
1224 (defun edebug-defining-form (cursor form-begin form-end speclist
)
1225 ;; Process the defining form, starting outside the form.
1226 ;; The speclist is a generated list spec that looks like:
1227 ;; (("def-symbol" defining-form-spec-sans-&define))
1228 ;; Skip the first offset.
1229 (edebug-set-cursor cursor
(edebug-cursor-expressions cursor
)
1230 (cdr (edebug-cursor-offsets cursor
)))
1231 (edebug-make-form-wrapper
1233 form-begin
(1- form-end
)
1236 (defun edebug-make-form-wrapper (cursor form-begin form-end
1238 ;; Wrap a form, usually a defining form, but any evaluated one.
1239 ;; If speclist is non-nil, this is being called by edebug-defining-form.
1240 ;; Otherwise it is being called from edebug-read-and-maybe-wrap-form1.
1241 ;; This is a hack, but I haven't figured out a simpler way yet.
1242 (let* ((form-data-entry (edebug-get-form-data-entry form-begin form-end
))
1243 ;; Set this marker before parsing.
1244 (edebug-form-begin-marker
1246 (edebug--form-data-begin form-data-entry
)
1247 ;; Buffer must be current-buffer for this to work:
1248 (set-marker (make-marker) form-begin
))))
1250 (let (edebug-offset-list
1251 (edebug-offset-index 0)
1254 ;; (edebug-containing-def-name edebug-def-name)
1255 ;; Get name from form-data, if any.
1256 (edebug-old-def-name (edebug--form-data-name form-data-entry
))
1259 edebug-def-interactive
1260 edebug-inside-func
;; whether wrapped code executes inside a function.
1265 (edebug-match cursor speclist
)
1267 ;; else wrap as an enter-form.
1268 (edebug-make-enter-wrapper (list (edebug-form cursor
)))))
1270 ;; Set the name here if it was not set by edebug-make-enter-wrapper.
1271 (setq edebug-def-name
1272 (or edebug-def-name edebug-old-def-name
(cl-gensym "edebug-anon")))
1274 ;; Add this def as a dependent of containing def. Buggy.
1275 '(if (and edebug-containing-def-name
1276 (not (get edebug-containing-def-name
'edebug-dependents
)))
1277 (put edebug-containing-def-name
'edebug-dependents
1278 (cons edebug-def-name
1279 (get edebug-containing-def-name
1280 'edebug-dependents
))))
1282 ;; Create a form-data-entry or modify existing entry's markers.
1283 ;; In the latter case, pointers to the entry remain eq.
1284 (if (not form-data-entry
)
1285 (setq form-data-entry
1286 (edebug--make-form-data-entry
1288 edebug-form-begin-marker
1289 ;; Buffer must be current-buffer.
1290 (set-marker (make-marker) form-end
)
1292 (edebug-set-form-data-entry
1293 form-data-entry edebug-def-name
;; in case name is changed
1294 form-begin form-end
))
1296 ;; (message "defining: %s" edebug-def-name) (sit-for 2)
1297 (edebug-make-top-form-data-entry form-data-entry
)
1298 (message "Edebug: %s" edebug-def-name
)
1299 ;;(debug edebug-def-name)
1301 ;; Destructively reverse edebug-offset-list and make vector from it.
1302 (setq edebug-offset-list
(vconcat (nreverse edebug-offset-list
)))
1304 ;; Side effects on the property list of edebug-def-name.
1305 (edebug-clear-frequency-count edebug-def-name
)
1306 (edebug-clear-coverage edebug-def-name
)
1308 ;; Set up the initial window data.
1309 (if (not edebug-top-window-data
) ;; if not already set, do it now.
1310 (let ((window ;; Find the best window for this buffer.
1311 (or (get-buffer-window (current-buffer))
1312 (selected-window))))
1313 (setq edebug-top-window-data
1314 (cons window
(window-start window
)))))
1316 ;; Store the edebug data in symbol's property list.
1317 (put edebug-def-name
'edebug
1318 ;; A struct or vector would be better here!!
1319 (list edebug-form-begin-marker
1320 nil
; clear breakpoints
1322 edebug-top-window-data
1328 (defun edebug-clear-frequency-count (name)
1329 ;; Create initial frequency count vector.
1330 ;; For each stop point, the counter is incremented each time it is visited.
1331 (put name
'edebug-freq-count
1332 (make-vector (length edebug-offset-list
) 0)))
1335 (defun edebug-clear-coverage (name)
1336 ;; Create initial coverage vector.
1337 ;; Only need one per expression, but it is simpler to use stop points.
1338 (put name
'edebug-coverage
1339 (make-vector (length edebug-offset-list
) 'unknown
)))
1342 (defun edebug-form (cursor)
1343 ;; Return the instrumented form for the following form.
1344 ;; Add the point offsets to the edebug-offset-list for the form.
1345 (let* ((form (edebug-top-element-required cursor
"Expected form"))
1346 (offset (edebug-top-offset cursor
)))
1350 ;; The first offset for a list form is for the list form itself.
1351 (if (eq 'quote
(car form
))
1353 (let* ((head (car form
))
1354 (spec (and (symbolp head
) (get-edebug-spec head
)))
1355 (new-cursor (edebug-new-cursor form offset
)))
1356 ;; Find out if this is a defining form from first symbol.
1357 ;; An indirect spec would not work here, yet.
1358 (if (and (consp spec
) (eq '&define
(car spec
)))
1359 (edebug-defining-form
1361 (car offset
);; before the form
1362 (edebug-after-offset cursor
)
1363 (cons (symbol-name head
) (cdr spec
)))
1364 ;; Wrap a regular form.
1365 (edebug-make-before-and-after-form
1366 (edebug-inc-offset (car offset
))
1367 (edebug-list-form new-cursor
)
1368 ;; After processing the list form, the new-cursor is left
1369 ;; with the offset after the form.
1370 (edebug-inc-offset (edebug-cursor-offsets new-cursor
))))
1375 ;; Check for constant symbols that don't get wrapped.
1376 ((or (memq form
'(t nil
))
1380 (t ;; just a variable
1381 (edebug-make-after-form form
(edebug-inc-offset (cdr offset
))))))
1383 ;; Anything else is self-evaluating.
1385 (edebug-move-cursor cursor
))))
1388 (defsubst edebug-forms
(cursor) (edebug-match cursor
'(&rest form
)))
1389 (defsubst edebug-sexps
(cursor) (edebug-match cursor
'(&rest sexp
)))
1391 (defsubst edebug-list-form-args
(head cursor
)
1392 ;; Process the arguments of a list form given that head of form is a symbol.
1393 ;; Helper for edebug-list-form
1394 (let ((spec (get-edebug-spec head
)))
1399 ;; It is a speclist.
1400 (let (edebug-best-error
1401 edebug-error-point
);; This may not be needed.
1402 (edebug-match-sublist cursor spec
)))
1403 ((eq t spec
) (edebug-forms cursor
))
1404 ((eq 0 spec
) (edebug-sexps cursor
))
1405 ((symbolp spec
) (funcall spec cursor
));; Not used by edebug,
1406 ; but leave it in for compatibility.
1408 ;; No edebug-form-spec provided.
1410 (if edebug-eval-macro-args
1411 (edebug-forms cursor
)
1412 (edebug-sexps cursor
)))
1413 (t ;; Otherwise it is a function call.
1414 (edebug-forms cursor
)))))
1417 (defun edebug-list-form (cursor)
1418 ;; Return an instrumented form built from the list form.
1419 ;; The after offset will be left in the cursor after processing the form.
1420 (let ((head (edebug-top-element-required cursor
"Expected elements"))
1421 ;; Prevent backtracking whenever instrumenting.
1423 ;; A list form is never optional because it matches anything.
1424 (edebug-&optional nil
)
1426 ;; Skip the first offset.
1427 (edebug-set-cursor cursor
(edebug-cursor-expressions cursor
)
1428 (cdr (edebug-cursor-offsets cursor
)))
1432 ((null head
) nil
) ; () is valid.
1433 ((eq head
'interactive-p
)
1434 ;; Special case: replace (interactive-p) with variable
1435 (setq edebug-def-interactive
'check-it
)
1436 (edebug-move-cursor cursor
)
1437 (edebug-interactive-p-name))
1439 (cons head
(edebug-list-form-args
1440 head
(edebug-move-cursor cursor
))))))
1443 (if (eq (car head
) '\
,)
1444 ;; The head of a form should normally be a symbol or a lambda
1445 ;; expression but it can also be an unquote form to be filled
1446 ;; before evaluation. We evaluate the arguments anyway, on the
1447 ;; assumption that the unquote form will place a proper function
1448 ;; name (rather than a macro name).
1449 (edebug-match cursor
'(("," def-form
) body
))
1450 ;; Process anonymous function and args.
1451 ;; This assumes no anonymous macros.
1452 (edebug-match-specs cursor
'(lambda-expr body
) 'edebug-match-specs
)))
1454 (t (edebug-syntax-error
1455 "Head of list form must be a symbol or lambda expression")))
1458 ;;; Matching of specs.
1460 (defvar edebug-after-dotted-spec nil
)
1462 (defvar edebug-matching-depth
0) ;; initial value
1463 (defconst edebug-max-depth
150) ;; maximum number of matching recursions.
1466 ;;; Failure to match
1468 ;; This throws to no-match, if there are higher alternatives.
1469 ;; Otherwise it signals an error. The place of the error is found
1470 ;; with the two before- and after-offset functions.
1472 (defun edebug-no-match (cursor &rest args
)
1473 ;; Throw a no-match, or signal an error immediately if gate is active.
1474 ;; Remember this point in case we need to report this error.
1475 (setq edebug-error-point
(or edebug-error-point
1476 (edebug-before-offset cursor
))
1477 edebug-best-error
(or edebug-best-error args
))
1478 (if (and edebug-gate
(not edebug-
&optional
))
1480 (if edebug-error-point
1481 (goto-char edebug-error-point
))
1482 (apply 'edebug-syntax-error args
))
1483 (throw 'no-match args
)))
1486 (defun edebug-match (cursor specs
)
1487 ;; Top level spec matching function.
1488 ;; Used also at each lower level of specs.
1489 (let (edebug-&optional
1493 (edebug-gate edebug-gate
) ;; locally bound to limit effect
1495 (edebug-match-specs cursor specs
'edebug-match-specs
)))
1498 (defun edebug-match-one-spec (cursor spec
)
1499 ;; Match one spec, which is not a keyword &-spec.
1501 ((symbolp spec
) (edebug-match-symbol cursor spec
))
1502 ((vectorp spec
) (edebug-match cursor
(append spec nil
)))
1503 ((stringp spec
) (edebug-match-string cursor spec
))
1504 ((listp spec
) (edebug-match-list cursor spec
))
1508 (defun edebug-match-specs (cursor specs remainder-handler
)
1509 ;; Append results of matching the list of specs.
1510 ;; The first spec is handled and the remainder-handler handles the rest.
1511 (let ((edebug-matching-depth
1512 (if (> edebug-matching-depth edebug-max-depth
)
1513 (error "Too deep - perhaps infinite loop in spec?")
1514 (1+ edebug-matching-depth
))))
1518 ;; Is the spec dotted?
1520 (let ((edebug-dotted-spec t
));; Containing spec list was dotted.
1521 (edebug-match-specs cursor
(list specs
) remainder-handler
)))
1523 ;; Is the form dotted?
1524 ((not (listp (edebug-cursor-expressions cursor
)));; allow nil
1525 (if (not edebug-dotted-spec
)
1526 (edebug-no-match cursor
"Dotted spec required."))
1527 ;; Cancel dotted spec and dotted form.
1528 (let ((edebug-dotted-spec)
1529 (this-form (edebug-cursor-expressions cursor
))
1530 (this-offset (edebug-cursor-offsets cursor
)))
1531 ;; Wrap the form in a list, (by changing the cursor??)...
1532 (edebug-set-cursor cursor
(list this-form
) this-offset
)
1533 ;; and process normally, then unwrap the result.
1534 (car (edebug-match-specs cursor specs remainder-handler
))))
1536 (t;; Process normally.
1537 (let* ((spec (car specs
))
1539 (first-char (and (symbolp spec
) (aref (symbol-name spec
) 0))))
1540 ;;(message "spec = %s first char = %s" spec first-char) (sit-for 1)
1543 ((eq ?
& first-char
);; "&" symbols take all following specs.
1544 (funcall (get-edebug-spec spec
) cursor
(cdr specs
)))
1545 ((eq ?
: first-char
);; ":" symbols take one following spec.
1546 (setq rest
(cdr (cdr specs
)))
1547 (funcall (get-edebug-spec spec
) cursor
(car (cdr specs
))))
1548 (t;; Any other normal spec.
1549 (setq rest
(cdr specs
))
1550 (edebug-match-one-spec cursor spec
)))
1551 (funcall remainder-handler cursor rest remainder-handler
)))))))
1554 ;; Define specs for all the symbol specs with functions used to process them.
1555 ;; Perhaps we shouldn't be doing this with edebug-form-specs since the
1556 ;; user may want to define macros or functions with the same names.
1557 ;; We could use an internal obarray for these primitive specs.
1559 (dolist (pair '((&optional . edebug-match-
&optional
)
1560 (&rest . edebug-match-
&rest
)
1561 (&or . edebug-match-
&or
)
1562 (form . edebug-match-form
)
1563 (sexp . edebug-match-sexp
)
1564 (body . edebug-match-body
)
1565 (&define . edebug-match-
&define
)
1566 (name . edebug-match-name
)
1567 (:name . edebug-match-colon-name
)
1568 (arg . edebug-match-arg
)
1569 (def-body . edebug-match-def-body
)
1570 (def-form . edebug-match-def-form
)
1571 ;; Less frequently used:
1572 ;; (function . edebug-match-function)
1573 (lambda-expr . edebug-match-lambda-expr
)
1574 (¬ . edebug-match-
¬
)
1575 (&key . edebug-match-
&key
)
1576 (place . edebug-match-place
)
1577 (gate . edebug-match-gate
)
1578 ;; (nil . edebug-match-nil) not this one - special case it.
1580 (put (car pair
) 'edebug-form-spec
(cdr pair
)))
1582 (defun edebug-match-symbol (cursor symbol
)
1583 ;; Match a symbol spec.
1584 (let* ((spec (get-edebug-spec symbol
)))
1588 ;; It is an indirect spec.
1589 (edebug-match cursor spec
)
1590 ;; Otherwise it should be the symbol name of a function.
1591 ;; There could be a bug here - maybe need to do edebug-match bindings.
1592 (funcall spec cursor
)))
1594 ((null symbol
) ;; special case this.
1595 (edebug-match-nil cursor
))
1597 ((fboundp symbol
) ; is it a predicate?
1598 (let ((sexp (edebug-top-element-required cursor
"Expected" symbol
)))
1599 ;; Special case for edebug-`.
1600 (if (and (listp sexp
) (eq (car sexp
) '\
,))
1601 (edebug-match cursor
'(("," def-form
)))
1602 (if (not (funcall symbol sexp
))
1603 (edebug-no-match cursor symbol
"failed"))
1604 (edebug-move-cursor cursor
)
1606 (t (error "%s is not a form-spec or function" symbol
))
1610 (defun edebug-match-sexp (cursor)
1611 (list (prog1 (edebug-top-element-required cursor
"Expected sexp")
1612 (edebug-move-cursor cursor
))))
1614 (defun edebug-match-form (cursor)
1615 (list (edebug-form cursor
)))
1617 (defalias 'edebug-match-place
'edebug-match-form
)
1618 ;; Currently identical to edebug-match-form.
1619 ;; This is for common lisp setf-style place arguments.
1621 (defsubst edebug-match-body
(cursor) (edebug-forms cursor
))
1623 (defun edebug-match-&optional
(cursor specs
)
1624 ;; Keep matching until one spec fails.
1625 (edebug-&optional-wrapper cursor specs
'edebug-
&optional-wrapper
))
1627 (defun edebug-&optional-wrapper
(cursor specs remainder-handler
)
1629 (edebug-&optional specs
)
1631 (this-form (edebug-cursor-expressions cursor
))
1632 (this-offset (edebug-cursor-offsets cursor
)))
1633 (if (null (catch 'no-match
1635 (edebug-match-specs cursor specs remainder-handler
))
1636 ;; Returning nil means no no-match was thrown.
1639 ;; no-match, but don't fail; just reset cursor and return nil.
1640 (edebug-set-cursor cursor this-form this-offset
)
1644 (defun edebug-&rest-wrapper
(cursor specs remainder-handler
)
1645 (if (null specs
) (setq specs edebug-
&rest
))
1646 ;; Reuse the &optional handler with this as the remainder handler.
1647 (edebug-&optional-wrapper cursor specs remainder-handler
))
1649 (defun edebug-match-&rest
(cursor specs
)
1650 ;; Repeatedly use specs until failure.
1651 (let ((edebug-&rest specs
) ;; remember these
1654 (edebug-&rest-wrapper cursor specs
'edebug-
&rest-wrapper
)))
1657 (defun edebug-match-&or
(cursor specs
)
1658 ;; Keep matching until one spec succeeds, and return its results.
1659 ;; If none match, fail.
1660 ;; This needs to be optimized since most specs spend time here.
1661 (let ((original-specs specs
)
1662 (this-form (edebug-cursor-expressions cursor
))
1663 (this-offset (edebug-cursor-offsets cursor
)))
1668 (let (edebug-gate ;; only while matching each spec
1671 ;; Doesn't support e.g. &or symbolp &rest form
1672 (edebug-match-one-spec cursor
(car specs
)))))
1673 ;; Match failed, so reset and try again.
1674 (setq specs
(cdr specs
))
1675 ;; Reset the cursor for the next match.
1676 (edebug-set-cursor cursor this-form this-offset
))
1678 (apply 'edebug-no-match cursor
"Expected one of" original-specs
))
1682 (defun edebug-match-¬
(cursor specs
)
1683 ;; If any specs match, then fail
1684 (if (null (catch 'no-match
1685 (let ((edebug-gate nil
))
1687 (edebug-match-&or cursor specs
)))
1689 ;; This means something matched, so it is a no match.
1690 (edebug-no-match cursor
"Unexpected"))
1691 ;; This means nothing matched, so it is OK.
1692 nil
) ;; So, return nothing
1695 (def-edebug-spec &key edebug-match-
&key
)
1697 (defun edebug-match-&key
(cursor specs
)
1698 ;; Following specs must look like (<name> <spec>) ...
1699 ;; where <name> is the name of a keyword, and spec is its spec.
1700 ;; This really doesn't save much over the expanded form and takes time.
1704 (mapcar (function (lambda (pair)
1705 (vector (format ":%s" (car pair
))
1710 (defun edebug-match-gate (_cursor)
1711 ;; Simply set the gate to prevent backtracking at this level.
1712 (setq edebug-gate t
)
1716 (defun edebug-match-list (cursor specs
)
1717 ;; The spec is a list, but what kind of list, and what context?
1718 (if edebug-dotted-spec
1719 ;; After dotted spec but form did not contain dot,
1720 ;; so match list spec elements as if spliced in.
1722 (let ((edebug-dotted-spec))
1723 (edebug-match-specs cursor specs
'edebug-match-specs
))
1724 ;; If it matched, really clear the dotted-spec flag.
1725 (setq edebug-dotted-spec nil
))
1726 (let ((spec (car specs
))
1727 (form (edebug-top-element-required cursor
"Expected" specs
)))
1730 (let ((spec (car (cdr specs
))))
1733 ;; Special case: spec quotes a symbol to match.
1734 ;; Change in future. Use "..." instead.
1735 (if (not (eq spec form
))
1736 (edebug-no-match cursor
"Expected" spec
))
1737 (edebug-move-cursor cursor
)
1738 (setq edebug-gate t
)
1741 (error "Bad spec: %s" specs
)))))
1745 (list (edebug-match-sublist
1746 ;; First offset is for the list form itself.
1747 ;; Treat nil as empty list.
1748 (edebug-new-cursor form
(cdr (edebug-top-offset cursor
)))
1750 (edebug-move-cursor cursor
)))
1752 ((and (eq 'vector spec
) (vectorp form
))
1753 ;; Special case: match a vector with the specs.
1754 (let ((result (edebug-match-sublist
1756 form
(cdr (edebug-top-offset cursor
)))
1758 (edebug-move-cursor cursor
)
1759 (list (apply 'vector result
))))
1761 (t (edebug-no-match cursor
"Expected" specs
)))
1765 (defun edebug-match-sublist (cursor specs
)
1766 ;; Match a sublist of specs.
1767 (let (edebug-&optional
1769 ;;edebug-error-point
1772 ;; match with edebug-match-specs so edebug-best-error is not bound.
1773 (edebug-match-specs cursor specs
'edebug-match-specs
)
1774 (if (not (edebug-empty-cursor cursor
))
1775 (if edebug-best-error
1776 (apply 'edebug-no-match cursor edebug-best-error
)
1777 ;; A failed &rest or &optional spec may leave some args.
1778 (edebug-no-match cursor
"Failed matching" specs
)
1782 (defun edebug-match-string (cursor spec
)
1783 (let ((sexp (edebug-top-element-required cursor
"Expected" spec
)))
1784 (if (not (eq (intern spec
) sexp
))
1785 (edebug-no-match cursor
"Expected" spec
)
1786 ;; Since it matched, failure means immediate error, unless &optional.
1787 (setq edebug-gate t
)
1788 (edebug-move-cursor cursor
)
1792 (defun edebug-match-nil (cursor)
1793 ;; There must be nothing left to match a nil.
1794 (if (not (edebug-empty-cursor cursor
))
1795 (edebug-no-match cursor
"Unmatched argument(s)")
1799 (defun edebug-match-function (_cursor)
1800 (error "Use function-form instead of function in edebug spec"))
1802 (defun edebug-match-&define
(cursor specs
)
1803 ;; Match a defining form.
1804 ;; Normally, &define is interpreted specially other places.
1805 ;; This should only be called inside of a spec list to match the remainder
1806 ;; of the current list. e.g. ("lambda" &define args def-body)
1807 (edebug-make-form-wrapper
1809 (edebug-before-offset cursor
)
1810 ;; Find the last offset in the list.
1811 (let ((offsets (edebug-cursor-offsets cursor
)))
1812 (while (consp offsets
) (setq offsets
(cdr offsets
)))
1816 (defun edebug-match-lambda-expr (cursor)
1817 ;; The expression must be a function.
1818 ;; This will match any list form that begins with a symbol
1819 ;; that has an edebug-form-spec beginning with &define. In
1820 ;; practice, only lambda expressions should be used.
1821 ;; I could add a &lambda specification to avoid confusion.
1822 (let* ((sexp (edebug-top-element-required
1823 cursor
"Expected lambda expression"))
1824 (offset (edebug-top-offset cursor
))
1825 (head (and (consp sexp
) (car sexp
)))
1826 (spec (and (symbolp head
) (get-edebug-spec head
)))
1827 (edebug-inside-func nil
))
1828 ;; Find out if this is a defining form from first symbol.
1829 (if (and (consp spec
) (eq '&define
(car spec
)))
1832 (edebug-defining-form
1833 (edebug-new-cursor sexp offset
)
1834 (car offset
);; before the sexp
1835 (edebug-after-offset cursor
)
1836 (cons (symbol-name head
) (cdr spec
))))
1837 (edebug-move-cursor cursor
))
1838 (edebug-no-match cursor
"Expected lambda expression")
1842 (defun edebug-match-name (cursor)
1843 ;; Set the edebug-def-name bound in edebug-defining-form.
1844 (let ((name (edebug-top-element-required cursor
"Expected name")))
1845 ;; Maybe strings and numbers could be used.
1846 (if (not (symbolp name
))
1847 (edebug-no-match cursor
"Symbol expected for name of definition"))
1848 (setq edebug-def-name
1850 ;; Construct a new name by appending to previous name.
1851 (intern (format "%s@%s" edebug-def-name name
))
1853 (edebug-move-cursor cursor
)
1856 (defun edebug-match-colon-name (_cursor spec
)
1857 ;; Set the edebug-def-name to the spec.
1858 (setq edebug-def-name
1860 ;; Construct a new name by appending to previous name.
1861 (intern (format "%s@%s" edebug-def-name spec
))
1865 (defun edebug-match-arg (cursor)
1866 ;; set the def-args bound in edebug-defining-form
1867 (let ((edebug-arg (edebug-top-element-required cursor
"Expected arg")))
1868 (if (or (not (symbolp edebug-arg
))
1869 (edebug-lambda-list-keywordp edebug-arg
))
1870 (edebug-no-match cursor
"Bad argument:" edebug-arg
))
1871 (edebug-move-cursor cursor
)
1872 (setq edebug-def-args
(cons edebug-arg edebug-def-args
))
1875 (defun edebug-match-def-form (cursor)
1876 ;; Like form but the form is wrapped in edebug-enter form.
1877 ;; The form is assumed to be executing outside of the function context.
1878 ;; This is a hack for now, since a def-form might execute inside as well.
1879 ;; Not to be used otherwise.
1880 (let ((edebug-inside-func nil
))
1881 (list (edebug-make-enter-wrapper (list (edebug-form cursor
))))))
1883 (defun edebug-match-def-body (cursor)
1884 ;; Like body but body is wrapped in edebug-enter form.
1885 ;; The body is assumed to be executing inside of the function context.
1886 ;; Not to be used otherwise.
1887 (let ((edebug-inside-func t
))
1888 (list (edebug-wrap-def-body (edebug-forms cursor
)))))
1891 ;;;; Edebug Form Specs
1892 ;;; ==========================================================
1894 ;;;;* Spec for def-edebug-spec
1897 (defun edebug-spec-p (object)
1898 "Return non-nil if OBJECT is a symbol with an edebug-form-spec property."
1899 (and (symbolp object
)
1900 (get object
'edebug-form-spec
)))
1902 (def-edebug-spec def-edebug-spec
1903 ;; Top level is different from lower levels.
1904 (&define
:name edebug-spec name
1905 &or
"nil" edebug-spec-p
"t" "0" (&rest edebug-spec
)))
1907 (def-edebug-spec edebug-spec-list
1908 ;; A list must have something in it, or it is nil, a symbolp
1909 ((edebug-spec .
[&or nil edebug-spec
])))
1911 (def-edebug-spec edebug-spec
1913 (vector &rest edebug-spec
) ; matches a vector
1914 ("vector" &rest edebug-spec
) ; matches a vector spec
1918 [edebug-lambda-list-keywordp
&rest edebug-spec
]
1919 [keywordp gate edebug-spec
]
1920 edebug-spec-p
;; Including all the special ones e.g. form.
1921 symbolp
;; a predicate
1925 ;;;* Emacs special forms and some functions.
1927 ;; quote expects only one argument, although it allows any number.
1928 (def-edebug-spec quote sexp
)
1930 ;; The standard defining forms.
1931 (def-edebug-spec defconst defvar
)
1932 (def-edebug-spec defvar
(symbolp &optional form stringp
))
1934 (def-edebug-spec defun
1935 (&define name lambda-list
1937 [&optional
("interactive" interactive
)]
1939 ;; FIXME? Isn't this missing the doc-string? Cf defun.
1940 (def-edebug-spec defmacro
1941 ;; FIXME: Improve `declare' so we can Edebug gv-expander and
1942 ;; gv-setter declarations.
1943 (&define name lambda-list
[&optional
("declare" &rest sexp
)] def-body
))
1945 (def-edebug-spec arglist lambda-list
) ;; deprecated - use lambda-list.
1947 (def-edebug-spec lambda-list
1949 [&optional
["&optional" arg
&rest arg
]]
1950 &optional
["&rest" arg
]
1953 (def-edebug-spec interactive
1954 (&optional
&or stringp def-form
))
1956 ;; A function-form is for an argument that may be a function or a form.
1957 ;; This specially recognizes anonymous functions quoted with quote.
1958 (def-edebug-spec function-form
1959 ;; form at the end could also handle "function",
1960 ;; but recognize it specially to avoid wrapping function forms.
1961 (&or
([&or
"quote" "function"] &or symbolp lambda-expr
) form
))
1963 ;; function expects a symbol or a lambda or macro expression
1964 ;; A macro is allowed by Emacs.
1965 (def-edebug-spec function
(&or symbolp lambda-expr
))
1967 ;; A macro expression is a lambda expression with "macro" prepended.
1968 (def-edebug-spec macro
(&define
"lambda" lambda-list def-body
))
1970 ;; (def-edebug-spec anonymous-form ((&or ["lambda" lambda] ["macro" macro])))
1972 ;; Standard functions that take function-forms arguments.
1974 ;; FIXME? The manual uses this form (maybe that's just for illustration?):
1975 ;; (def-edebug-spec let
1976 ;; ((&rest &or symbolp (gate symbolp &optional form))
1978 (def-edebug-spec let
1979 ((&rest
&or
(symbolp &optional form
) symbolp
)
1982 (def-edebug-spec let
* let
)
1984 (def-edebug-spec setq
(&rest symbolp form
))
1985 (def-edebug-spec setq-default setq
)
1987 (def-edebug-spec cond
(&rest
(&rest form
)))
1989 (def-edebug-spec condition-case
1992 &rest
([&or symbolp
(&rest symbolp
)] body
)))
1995 (def-edebug-spec \
` (backquote-form))
1997 ;; Supports quotes inside backquotes,
1998 ;; but only at the top level inside unquotes.
1999 (def-edebug-spec backquote-form
2001 ([&or
"," ",@"] &or
("quote" backquote-form
) form
)
2002 ;; The simple version:
2003 ;; (backquote-form &rest backquote-form)
2004 ;; doesn't handle (a . ,b). The straightforward fix:
2005 ;; (backquote-form . [&or nil backquote-form])
2006 ;; uses up too much stack space.
2007 ;; Note that `(foo . ,@bar) is not valid, so we don't need to handle it.
2008 (backquote-form [&rest
[¬
","] backquote-form
]
2009 .
[&or nil backquote-form
])
2010 ;; If you use dotted forms in backquotes, replace the previous line
2011 ;; with the following. This takes quite a bit more stack space, however.
2012 ;; (backquote-form . [&or nil backquote-form])
2013 (vector &rest backquote-form
)
2016 ;; Special version of backquote that instruments backquoted forms
2017 ;; destined to be evaluated, usually as the result of a
2018 ;; macroexpansion. Backquoted code can only have unquotes (, and ,@)
2019 ;; in places where list forms are allowed, and predicates. If the
2020 ;; backquote is used in a macro, unquoted code that come from
2021 ;; arguments must be instrumented, if at all, with def-form not def-body.
2023 ;; We could assume that all forms (not nested in other forms)
2024 ;; in arguments of macros should be def-forms, whether or not the macros
2025 ;; are defined with edebug-` but this would be expensive.
2027 ;; ,@ might have some problems.
2029 (defalias 'edebug-\
` '\
`) ;; same macro as regular backquote.
2030 (def-edebug-spec edebug-\
` (def-form))
2032 ;; Assume immediate quote in unquotes mean backquote at next higher level.
2033 (def-edebug-spec \
, (&or
("quote" edebug-\
`) def-form
))
2034 (def-edebug-spec \
,@ (&define
;; so (,@ form) is never wrapped.
2035 &or
("quote" edebug-\
`) def-form
))
2037 ;; New byte compiler.
2039 (def-edebug-spec save-selected-window t
)
2040 (def-edebug-spec save-current-buffer t
)
2044 ;;; The debugger itself
2046 (defvar edebug-active nil
) ;; Non-nil when edebug is active
2048 (defvar edebug-stack nil
)
2049 ;; Stack of active functions evaluated via edebug.
2050 ;; Should be nil at the top level.
2052 (defvar edebug-stack-depth -
1)
2053 ;; Index of last edebug-stack item.
2055 (defvar edebug-offset-indices nil
)
2056 ;; Stack of offset indices of visited edebug sexps.
2057 ;; Should be nil at the top level.
2058 ;; Each function adds one cons. Top is modified with setcar.
2061 (defvar edebug-entered nil
2062 ;; Non-nil if edebug has already been entered at this recursive edit level.
2063 ;; This should stay nil at the top level.
2066 ;; Should these be options?
2067 (defconst edebug-debugger
'edebug
2068 ;; Name of function to use for debugging when error or quit occurs.
2069 ;; Set this to 'debug if you want to debug edebug.
2073 ;; Dynamically bound variables, declared globally but left unbound.
2074 (defvar edebug-function
) ; the function being executed. change name!!
2075 (defvar edebug-data
) ; the edebug data for the function
2076 (defvar edebug-def-mark
) ; the mark for the definition
2077 (defvar edebug-freq-count
) ; the count of expression visits.
2078 (defvar edebug-coverage
) ; the coverage results of each expression of function.
2080 (defvar edebug-buffer
) ; which buffer the function is in.
2082 (defvar edebug-execution-mode
'step
) ; Current edebug mode set by user.
2083 (defvar edebug-next-execution-mode nil
) ; Use once instead of initial mode.
2085 (defvar edebug-outside-debug-on-error
) ; the value of debug-on-error outside
2086 (defvar edebug-outside-debug-on-quit
) ; the value of debug-on-quit outside
2088 ;;; Handling signals
2090 (defun edebug-signal (signal-name signal-data
)
2091 "Signal an error. Args are SIGNAL-NAME, and associated DATA.
2092 A signal name is a symbol with an `error-conditions' property
2093 that is a list of condition names.
2094 A handler for any of those names will get to handle this signal.
2095 The symbol `error' should always be one of them.
2097 DATA should be a list. Its elements are printed as part of the error message.
2098 If the signal is handled, DATA is made available to the handler.
2099 See `condition-case'.
2101 This is the Edebug replacement for the standard `signal'. It should
2102 only be active while Edebug is. It checks `debug-on-error' to see
2103 whether it should call the debugger. When execution is resumed, the
2104 error is signaled again."
2105 (if (and (listp debug-on-error
) (memq signal-name debug-on-error
))
2106 (edebug 'error
(cons signal-name signal-data
)))
2107 ;; If we reach here without another non-local exit, then send signal again.
2108 ;; i.e. the signal is not continuable, yet.
2109 ;; Avoid infinite recursion.
2110 (let ((signal-hook-function nil
))
2111 (signal signal-name signal-data
)))
2115 (defun edebug-enter (function args body
)
2116 ;; Entering FUNC. The arguments are ARGS, and the body is BODY.
2117 ;; Setup edebug variables and evaluate BODY. This function is called
2118 ;; when a function evaluated with edebug-eval-top-level-form is entered.
2119 ;; Return the result of BODY.
2121 ;; Is this the first time we are entering edebug since
2122 ;; lower-level recursive-edit command?
2123 ;; More precisely, this tests whether Edebug is currently active.
2124 (let ((edebug-function function
))
2125 (if (not edebug-entered
)
2126 (let ((edebug-entered t
)
2127 ;; Binding max-lisp-eval-depth here is OK,
2128 ;; but not inside an unwind-protect.
2129 ;; Doing it here also keeps it from growing too large.
2130 (max-lisp-eval-depth (+ 100 max-lisp-eval-depth
)) ; too much??
2131 (max-specpdl-size (+ 200 max-specpdl-size
))
2133 (debugger edebug-debugger
) ; only while edebug is active.
2134 (edebug-outside-debug-on-error debug-on-error
)
2135 (edebug-outside-debug-on-quit debug-on-quit
)
2136 ;; Binding these may not be the right thing to do.
2137 ;; We want to allow the global values to be changed.
2138 (debug-on-error (or debug-on-error edebug-on-error
))
2139 (debug-on-quit edebug-on-quit
))
2141 (let ((signal-hook-function 'edebug-signal
))
2142 (setq edebug-execution-mode
(or edebug-next-execution-mode
2144 edebug-execution-mode
)
2145 edebug-next-execution-mode nil
)
2146 (edebug-enter function args body
))))
2148 (let* ((edebug-data (get function
'edebug
))
2149 (edebug-def-mark (car edebug-data
)) ; mark at def start
2150 (edebug-freq-count (get function
'edebug-freq-count
))
2151 (edebug-coverage (get function
'edebug-coverage
))
2152 (edebug-buffer (marker-buffer edebug-def-mark
))
2154 (edebug-stack (cons function edebug-stack
))
2155 (edebug-offset-indices (cons 0 edebug-offset-indices
))
2157 (if (get function
'edebug-on-entry
)
2159 (setq edebug-execution-mode
'step
)
2160 (if (eq (get function
'edebug-on-entry
) 'temp
)
2161 (put function
'edebug-on-entry nil
))))
2163 (edebug--enter-trace function args body
)
2167 (defun edebug-var-status (var)
2168 "Return a cons cell describing the status of VAR's current binding.
2169 The purpose of this function is so you can properly undo
2170 subsequent changes to the same binding, by passing the status
2171 cons cell to `edebug-restore-status'. The status cons cell
2172 has the form (LOCUS . VALUE), where LOCUS can be a buffer
2173 \(for a buffer-local binding), a frame (for a frame-local binding),
2174 or nil (if the default binding is current)."
2175 (cons (variable-binding-locus var
)
2176 (symbol-value var
)))
2178 (defun edebug-restore-status (var status
)
2179 "Reset VAR based on STATUS.
2180 STATUS should be a list returned by `edebug-var-status'."
2181 (let ((locus (car status
))
2182 (value (cdr status
)))
2183 (cond ((bufferp locus
)
2184 (if (buffer-live-p locus
)
2185 (with-current-buffer locus
2188 (modify-frame-parameters locus
(list (cons var value
))))
2192 (defun edebug--enter-trace (function args body
)
2193 (let ((edebug-stack-depth (1+ edebug-stack-depth
))
2195 (edebug-print-trace-before
2196 (format "%s args: %s" function args
))
2197 (prog1 (setq edebug-result
(funcall body
))
2198 (edebug-print-trace-after
2199 (format "%s result: %s" function edebug-result
)))))
2201 (def-edebug-spec edebug-tracing
(form body
))
2203 (defmacro edebug-tracing
(msg &rest body
)
2204 "Print MSG in *edebug-trace* before and after evaluating BODY.
2205 The result of BODY is also printed."
2206 `(let ((edebug-stack-depth (1+ edebug-stack-depth
))
2208 (edebug-print-trace-before ,msg
)
2209 (prog1 (setq edebug-result
(progn ,@body
))
2210 (edebug-print-trace-after
2211 (format "%s result: %s" ,msg edebug-result
)))))
2213 (defun edebug-print-trace-before (msg)
2214 "Function called to print trace info before expression evaluation.
2215 MSG is printed after `::::{ '."
2216 (edebug-trace-display
2217 edebug-trace-buffer
"%s{ %s" (make-string edebug-stack-depth ?\
:) msg
))
2219 (defun edebug-print-trace-after (msg)
2220 "Function called to print trace info after expression evaluation.
2221 MSG is printed after `::::} '."
2222 (edebug-trace-display
2223 edebug-trace-buffer
"%s} %s" (make-string edebug-stack-depth ?\
:) msg
))
2227 (defun edebug-slow-before (before-index)
2228 (unless edebug-active
2229 ;; Debug current function given BEFORE position.
2230 ;; Called from functions compiled with edebug-eval-top-level-form.
2231 ;; Return the before index.
2232 (setcar edebug-offset-indices before-index
)
2234 ;; Increment frequency count
2235 (aset edebug-freq-count before-index
2236 (1+ (aref edebug-freq-count before-index
)))
2238 (if (or (not (memq edebug-execution-mode
'(Go-nonstop next
)))
2240 (edebug-debugger before-index
'before nil
)))
2243 (defun edebug-fast-before (_before-index)
2247 (defun edebug-slow-after (_before-index after-index value
)
2250 ;; Debug current function given AFTER position and VALUE.
2251 ;; Called from functions compiled with edebug-eval-top-level-form.
2253 (setcar edebug-offset-indices after-index
)
2255 ;; Increment frequency count
2256 (aset edebug-freq-count after-index
2257 (1+ (aref edebug-freq-count after-index
)))
2258 (if edebug-test-coverage
(edebug--update-coverage after-index value
))
2260 (if (and (eq edebug-execution-mode
'Go-nonstop
)
2261 (not (input-pending-p)))
2262 ;; Just return result.
2264 (edebug-debugger after-index
'after value
)
2267 (defun edebug-fast-after (_before-index _after-index value
)
2268 ;; Do nothing but return the value.
2271 (defun edebug-run-slow ()
2272 (defalias 'edebug-before
'edebug-slow-before
)
2273 (defalias 'edebug-after
'edebug-slow-after
))
2275 ;; This is not used, yet.
2276 (defun edebug-run-fast ()
2277 (defalias 'edebug-before
'edebug-fast-before
)
2278 (defalias 'edebug-after
'edebug-fast-after
))
2283 (defun edebug--update-coverage (after-index value
)
2284 (let ((old-result (aref edebug-coverage after-index
)))
2286 ((eq 'ok-coverage old-result
))
2287 ((eq 'unknown old-result
)
2288 (aset edebug-coverage after-index value
))
2289 ;; Test if a different result.
2290 ((not (eq value old-result
))
2291 (aset edebug-coverage after-index
'ok-coverage
)))))
2294 ;; Dynamically declared unbound variables.
2295 (defvar edebug-breakpoints
)
2296 (defvar edebug-break-data
) ; break data for current function.
2297 (defvar edebug-break
) ; whether a break occurred.
2298 (defvar edebug-global-break
) ; whether a global break occurred.
2299 (defvar edebug-break-condition
) ; whether the breakpoint is conditional.
2301 (defvar edebug-break-result nil
)
2302 (defvar edebug-global-break-result nil
)
2305 (defun edebug-debugger (offset-index arg-mode value
)
2306 (if inhibit-redisplay
2307 ;; Don't really try to enter edebug within an eval from redisplay.
2309 ;; Check breakpoints and pending input.
2310 ;; If edebug display should be updated, call edebug--display.
2312 (let* ( ;; This needs to be here since breakpoints may be changed.
2313 (edebug-breakpoints (car (cdr edebug-data
))) ; list of breakpoints
2314 (edebug-break-data (assq offset-index edebug-breakpoints
))
2315 (edebug-break-condition (car (cdr edebug-break-data
)))
2316 (edebug-global-break
2317 (if edebug-global-break-condition
2319 (setq edebug-global-break-result
2320 (edebug-eval edebug-global-break-condition
))
2324 ;;(edebug-trace "exp: %s" value)
2325 ;; Test whether we should break.
2327 (or edebug-global-break
2328 (and edebug-break-data
2329 (or (not edebug-break-condition
)
2330 (setq edebug-break-result
2331 (edebug-eval edebug-break-condition
))))))
2332 (if (and edebug-break
2333 (nth 2 edebug-break-data
)) ; is it temporary?
2334 ;; Delete the breakpoint.
2336 (cons (delq edebug-break-data edebug-breakpoints
)
2337 (cdr (cdr edebug-data
)))))
2339 ;; Display if mode is not go, continue, or Continue-fast
2340 ;; or break, or input is pending,
2341 (if (or (not (memq edebug-execution-mode
'(go continue Continue-fast
)))
2344 (edebug--display value offset-index arg-mode
)) ; <---------- display
2349 ;; window-start now stored with each function.
2350 ;;(defvar edebug-window-start nil)
2351 ;; Remember where each buffers' window starts between edebug calls.
2352 ;; This is to avoid spurious recentering.
2353 ;; Does this still need to be buffer-local??
2354 ;;(setq-default edebug-window-start nil)
2355 ;;(make-variable-buffer-local 'edebug-window-start)
2358 ;; Dynamically declared unbound vars
2359 (defvar edebug-point
) ; the point in edebug buffer
2360 (defvar edebug-outside-buffer
) ; the current-buffer outside of edebug
2361 (defvar edebug-outside-point
) ; the point outside of edebug
2362 (defvar edebug-outside-mark
) ; the mark outside of edebug
2363 (defvar edebug-window-data
) ; window and window-start for current function
2364 (defvar edebug-outside-windows
) ; outside window configuration
2365 (defvar edebug-eval-buffer
) ; for the evaluation list.
2366 (defvar edebug-outside-d-c-i-n-s-w
) ; outside default-cursor-in-non-selected-windows
2368 (defvar edebug-eval-list nil
) ;; List of expressions to evaluate.
2370 (defvar edebug-previous-result nil
) ;; Last result returned.
2372 ;; Emacs 19 adds an arg to mark and mark-marker.
2373 (defalias 'edebug-mark-marker
'mark-marker
)
2375 (defun edebug--display (value offset-index arg-mode
)
2376 (unless (marker-position edebug-def-mark
)
2377 ;; The buffer holding the source has been killed.
2378 ;; Let's at least show a backtrace so the user can figure out
2379 ;; which function we're talking about.
2381 ;; Setup windows for edebug, determine mode, maybe enter recursive-edit.
2382 ;; Uses local variables of edebug-enter, edebug-before, edebug-after
2383 ;; and edebug-debugger.
2384 (let ((edebug-active t
) ; For minor mode alist.
2385 (edebug-with-timeout-suspend (with-timeout-suspend))
2386 edebug-stop
; Should we enter recursive-edit?
2387 (edebug-point (+ edebug-def-mark
2388 (aref (nth 2 edebug-data
) offset-index
)))
2389 edebug-buffer-outside-point
; current point in edebug-buffer
2390 ;; window displaying edebug-buffer
2391 (edebug-window-data (nth 3 edebug-data
))
2392 (edebug-outside-window (selected-window))
2393 (edebug-outside-buffer (current-buffer))
2394 (edebug-outside-point (point))
2395 (edebug-outside-mark (edebug-mark))
2396 edebug-outside-windows
; Window or screen configuration.
2397 edebug-buffer-points
2399 edebug-eval-buffer
; Declared here so we can kill it below.
2400 (eval-result-list (and edebug-eval-list
2401 (edebug-eval-result-list)))
2403 edebug-trace-window-start
2405 (edebug-outside-d-c-i-n-s-w
2406 (default-value 'cursor-in-non-selected-windows
)))
2408 (let ((cursor-in-echo-area nil
)
2409 (unread-command-events nil
)
2412 (setq-default cursor-in-non-selected-windows t
)
2413 (if (not (buffer-name edebug-buffer
))
2414 (user-error "Buffer defining %s not found" edebug-function
))
2416 (if (eq 'after arg-mode
)
2417 ;; Compute result string now before windows are modified.
2418 (edebug-compute-previous-result value
))
2420 (if edebug-save-windows
2421 ;; Save windows now before we modify them.
2422 (setq edebug-outside-windows
2423 (edebug-current-windows edebug-save-windows
)))
2425 (if edebug-save-displayed-buffer-points
2426 (setq edebug-buffer-points
(edebug-get-displayed-buffer-points)))
2428 ;; First move the edebug buffer point to edebug-point
2429 ;; so that window start doesn't get changed when we display it.
2430 ;; I don't know if this is going to help.
2431 ;;(set-buffer edebug-buffer)
2432 ;;(goto-char edebug-point)
2434 ;; If edebug-buffer is not currently displayed,
2435 ;; first find a window for it.
2436 (edebug-pop-to-buffer edebug-buffer
(car edebug-window-data
))
2437 (setcar edebug-window-data
(selected-window))
2439 ;; Now display eval list, if any.
2440 ;; This is done after the pop to edebug-buffer
2441 ;; so that buffer-window correspondence is correct after quitting.
2442 (edebug-eval-display eval-result-list
)
2443 ;; The evaluation list better not have deleted edebug-window-data.
2444 (select-window (car edebug-window-data
))
2445 (set-buffer edebug-buffer
)
2447 (setq edebug-buffer-outside-point
(point))
2448 (goto-char edebug-point
)
2450 (if (eq 'before arg-mode
)
2451 ;; Check whether positions are up-to-date.
2452 ;; This assumes point is never before symbol.
2453 (if (not (memq (following-char) '(?\
( ?\
# ?\
` )))
2454 (user-error "Source has changed - reevaluate definition of %s"
2458 (setcdr edebug-window-data
2459 (edebug-adjust-window (cdr edebug-window-data
)))
2461 ;; Test if there is input, not including keyboard macros.
2462 (if (input-pending-p)
2464 (setq edebug-execution-mode
'step
2467 ;; (discard-input) ; is this unfriendly??
2470 ;; Make sure we bind those in the right buffer (bug#16410).
2471 (let ((overlay-arrow-position overlay-arrow-position
)
2472 (overlay-arrow-string overlay-arrow-string
))
2473 ;; Now display arrow based on mode.
2474 (edebug-overlay-arrow)
2477 ((eq 'error arg-mode
)
2478 ;; Display error message
2479 (setq edebug-execution-mode
'step
)
2480 (edebug-overlay-arrow)
2482 (if (eq 'quit
(car value
))
2484 (edebug-report-error value
)))
2487 (edebug-global-break
2488 (message "Global Break: %s => %s"
2489 edebug-global-break-condition
2490 edebug-global-break-result
))
2491 (edebug-break-condition
2492 (message "Break: %s => %s"
2493 edebug-break-condition
2494 edebug-break-result
))
2495 ((not (eq edebug-execution-mode
'Continue-fast
))
2501 (if (eq 'after arg-mode
)
2503 ;; Display result of previous evaluation.
2504 (if (and edebug-break
2505 (not (eq edebug-execution-mode
'Continue-fast
)))
2506 (sit-for edebug-sit-for-seconds
)) ; Show message.
2507 (edebug-previous-result)))
2512 ((eq edebug-execution-mode
'continue
)
2513 (sit-for edebug-sit-for-seconds
))
2514 ((eq edebug-execution-mode
'Continue-fast
) (sit-for 0))
2515 (t (setq edebug-stop t
))))
2517 ((eq edebug-execution-mode
'trace
)
2518 (sit-for edebug-sit-for-seconds
)) ; Force update and pause.
2519 ((eq edebug-execution-mode
'Trace-fast
)
2520 (sit-for 0))) ; Force update and continue.
2524 (memq edebug-execution-mode
'(step next
))
2525 (eq arg-mode
'error
))
2527 ;; (setq edebug-execution-mode 'step)
2528 ;; (edebug-overlay-arrow) ; This doesn't always show up.
2529 (edebug--recursive-edit arg-mode
))) ; <--- Recursive edit
2531 ;; Reset the edebug-window-data to whatever it is now.
2532 (let ((window (if (eq (window-buffer) edebug-buffer
)
2534 (get-buffer-window edebug-buffer
))))
2535 ;; Remember window-start for edebug-buffer, if still displayed.
2538 (setcar edebug-window-data window
)
2539 (setcdr edebug-window-data
(window-start window
)))))
2541 ;; Save trace window point before restoring outside windows.
2542 ;; Could generalize this for other buffers.
2543 (setq edebug-trace-window
2544 (get-buffer-window edebug-trace-buffer
))
2545 (if edebug-trace-window
2546 (setq edebug-trace-window-start
2547 (and edebug-trace-window
2548 (window-start edebug-trace-window
))))
2550 ;; Restore windows before continuing.
2551 (if edebug-save-windows
2553 (edebug-set-windows edebug-outside-windows
)
2555 ;; Restore displayed buffer points.
2556 ;; Needed even if restoring windows because
2557 ;; window-points are not restored. (should they be??)
2558 (if edebug-save-displayed-buffer-points
2559 (edebug-set-buffer-points edebug-buffer-points
))
2561 ;; Unrestore trace window's window-point.
2562 (if edebug-trace-window
2563 (set-window-start edebug-trace-window
2564 edebug-trace-window-start
))
2566 ;; Unrestore edebug-buffer's window-start, if displayed.
2567 (let ((window (car edebug-window-data
)))
2568 (if (and (edebug-window-live-p window
)
2569 (eq (window-buffer) edebug-buffer
))
2571 (set-window-start window
(cdr edebug-window-data
)
2573 ;; Unrestore edebug-buffer's window-point.
2574 ;; Needed in addition to setting the buffer point
2575 ;; - otherwise quitting doesn't leave point as is.
2576 ;; But can this causes point to not be restored.
2577 ;; Also, it may not be a visible window.
2578 ;; (set-window-point window edebug-point)
2581 ;; Unrestore edebug-buffer's point. Rerestored below.
2582 ;; (goto-char edebug-point) ;; in edebug-buffer
2584 ;; Since we may be in a save-excursion, in case of quit,
2585 ;; reselect the outside window only.
2586 ;; Only needed if we are not recovering windows??
2587 (if (edebug-window-live-p edebug-outside-window
)
2588 (select-window edebug-outside-window
))
2589 ) ; if edebug-save-windows
2591 ;; Restore current buffer always, in case application needs it.
2592 (if (buffer-name edebug-outside-buffer
)
2593 (set-buffer edebug-outside-buffer
))
2594 ;; Restore point, and mark.
2595 ;; Needed even if restoring windows because
2596 ;; that doesn't restore point and mark in the current buffer.
2597 ;; But don't restore point if edebug-buffer is current buffer.
2598 (if (not (eq edebug-buffer edebug-outside-buffer
))
2599 (goto-char edebug-outside-point
))
2600 (if (marker-buffer (edebug-mark-marker))
2601 ;; Does zmacs-regions need to be nil while doing set-marker?
2602 (set-marker (edebug-mark-marker) edebug-outside-mark
))
2604 ;; None of the following is done if quit or signal occurs.
2606 ;; Restore edebug-buffer's outside point.
2607 ;; (edebug-trace "restore edebug-buffer point: %s"
2608 ;; edebug-buffer-outside-point)
2609 (with-current-buffer edebug-buffer
2610 (goto-char edebug-buffer-outside-point
))
2611 ;; ... nothing more.
2613 ;; Could be an option to keep eval display up.
2614 (if edebug-eval-buffer
(kill-buffer edebug-eval-buffer
))
2615 (with-timeout-unsuspend edebug-with-timeout-suspend
)
2616 ;; Reset global variables to outside values in case they were changed.
2617 (setq-default cursor-in-non-selected-windows edebug-outside-d-c-i-n-s-w
)
2621 (defvar edebug-number-of-recursions
0)
2622 ;; Number of recursive edits started by edebug.
2623 ;; Should be 0 at the top level.
2625 (defvar edebug-recursion-depth
0)
2626 ;; Value of recursion-depth when edebug was called.
2628 ;; Dynamically declared unbound vars
2629 (defvar edebug-outside-match-data
) ; match data outside of edebug
2630 (defvar edebug-backtrace-buffer
) ; each recursive edit gets its own
2631 (defvar edebug-inside-windows
)
2632 (defvar edebug-interactive-p
)
2634 (defun edebug--recursive-edit (arg-mode)
2635 ;; Start up a recursive edit inside of edebug.
2636 ;; The current buffer is the edebug-buffer, which is put into edebug-mode.
2637 ;; Assume that none of the variables below are buffer-local.
2638 (let (;; match-data must be done in the outside buffer
2639 (edebug-outside-match-data
2640 (with-current-buffer edebug-outside-buffer
; in case match buffer different
2643 ;;(edebug-number-of-recursions (1+ edebug-number-of-recursions))
2644 (edebug-recursion-depth (recursion-depth))
2645 edebug-entered
; bind locally to nil
2646 (edebug-interactive-p nil
) ; again non-interactive
2647 edebug-backtrace-buffer
; each recursive edit gets its own
2648 ;; The window configuration may be saved and restored
2649 ;; during a recursive-edit
2650 edebug-inside-windows
2655 ;; Declare global values local but using the same global value.
2656 ;; We could set these to the values for previous edebug call.
2657 (last-command last-command
)
2658 (this-command this-command
)
2659 (current-prefix-arg nil
)
2661 ;; More for Emacs 19
2662 (last-input-event nil
)
2663 (last-command-event nil
)
2664 (last-event-frame nil
)
2665 (last-nonmenu-event nil
)
2671 ;; Don't keep reading from an executing kbd macro
2672 ;; within edebug unless edebug-continue-kbd-macro is
2673 ;; non-nil. Again, local binding may not be best.
2674 (executing-kbd-macro
2675 (if edebug-continue-kbd-macro executing-kbd-macro
))
2677 ;; Don't get confused by the user's keymap changes.
2678 (overriding-local-map nil
)
2679 (overriding-terminal-local-map nil
)
2681 ;; Bind again to outside values.
2682 (debug-on-error edebug-outside-debug-on-error
)
2683 (debug-on-quit edebug-outside-debug-on-quit
)
2685 ;; Don't keep defining a kbd macro.
2687 (if edebug-continue-kbd-macro defining-kbd-macro
))
2689 ;; Disable command hooks. This is essential when
2690 ;; a hook function is instrumented - to avoid infinite loop.
2691 ;; This may be more than we need, however.
2692 (pre-command-hook nil
)
2693 (post-command-hook nil
)
2698 (if (and (eq edebug-execution-mode
'go
)
2699 (not (memq arg-mode
'(after error
))))
2702 (setq signal-hook-function nil
)
2706 (recursive-edit) ; <<<<<<<<<< Recursive edit
2708 ;; Do the following, even if quit occurs.
2709 (setq signal-hook-function
'edebug-signal
)
2710 (if edebug-backtrace-buffer
2711 (kill-buffer edebug-backtrace-buffer
))
2713 ;; Remember selected-window after recursive-edit.
2714 ;; (setq edebug-inside-window (selected-window))
2716 (set-match-data edebug-outside-match-data
)
2718 ;; Recursive edit may have changed buffers,
2719 ;; so set it back before exiting let.
2720 (if (buffer-name edebug-buffer
) ; if it still exists
2722 (set-buffer edebug-buffer
)
2723 (if (memq edebug-execution-mode
'(go Go-nonstop
))
2724 (edebug-overlay-arrow))
2726 ;; gotta have a buffer to let its buffer local variables be set
2727 (get-buffer-create " bogus edebug buffer"))
2732 ;;; Display related functions
2734 (defun edebug-adjust-window (old-start)
2735 ;; If pos is not visible, adjust current window to fit following context.
2736 ;; (message "window: %s old-start: %s window-start: %s pos: %s"
2737 ;; (selected-window) old-start (window-start) (point)) (sit-for 5)
2738 (if (not (pos-visible-in-window-p))
2740 ;; First try old-start
2742 (set-window-start (selected-window) old-start
))
2743 (if (not (pos-visible-in-window-p))
2745 ;; (message "resetting window start") (sit-for 2)
2750 (if (< (point) (window-start)) -
1 ; one line before if in back
2751 (- (/ (window-height) 2)) ; center the line moving forward
2759 (defconst edebug-arrow-alist
2760 '((Continue-fast .
"=")
2767 (Go-nonstop .
"..") ; not used
2769 "Association list of arrows for each edebug mode.")
2771 (defun edebug-overlay-arrow ()
2772 ;; Set up the overlay arrow at beginning-of-line in current buffer.
2773 ;; The arrow string is derived from edebug-arrow-alist and
2774 ;; edebug-execution-mode.
2775 (let ((pos (line-beginning-position)))
2776 (setq overlay-arrow-string
2777 (cdr (assq edebug-execution-mode edebug-arrow-alist
)))
2778 (setq overlay-arrow-position
(make-marker))
2779 (set-marker overlay-arrow-position pos
(current-buffer))))
2782 (defun edebug-toggle-save-all-windows ()
2783 "Toggle the saving and restoring of all windows.
2784 Also, each time you toggle it on, the inside and outside window
2785 configurations become the same as the current configuration."
2787 (setq edebug-save-windows
(not edebug-save-windows
))
2788 (if edebug-save-windows
2789 (setq edebug-inside-windows
2790 (setq edebug-outside-windows
2791 (edebug-current-windows
2792 edebug-save-windows
))))
2793 (message "Window saving is %s for all windows."
2794 (if edebug-save-windows
"on" "off")))
2796 (defmacro edebug-changing-windows
(&rest body
)
2797 `(let ((window (selected-window)))
2798 (setq edebug-inside-windows
(edebug-current-windows t
))
2799 (edebug-set-windows edebug-outside-windows
)
2800 ,@body
;; Code to change edebug-save-windows
2801 (setq edebug-outside-windows
(edebug-current-windows
2802 edebug-save-windows
))
2803 ;; Problem: what about outside windows that are deleted inside?
2804 (edebug-set-windows edebug-inside-windows
)))
2806 (defun edebug-toggle-save-selected-window ()
2807 "Toggle the saving and restoring of the selected window.
2808 Also, each time you toggle it on, the inside and outside window
2809 configurations become the same as the current configuration."
2812 ((eq t edebug-save-windows
)
2813 ;; Save all outside windows except the selected one.
2814 ;; Remove (selected-window) from outside-windows.
2815 (edebug-changing-windows
2816 (setq edebug-save-windows
(delq window
(edebug-window-list)))))
2818 ((memq (selected-window) edebug-save-windows
)
2819 (setq edebug-outside-windows
2820 (delq (assq (selected-window) edebug-outside-windows
)
2821 edebug-outside-windows
))
2822 (setq edebug-save-windows
2823 (delq (selected-window) edebug-save-windows
)))
2824 (t ; Save a new window.
2825 (edebug-changing-windows
2826 (setq edebug-save-windows
(cons window edebug-save-windows
)))))
2828 (message "Window saving is %s for %s."
2829 (if (memq (selected-window) edebug-save-windows
)
2833 (defun edebug-toggle-save-windows (arg)
2834 "Toggle the saving and restoring of windows.
2835 With prefix, toggle for just the selected window.
2836 Otherwise, toggle for all windows."
2839 (edebug-toggle-save-selected-window)
2840 (edebug-toggle-save-all-windows)))
2842 (defun edebug-where ()
2843 "Show the debug windows and where we stopped in the program."
2845 (if (not edebug-active
)
2846 (error "Edebug is not active"))
2847 ;; Restore the window configuration to what it last was inside.
2848 ;; But it is not always set. - experiment
2849 ;;(if edebug-inside-windows
2850 ;; (edebug-set-windows edebug-inside-windows))
2851 (edebug-pop-to-buffer edebug-buffer
)
2852 (goto-char edebug-point
))
2854 (defun edebug-view-outside ()
2855 "Change to the outside window configuration.
2856 Use `edebug-where' to return."
2858 (if (not edebug-active
)
2859 (error "Edebug is not active"))
2860 (setq edebug-inside-windows
2861 (edebug-current-windows edebug-save-windows
))
2862 (edebug-set-windows edebug-outside-windows
)
2863 (goto-char edebug-outside-point
)
2864 (message "Window configuration outside of Edebug. Return with %s"
2865 (substitute-command-keys "\\<global-map>\\[edebug-where]")))
2868 (defun edebug-bounce-point (arg)
2869 "Bounce the point in the outside current buffer.
2870 If prefix argument ARG is supplied, sit for that many seconds
2871 before returning. The default is one second."
2873 (if (not edebug-active
)
2874 (error "Edebug is not active"))
2876 ;; If the buffer's currently displayed, avoid set-window-configuration.
2877 (save-window-excursion
2878 (edebug-pop-to-buffer edebug-outside-buffer
)
2879 (goto-char edebug-outside-point
)
2880 (message "Current buffer: %s Point: %s Mark: %s"
2881 (current-buffer) (point)
2882 (if (marker-buffer (edebug-mark-marker))
2883 (marker-position (edebug-mark-marker)) "<not set>"))
2885 (edebug-pop-to-buffer edebug-buffer
(car edebug-window-data
)))))
2888 ;; Joe Wells, here is a start at your idea of adding a buffer to the internal
2889 ;; display list. Still need to use this list in edebug--display.
2891 '(defvar edebug-display-buffer-list nil
2892 "List of buffers that edebug will display when it is active.")
2894 '(defun edebug-display-buffer (buffer)
2895 "Toggle display of a buffer inside of edebug."
2896 (interactive "bBuffer: ")
2897 (let ((already-displaying (memq buffer edebug-display-buffer-list
)))
2898 (setq edebug-display-buffer-list
2899 (if already-displaying
2900 (delq buffer edebug-display-buffer-list
)
2901 (cons buffer edebug-display-buffer-list
)))
2902 (message "Displaying %s %s" buffer
2903 (if already-displaying
"off" "on"))))
2905 ;;; Breakpoint related functions
2907 (defun edebug-find-stop-point ()
2908 ;; Return (function . index) of the nearest edebug stop point.
2909 (let* ((edebug-def-name (edebug-form-data-symbol))
2911 (let ((data (get edebug-def-name
'edebug
)))
2912 (if (or (null data
) (markerp data
))
2913 (error "%s is not instrumented for Edebug" edebug-def-name
))
2914 data
)) ; we could do it automatically, if data is a marker.
2915 ;; pull out parts of edebug-data.
2916 (edebug-def-mark (car edebug-data
))
2917 ;; (edebug-breakpoints (car (cdr edebug-data)))
2919 (offset-vector (nth 2 edebug-data
))
2920 (offset (- (save-excursion
2921 (if (looking-at "[ \t]")
2922 ;; skip backwards until non-whitespace, or bol
2923 (skip-chars-backward " \t"))
2927 ;; the offsets are in order so we can do a linear search
2928 (setq len
(length offset-vector
))
2930 (while (and (< i len
) (> offset
(aref offset-vector i
)))
2933 (<= offset
(aref offset-vector i
)))
2934 ;; return the relevant info
2935 (cons edebug-def-name i
)
2936 (message "Point is not on an expression in %s."
2941 (defun edebug-next-breakpoint ()
2942 "Move point to the next breakpoint, or first if none past point."
2944 (let ((edebug-stop-point (edebug-find-stop-point)))
2945 (if edebug-stop-point
2946 (let* ((edebug-def-name (car edebug-stop-point
))
2947 (index (cdr edebug-stop-point
))
2948 (edebug-data (get edebug-def-name
'edebug
))
2950 ;; pull out parts of edebug-data
2951 (edebug-def-mark (car edebug-data
))
2952 (edebug-breakpoints (car (cdr edebug-data
)))
2953 (offset-vector (nth 2 edebug-data
))
2955 (if (not edebug-breakpoints
)
2956 (message "No breakpoints in this function.")
2957 (let ((breaks edebug-breakpoints
))
2959 (<= (car (car breaks
)) index
))
2960 (setq breaks
(cdr breaks
)))
2964 ;; goto the first breakpoint
2965 (car edebug-breakpoints
)))
2966 (goto-char (+ edebug-def-mark
2967 (aref offset-vector
(car breakpoint
))))
2970 (concat (if (nth 2 breakpoint
)
2972 (if (car (cdr breakpoint
))
2973 (format "Condition: %s"
2974 (edebug-safe-prin1-to-string
2975 (car (cdr breakpoint
))))
2980 (defun edebug-modify-breakpoint (flag &optional condition temporary
)
2981 "Modify the breakpoint for the form at point or after it.
2982 Set it if FLAG is non-nil, clear it otherwise. Then move to that point.
2983 If CONDITION or TEMPORARY are non-nil, add those attributes to
2985 (let ((edebug-stop-point (edebug-find-stop-point)))
2986 (if edebug-stop-point
2987 (let* ((edebug-def-name (car edebug-stop-point
))
2988 (index (cdr edebug-stop-point
))
2989 (edebug-data (get edebug-def-name
'edebug
))
2991 ;; pull out parts of edebug-data
2992 (edebug-def-mark (car edebug-data
))
2993 (edebug-breakpoints (car (cdr edebug-data
)))
2994 (offset-vector (nth 2 edebug-data
))
2996 ;; delete it either way
2997 (setq present
(assq index edebug-breakpoints
))
2998 (setq edebug-breakpoints
(delq present edebug-breakpoints
))
3001 ;; add it to the list and resort
3002 (setq edebug-breakpoints
3005 (list index condition temporary
)
3006 edebug-breakpoints
) '<))
3008 (message "Breakpoint set in %s with condition: %s"
3009 edebug-def-name condition
)
3010 (message "Breakpoint set in %s" edebug-def-name
)))
3012 (message "Breakpoint unset in %s" edebug-def-name
)
3013 (message "No breakpoint here")))
3015 (setcar (cdr edebug-data
) edebug-breakpoints
)
3016 (goto-char (+ edebug-def-mark
(aref offset-vector index
)))
3019 (defun edebug-set-breakpoint (arg)
3020 "Set the breakpoint of nearest sexp.
3021 With prefix argument, make it a temporary breakpoint."
3023 (edebug-modify-breakpoint t nil arg
))
3025 (defun edebug-unset-breakpoint ()
3026 "Clear the breakpoint of nearest sexp."
3028 (edebug-modify-breakpoint nil
))
3031 (defun edebug-set-global-break-condition (expression)
3032 "Set `edebug-global-break-condition' to EXPRESSION."
3035 (let ((initial (and edebug-global-break-condition
3036 (format "%s" edebug-global-break-condition
))))
3037 (read-from-minibuffer
3038 "Global Condition: " initial read-expression-map t
3039 (if (equal (car read-expression-history
) initial
)
3040 '(read-expression-history .
1)
3041 'read-expression-history
)))))
3042 (setq edebug-global-break-condition expression
))
3045 ;;; Mode switching functions
3047 (defun edebug-set-mode (mode shortmsg msg
)
3048 ;; Set the edebug mode to MODE.
3049 ;; Display SHORTMSG, or MSG if not within edebug.
3050 (if (eq (1+ edebug-recursion-depth
) (recursion-depth))
3052 (setq edebug-execution-mode mode
)
3053 (message "%s" shortmsg
)
3054 ;; Continue execution
3055 (exit-recursive-edit))
3056 ;; This is not terribly useful!!
3057 (setq edebug-next-execution-mode mode
)
3058 (message "%s" msg
)))
3061 (defalias 'edebug-step-through-mode
'edebug-step-mode
)
3063 (defun edebug-step-mode ()
3064 "Proceed to next stop point."
3066 (edebug-set-mode 'step
"" "Edebug will stop at next stop point."))
3068 (defun edebug-next-mode ()
3069 "Proceed to next `after' stop point."
3071 (edebug-set-mode 'next
"" "Edebug will stop after next eval."))
3073 (defun edebug-go-mode (arg)
3074 "Go, evaluating until break.
3075 With prefix ARG, set temporary break at current point and go."
3078 (edebug-set-breakpoint t
))
3079 (edebug-set-mode 'go
"Go..." "Edebug will go until break."))
3081 (defun edebug-Go-nonstop-mode ()
3082 "Go, evaluating without debugging.
3083 You can use `edebug-stop', or any editing command, to stop."
3085 (edebug-set-mode 'Go-nonstop
"Go-Nonstop..."
3086 "Edebug will not stop at breaks."))
3089 (defun edebug-trace-mode ()
3091 Pauses for `edebug-sit-for-seconds' at each stop point."
3093 (edebug-set-mode 'trace
"Tracing..." "Edebug will trace with pause."))
3095 (defun edebug-Trace-fast-mode ()
3096 "Trace with no wait at each step.
3097 Updates the display at each stop point, but does not pause."
3099 (edebug-set-mode 'Trace-fast
3100 "Trace fast..." "Edebug will trace without pause."))
3102 (defun edebug-continue-mode ()
3103 "Begin continue mode.
3104 Pauses for `edebug-sit-for-seconds' at each break point."
3106 (edebug-set-mode 'continue
"Continue..."
3107 "Edebug will pause at breakpoints."))
3109 (defun edebug-Continue-fast-mode ()
3110 "Trace with no wait at each step.
3111 Updates the display at each break point, but does not pause."
3113 (edebug-set-mode 'Continue-fast
"Continue fast..."
3114 "Edebug will stop and go at breakpoints."))
3116 ;; ------------------------------------------------------------
3117 ;; The following use the mode changing commands and breakpoints.
3120 (defun edebug-goto-here ()
3121 "Proceed to first stop-point at or after current position of point."
3126 (defun edebug-stop ()
3127 "Stop execution and do not continue.
3128 Useful for exiting from trace or continue loop."
3133 '(defun edebug-forward ()
3134 "Proceed to the exit of the next expression to be evaluated."
3138 "Edebug will stop after exiting the next expression."))
3141 (defun edebug-forward-sexp (arg)
3142 "Proceed from the current point to the end of the ARGth sexp ahead.
3143 If there are not ARG sexps ahead, then do `edebug-step-out'."
3146 (let ((parse-sexp-ignore-comments t
))
3147 ;; Call forward-sexp repeatedly until done or failure.
3154 (defun edebug-step-out ()
3155 "Proceed from the current point to the end of the containing sexp.
3156 If there is no containing sexp that is not the top level defun,
3157 go to the end of the last sexp, or if that is the same point, then step."
3160 (let ((parse-sexp-ignore-comments t
))
3163 ;; Is there still a containing expression?
3167 ;; At top level - 1, so first check if there are more sexps at this level.
3168 (let ((start-point (point)))
3171 (if (= (point) start-point
)
3172 (edebug-step-mode) ; No more at this level, so step.
3176 (defun edebug-instrument-function (func)
3177 ;; Func should be a function symbol.
3178 ;; Return the function symbol, or nil if not instrumented.
3179 (let ((func-marker (get func
'edebug
)))
3181 ((and (markerp func-marker
) (marker-buffer func-marker
))
3182 ;; It is uninstrumented, so instrument it.
3183 (with-current-buffer (marker-buffer func-marker
)
3184 (goto-char func-marker
)
3185 (edebug-eval-top-level-form)
3187 ((consp func-marker
)
3188 (message "%s is already instrumented." func
)
3191 (let ((loc (find-function-noselect func t
)))
3193 (error "Could not find the definition in its file"))
3194 (with-current-buffer (car loc
)
3195 (goto-char (cdr loc
))
3196 (edebug-eval-top-level-form)
3199 (defun edebug-instrument-callee ()
3200 "Instrument the definition of the function or macro about to be called.
3201 Do this when stopped before the form or it will be too late.
3202 One side effect of using this command is that the next time the
3203 function or macro is called, Edebug will be called there as well."
3205 (if (not (looking-at "\("))
3206 (error "You must be before a list form")
3210 (if (looking-at "\(")
3211 (edebug--form-data-name
3212 (edebug-get-form-data-entry (point)))
3213 (edebug-original-read (current-buffer))))))
3214 (edebug-instrument-function func
))))
3217 (defun edebug-step-in ()
3218 "Step into the definition of the function or macro about to be called.
3219 This first does `edebug-instrument-callee' to ensure that it is
3220 instrumented. Then it does `edebug-on-entry' and switches to `go' mode."
3222 (let ((func (edebug-instrument-callee)))
3225 (edebug-on-entry func
'temp
)
3226 (edebug-go-mode nil
)))))
3228 (defun edebug-on-entry (function &optional flag
)
3229 "Cause Edebug to stop when FUNCTION is called.
3230 With prefix argument, make this temporary so it is automatically
3231 canceled the first time the function is entered."
3232 (interactive "aEdebug on entry to: \nP")
3233 ;; Could store this in the edebug data instead.
3234 (put function
'edebug-on-entry
(if flag
'temp t
)))
3236 (defun cancel-edebug-on-entry (function)
3237 (interactive "aEdebug on entry to: ")
3238 (put function
'edebug-on-entry nil
))
3241 (if (not (fboundp 'edebug-original-debug-on-entry
))
3242 (fset 'edebug-original-debug-on-entry
(symbol-function 'debug-on-entry
)))
3243 '(fset 'debug-on-entry
'edebug-debug-on-entry
) ;; Should we do this?
3244 ;; Also need edebug-cancel-debug-on-entry
3246 '(defun edebug-debug-on-entry (function)
3247 "Request FUNCTION to invoke debugger each time it is called.
3248 If the user continues, FUNCTION's execution proceeds.
3249 Works by modifying the definition of FUNCTION,
3250 which must be written in Lisp, not predefined.
3251 Use `cancel-debug-on-entry' to cancel the effect of this command.
3252 Redefining FUNCTION also does that.
3254 This version is from Edebug. If the function is instrumented for
3255 Edebug, it calls `edebug-on-entry'."
3256 (interactive "aDebug on entry (to function): ")
3257 (let ((func-data (get function
'edebug
)))
3258 (if (or (null func-data
) (markerp func-data
))
3259 (edebug-original-debug-on-entry function
)
3260 (edebug-on-entry function
))))
3263 (defun edebug-top-level-nonstop ()
3264 "Set mode to Go-nonstop, and exit to top-level.
3265 This is useful for exiting even if `unwind-protect' code may be executed."
3267 (setq edebug-execution-mode
'Go-nonstop
)
3271 ;;(defun edebug-exit-out ()
3272 ;; "Go until the current function exits."
3274 ;; (edebug-set-mode 'exiting "Exit..."))
3277 ;;; The following initial mode setting definitions are not used yet.
3279 '(defconst edebug-initial-mode-alist
3280 '((edebug-Continue-fast . Continue-fast
)
3281 (edebug-Trace-fast . Trace-fast
)
3282 (edebug-continue . continue
)
3283 (edebug-trace . trace
)
3285 (edebug-step-through . step
)
3286 (edebug-Go-nonstop . Go-nonstop
)
3288 "Association list between commands and the modes they set.")
3291 '(defun edebug-set-initial-mode ()
3292 "Ask for the initial mode of the enclosing function.
3293 The mode is requested via the key that would be used to set the mode in
3296 (let* ((this-function (edebug-which-function))
3297 (keymap (if (eq edebug-mode-map
(current-local-map))
3299 (old-mode (or (get this-function
'edebug-initial-mode
)
3300 edebug-initial-mode
))
3301 (key (read-key-sequence
3303 "Change initial edebug mode for %s from %s (%s) to (enter key): "
3307 (car (rassq old-mode edebug-initial-mode-alist
))
3310 (mode (cdr (assq (key-binding key
) edebug-initial-mode-alist
)))
3313 (or (get this-function
'edebug-initial-mode
)
3314 (not (eq mode edebug-initial-mode
))))
3316 (put this-function
'edebug-initial-mode mode
)
3317 (message "Initial mode for %s is now: %s"
3318 this-function mode
))
3319 (error "Key must map to one of the mode changing commands")
3322 ;;; Evaluation of expressions
3324 (defmacro edebug-outside-excursion
(&rest body
)
3325 "Evaluate an expression list in the outside context.
3326 Return the result of the last expression."
3327 ;; Only restores the non-variables context since all the variables let-bound
3328 ;; by Edebug will be properly reset to the appropriate context's value by
3331 `(save-excursion ; of current-buffer
3332 (if edebug-save-windows
3334 ;; After excursion, we will
3335 ;; restore to current window configuration.
3336 (setq edebug-inside-windows
3337 (edebug-current-windows edebug-save-windows
))
3338 ;; Restore outside windows.
3339 (edebug-set-windows edebug-outside-windows
)))
3341 (set-buffer edebug-buffer
) ; why?
3342 (set-match-data edebug-outside-match-data
)
3343 ;; Restore outside context.
3344 (setq-default cursor-in-non-selected-windows edebug-outside-d-c-i-n-s-w
)
3346 (with-current-buffer edebug-outside-buffer
; of edebug-buffer
3347 (goto-char edebug-outside-point
)
3348 (if (marker-buffer (edebug-mark-marker))
3349 (set-marker (edebug-mark-marker) edebug-outside-mark
))
3352 ;; Back to edebug-buffer. Restore rest of inside context.
3353 ;; (use-local-map edebug-inside-map)
3354 (if edebug-save-windows
3355 ;; Restore inside windows.
3356 (edebug-set-windows edebug-inside-windows
))
3358 ;; Save values that may have been changed.
3359 (setq edebug-outside-d-c-i-n-s-w
3360 (default-value 'cursor-in-non-selected-windows
))
3362 ;; Restore the outside saved values; don't alter
3363 ;; the outside binding loci.
3364 (setq-default cursor-in-non-selected-windows t
))))
3366 (defun edebug-eval (expr)
3367 (backtrace-eval expr
0 'edebug-after
))
3369 (defun edebug-safe-eval (expr)
3370 ;; Evaluate EXPR safely.
3371 ;; If there is an error, a string is returned describing the error.
3372 (condition-case edebug-err
3374 (error (edebug-format "%s: %s" ;; could
3375 (get (car edebug-err
) 'error-message
)
3376 (car (cdr edebug-err
))))))
3381 (defun edebug-report-error (value)
3382 ;; Print an error message like command level does.
3383 ;; This also prints the error name if it has no error-message.
3385 (or (get (car value
) 'error-message
)
3386 (format "peculiar error (%s)" (car value
)))
3387 (mapconcat (function (lambda (edebug-arg)
3388 ;; continuing after an error may
3389 ;; complain about edebug-arg. why??
3390 (prin1-to-string edebug-arg
)))
3393 (defvar print-readably
) ; defined by lemacs
3394 ;; Alternatively, we could change the definition of
3395 ;; edebug-safe-prin1-to-string to only use these if defined.
3397 (defun edebug-safe-prin1-to-string (value)
3398 (let ((print-escape-newlines t
)
3399 (print-length (or edebug-print-length print-length
))
3400 (print-level (or edebug-print-level print-level
))
3401 (print-circle (or edebug-print-circle print-circle
))
3402 (print-readably nil
)) ; lemacs uses this.
3404 (edebug-prin1-to-string value
)
3405 (error "#Apparently circular structure#"))))
3407 (defun edebug-compute-previous-result (previous-value)
3408 (if edebug-unwrap-results
3409 (setq previous-value
3410 (edebug-unwrap* previous-value
)))
3411 (setq edebug-previous-result
3413 (edebug-safe-prin1-to-string previous-value
)
3414 (eval-expression-print-format previous-value
))))
3416 (defun edebug-previous-result ()
3417 "Print the previous result."
3419 (message "%s" edebug-previous-result
))
3421 ;;; Read, Eval and Print
3423 (defalias 'edebug-prin1
'prin1
)
3424 (defalias 'edebug-print
'print
)
3425 (defalias 'edebug-prin1-to-string
'prin1-to-string
)
3426 (defalias 'edebug-format
'format
)
3427 (defalias 'edebug-message
'message
)
3429 (defun edebug-eval-expression (expr)
3430 "Evaluate an expression in the outside environment.
3431 If interactive, prompt for the expression.
3432 Print result in minibuffer."
3433 (interactive (list (read-from-minibuffer
3434 "Eval: " nil read-expression-map t
3435 'read-expression-history
)))
3437 (edebug-outside-excursion
3438 (setq values
(cons (edebug-eval expr
) values
))
3439 (concat (edebug-safe-prin1-to-string (car values
))
3440 (eval-expression-print-format (car values
))))))
3442 (defun edebug-eval-last-sexp ()
3443 "Evaluate sexp before point in the outside environment.
3444 Print value in minibuffer."
3446 (edebug-eval-expression (edebug-last-sexp)))
3448 (defun edebug-eval-print-last-sexp ()
3449 "Evaluate sexp before point in outside environment; insert value.
3450 This prints the value into current buffer."
3452 (let* ((form (edebug-last-sexp))
3454 (edebug-outside-excursion
3455 (edebug-safe-prin1-to-string (edebug-safe-eval form
))))
3456 (standard-output (current-buffer)))
3458 ;; princ the string to get rid of quotes.
3459 (princ result-string
)
3463 ;;; Edebug Minor Mode
3465 (defvar edebug-inhibit-emacs-lisp-mode-bindings nil
3466 "If non-nil, inhibit Edebug bindings on the C-x C-a key.
3467 By default, loading the `edebug' library causes these bindings to
3468 be installed in `emacs-lisp-mode-map'.")
3470 (define-obsolete-variable-alias 'gud-inhibit-global-bindings
3471 'edebug-inhibit-emacs-lisp-mode-bindings
"24.3")
3473 ;; Global GUD bindings for all emacs-lisp-mode buffers.
3474 (unless edebug-inhibit-emacs-lisp-mode-bindings
3475 (define-key emacs-lisp-mode-map
"\C-x\C-a\C-s" 'edebug-step-mode
)
3476 (define-key emacs-lisp-mode-map
"\C-x\C-a\C-n" 'edebug-next-mode
)
3477 (define-key emacs-lisp-mode-map
"\C-x\C-a\C-c" 'edebug-go-mode
)
3478 (define-key emacs-lisp-mode-map
"\C-x\C-a\C-l" 'edebug-where
))
3480 (defvar edebug-mode-map
3481 (let ((map (copy-keymap emacs-lisp-mode-map
)))
3483 (define-key map
" " 'edebug-step-mode
)
3484 (define-key map
"n" 'edebug-next-mode
)
3485 (define-key map
"g" 'edebug-go-mode
)
3486 (define-key map
"G" 'edebug-Go-nonstop-mode
)
3487 (define-key map
"t" 'edebug-trace-mode
)
3488 (define-key map
"T" 'edebug-Trace-fast-mode
)
3489 (define-key map
"c" 'edebug-continue-mode
)
3490 (define-key map
"C" 'edebug-Continue-fast-mode
)
3492 ;;(define-key map "f" 'edebug-forward) not implemented
3493 (define-key map
"f" 'edebug-forward-sexp
)
3494 (define-key map
"h" 'edebug-goto-here
)
3496 (define-key map
"I" 'edebug-instrument-callee
)
3497 (define-key map
"i" 'edebug-step-in
)
3498 (define-key map
"o" 'edebug-step-out
)
3500 ;; quitting and stopping
3501 (define-key map
"q" 'top-level
)
3502 (define-key map
"Q" 'edebug-top-level-nonstop
)
3503 (define-key map
"a" 'abort-recursive-edit
)
3504 (define-key map
"S" 'edebug-stop
)
3507 (define-key map
"b" 'edebug-set-breakpoint
)
3508 (define-key map
"u" 'edebug-unset-breakpoint
)
3509 (define-key map
"B" 'edebug-next-breakpoint
)
3510 (define-key map
"x" 'edebug-set-conditional-breakpoint
)
3511 (define-key map
"X" 'edebug-set-global-break-condition
)
3514 (define-key map
"r" 'edebug-previous-result
)
3515 (define-key map
"e" 'edebug-eval-expression
)
3516 (define-key map
"\C-x\C-e" 'edebug-eval-last-sexp
)
3517 (define-key map
"E" 'edebug-visit-eval-list
)
3520 (define-key map
"w" 'edebug-where
)
3521 (define-key map
"v" 'edebug-view-outside
) ;; maybe obsolete??
3522 (define-key map
"p" 'edebug-bounce-point
)
3523 (define-key map
"P" 'edebug-view-outside
) ;; same as v
3524 (define-key map
"W" 'edebug-toggle-save-windows
)
3527 (define-key map
"?" 'edebug-help
)
3528 (define-key map
"d" 'edebug-backtrace
)
3530 (define-key map
"-" 'negative-argument
)
3533 (define-key map
"=" 'edebug-temp-display-freq-count
)
3536 (define-key map
"\C-c\C-s" 'edebug-step-mode
)
3537 (define-key map
"\C-c\C-n" 'edebug-next-mode
)
3538 (define-key map
"\C-c\C-c" 'edebug-go-mode
)
3540 (define-key map
"\C-x " 'edebug-set-breakpoint
)
3541 (define-key map
"\C-c\C-d" 'edebug-unset-breakpoint
)
3542 (define-key map
"\C-c\C-t"
3543 (lambda () (interactive) (edebug-set-breakpoint t
)))
3544 (define-key map
"\C-c\C-l" 'edebug-where
)
3547 ;; Autoloading these global bindings doesn't make sense because
3548 ;; they cannot be used anyway unless Edebug is already loaded and active.
3550 (defvar global-edebug-prefix
"\^XX"
3551 "Prefix key for global edebug commands, available from any buffer.")
3553 (defvar global-edebug-map
3554 (let ((map (make-sparse-keymap)))
3556 (define-key map
" " 'edebug-step-mode
)
3557 (define-key map
"g" 'edebug-go-mode
)
3558 (define-key map
"G" 'edebug-Go-nonstop-mode
)
3559 (define-key map
"t" 'edebug-trace-mode
)
3560 (define-key map
"T" 'edebug-Trace-fast-mode
)
3561 (define-key map
"c" 'edebug-continue-mode
)
3562 (define-key map
"C" 'edebug-Continue-fast-mode
)
3565 (define-key map
"b" 'edebug-set-breakpoint
)
3566 (define-key map
"u" 'edebug-unset-breakpoint
)
3567 (define-key map
"x" 'edebug-set-conditional-breakpoint
)
3568 (define-key map
"X" 'edebug-set-global-break-condition
)
3571 (define-key map
"w" 'edebug-where
)
3572 (define-key map
"W" 'edebug-toggle-save-windows
)
3575 (define-key map
"q" 'top-level
)
3576 (define-key map
"Q" 'edebug-top-level-nonstop
)
3577 (define-key map
"a" 'abort-recursive-edit
)
3580 (define-key map
"=" 'edebug-display-freq-count
)
3582 "Global map of edebug commands, available from any buffer.")
3584 (global-unset-key global-edebug-prefix
)
3585 (global-set-key global-edebug-prefix global-edebug-map
)
3588 (defun edebug-help ()
3589 "Describe `edebug-mode'."
3591 (describe-function 'edebug-mode
))
3593 (defvar edebug--mode-saved-vars nil
)
3595 (define-minor-mode edebug-mode
3596 "Mode for Emacs Lisp buffers while in Edebug.
3598 In addition to all Emacs Lisp commands (except those that modify the
3599 buffer) there are local and global key bindings to several Edebug
3600 specific commands. E.g. `edebug-step-mode' is bound to \\[edebug-step-mode]
3601 in the Edebug buffer and \\<global-map>\\[edebug-step-mode] in any buffer.
3603 Also see bindings for the eval list buffer *edebug* in `edebug-eval-mode'.
3605 The edebug buffer commands:
3608 Global commands prefixed by `global-edebug-prefix':
3609 \\{global-edebug-map}
3615 `edebug-save-windows'
3616 `edebug-save-displayed-buffer-points'
3617 `edebug-initial-mode'
3619 `edebug-test-coverage'
3620 `edebug-continue-kbd-macro'
3621 `edebug-print-length'
3622 `edebug-print-level'
3623 `edebug-print-circle'
3627 `edebug-unwrap-results'
3628 `edebug-global-break-condition'"
3629 :lighter
" *Debugging*"
3630 :keymap edebug-mode-map
3631 ;; If the user kills the buffer in which edebug is currently active,
3632 ;; exit to top level, because the edebug command loop can't usefully
3633 ;; continue running in such a case.
3635 (if (not edebug-mode
)
3637 (while edebug--mode-saved-vars
3638 (let ((setting (pop edebug--mode-saved-vars
)))
3640 (set (car setting
) (cdr setting
))
3641 (kill-local-variable setting
))))
3642 (remove-hook 'kill-buffer-hook
'edebug-kill-buffer t
))
3643 (pcase-dolist (`(,var .
,val
) '((buffer-read-only . t
)))
3645 (if (local-variable-p var
) (cons var
(symbol-value var
)) var
)
3646 edebug--mode-saved-vars
)
3647 (set (make-local-variable var
) val
))
3648 ;; Append `edebug-kill-buffer' to the hook to avoid interfering with
3649 ;; other entries that are unguarded against deleted buffer.
3650 (add-hook 'kill-buffer-hook
'edebug-kill-buffer t t
)))
3652 (defun edebug-kill-buffer ()
3653 "Used on `kill-buffer-hook' when Edebug is operating in a buffer of Lisp code."
3654 (run-with-timer 0 nil
#'top-level
))
3656 ;;; edebug eval list mode
3658 ;; A list of expressions and their evaluations is displayed in *edebug*.
3660 (defun edebug-eval-result-list ()
3661 "Return a list of evaluations of `edebug-eval-list'."
3662 ;; Assumes in outside environment.
3663 ;; Don't do any edebug things now.
3664 (let ((edebug-execution-mode 'Go-nonstop
)
3666 (mapcar 'edebug-safe-eval edebug-eval-list
)))
3668 (defun edebug-eval-display-list (eval-result-list)
3669 ;; Assumes edebug-eval-buffer exists.
3670 (let ((standard-output edebug-eval-buffer
)
3671 (edebug-comment-line
3672 (format ";%s\n" (make-string (- (window-width) 2) ?-
))))
3673 (set-buffer edebug-eval-buffer
)
3675 (dolist (exp edebug-eval-list
)
3676 (prin1 exp
) (terpri)
3677 (prin1 (pop eval-result-list
)) (terpri)
3678 (princ edebug-comment-line
))
3679 (edebug-pop-to-buffer edebug-eval-buffer
)
3682 (defun edebug-create-eval-buffer ()
3683 (unless (and edebug-eval-buffer
(buffer-name edebug-eval-buffer
))
3684 (set-buffer (setq edebug-eval-buffer
(get-buffer-create "*edebug*")))
3685 (edebug-eval-mode)))
3687 ;; Should generalize this to be callable outside of edebug
3688 ;; with calls in user functions, e.g. (edebug-eval-display)
3690 (defun edebug-eval-display (eval-result-list)
3691 "Display expressions and evaluations in EVAL-RESULT-LIST.
3692 It modifies the context by popping up the eval display."
3693 (when eval-result-list
3694 (edebug-create-eval-buffer)
3695 (edebug-eval-display-list eval-result-list
)))
3697 (defun edebug-eval-redisplay ()
3698 "Redisplay eval list in outside environment.
3699 May only be called from within `edebug--recursive-edit'."
3700 (edebug-create-eval-buffer)
3701 (edebug-outside-excursion
3702 (edebug-eval-display-list (edebug-eval-result-list))
3705 (defun edebug-visit-eval-list ()
3706 "Switch to the evaluation list buffer \"*edebug*\"."
3708 (edebug-eval-redisplay)
3709 (edebug-pop-to-buffer edebug-eval-buffer
))
3712 (defun edebug-update-eval-list ()
3713 "Replace the evaluation list with the sexps now in the eval buffer."
3715 (let ((starting-point (point))
3717 (goto-char (point-min))
3718 ;; get the first expression
3719 (edebug-skip-whitespace)
3723 (push (edebug-last-sexp) new-list
)))
3725 (while (re-search-forward "^;" nil t
)
3727 (skip-chars-forward " \t\n\r")
3728 (if (and (/= ?\
; (following-char))
3732 (push (edebug-last-sexp) new-list
))))
3734 (setq edebug-eval-list
(nreverse new-list
))
3735 (edebug-eval-redisplay)
3736 (goto-char starting-point
)))
3739 (defun edebug-delete-eval-item ()
3740 "Delete the item under point and redisplay."
3741 ;; could add arg to do repeatedly
3743 (if (re-search-backward "^;" nil
'nofail
)
3746 (point) (progn (re-search-forward "^;" nil
'nofail
)
3749 (edebug-update-eval-list))
3753 (defvar edebug-eval-mode-map
3754 (let ((map (make-sparse-keymap)))
3755 (set-keymap-parent map lisp-interaction-mode-map
)
3756 (define-key map
"\C-c\C-w" 'edebug-where
)
3757 (define-key map
"\C-c\C-d" 'edebug-delete-eval-item
)
3758 (define-key map
"\C-c\C-u" 'edebug-update-eval-list
)
3759 (define-key map
"\C-x\C-e" 'edebug-eval-last-sexp
)
3760 (define-key map
"\C-j" 'edebug-eval-print-last-sexp
)
3762 "Keymap for Edebug Eval mode. Superset of Lisp Interaction mode.")
3764 (put 'edebug-eval-mode
'mode-class
'special
)
3766 (define-derived-mode edebug-eval-mode lisp-interaction-mode
"Edebug Eval"
3767 "Mode for evaluation list buffer while in Edebug.
3769 In addition to all Interactive Emacs Lisp commands there are local and
3770 global key bindings to several Edebug specific commands. E.g.
3771 `edebug-step-mode' is bound to \\[edebug-step-mode] in the Edebug
3772 buffer and \\<global-map>\\[edebug-step-mode] in any buffer.
3774 Eval list buffer commands:
3775 \\{edebug-eval-mode-map}
3777 Global commands prefixed by `global-edebug-prefix':
3778 \\{global-edebug-map}")
3780 ;;; Interface with standard debugger.
3782 ;; (setq debugger 'edebug) ; to use the edebug debugger
3783 ;; (setq debugger 'debug) ; use the standard debugger
3785 ;; Note that debug and its utilities must be byte-compiled to work,
3786 ;; since they depend on the backtrace looking a certain way. But
3787 ;; edebug is not dependent on this, yet.
3789 (defun edebug (&optional arg-mode
&rest args
)
3790 "Replacement for `debug'.
3791 If we are running an edebugged function, show where we last were.
3792 Otherwise call `debug' normally."
3793 ;;(message "entered: %s depth: %s edebug-recursion-depth: %s"
3794 ;; edebug-entered (recursion-depth) edebug-recursion-depth) (sit-for 1)
3795 (if (and edebug-entered
; anything active?
3796 (eq (recursion-depth) edebug-recursion-depth
))
3797 (let (;; Where were we before the error occurred?
3798 (offset-index (car edebug-offset-indices
))
3800 ;; Bind variables required by edebug--display.
3803 edebug-break-condition
3805 (edebug-break (null arg-mode
)) ;; If called explicitly.
3807 (edebug--display value offset-index arg-mode
)
3808 (if (eq arg-mode
'error
)
3812 ;; Otherwise call debug normally.
3813 ;; Still need to remove extraneous edebug calls from stack.
3814 (apply 'debug arg-mode args
)
3818 (defun edebug-backtrace ()
3819 "Display a non-working backtrace. Better than nothing..."
3821 (if (or (not edebug-backtrace-buffer
)
3822 (null (buffer-name edebug-backtrace-buffer
)))
3823 (setq edebug-backtrace-buffer
3824 (generate-new-buffer "*Backtrace*"))
3825 ;; Else, could just display edebug-backtrace-buffer.
3827 (with-output-to-temp-buffer (buffer-name edebug-backtrace-buffer
)
3828 (setq edebug-backtrace-buffer standard-output
)
3829 (let ((print-escape-newlines t
)
3830 (print-length 50) ; FIXME cf edebug-safe-prin1-to-string
3834 ;; Clean up the backtrace.
3835 ;; Not quite right for current edebug scheme.
3836 (set-buffer edebug-backtrace-buffer
)
3837 (setq truncate-lines t
)
3838 (goto-char (point-min))
3839 (setq last-ok-point
(point))
3842 ;; Delete interspersed edebug internals.
3843 (while (re-search-forward "^ \(?edebug" nil t
)
3846 ((looking-at "^ \(edebug-after")
3847 ;; Previous lines may contain code, so just delete this line.
3848 (setq last-ok-point
(point))
3850 (delete-region last-ok-point
(point)))
3852 ((looking-at "^ edebug")
3854 (delete-region last-ok-point
(point))
3861 (defun edebug-trace-display (buf-name fmt
&rest args
)
3862 "In buffer BUF-NAME, display FMT and ARGS at the end and make it visible.
3863 The buffer is created if it does not exist.
3864 You must include newlines in FMT to break lines, but one newline is appended."
3866 ;; (edebug-trace-display "*trace-point*"
3867 ;; "saving: point = %s window-start = %s"
3868 ;; (point) (window-start))
3869 (let* ((oldbuf (current-buffer))
3870 (selected-window (selected-window))
3871 (buffer (get-buffer-create buf-name
))
3873 ;; (message "before pop-to-buffer") (sit-for 1)
3874 (edebug-pop-to-buffer buffer
)
3875 (setq truncate-lines t
)
3876 (setq buf-window
(selected-window))
3877 (goto-char (point-max))
3878 (insert (apply 'edebug-format fmt args
) "\n")
3880 (vertical-motion (- 1 (window-height)))
3881 (set-window-start buf-window
(point))
3882 (goto-char (point-max))
3883 ;; (set-window-point buf-window (point))
3885 (bury-buffer buffer
)
3886 (select-window selected-window
)
3887 (set-buffer oldbuf
))
3891 (defun edebug-trace (fmt &rest args
)
3892 "Convenience call to `edebug-trace-display' using `edebug-trace-buffer'."
3893 (apply 'edebug-trace-display edebug-trace-buffer fmt args
))
3896 ;;; Frequency count and coverage
3898 ;; FIXME should this use overlays instead?
3899 ;; Definitely, IMO. The current business with undo in
3900 ;; edebug-temp-display-freq-count is horrid.
3901 (defun edebug-display-freq-count ()
3902 "Display the frequency count data for each line of the current definition.
3903 The frequency counts are inserted as comment lines after each line,
3904 and you can undo all insertions with one `undo' command.
3906 The counts are inserted starting under the `(' before an expression
3907 or the `)' after an expression, or on the last char of a symbol.
3908 The counts are only displayed when they differ from previous counts on
3911 If coverage is being tested, whenever all known results of an expression
3912 are `eq', the char `=' will be appended after the count
3913 for that expression. Note that this is always the case for an
3914 expression only evaluated once.
3916 To clear the frequency count and coverage data for a definition,
3919 (let* ((function (edebug-form-data-symbol))
3920 (counts (get function
'edebug-freq-count
))
3921 (coverages (get function
'edebug-coverage
))
3922 (data (get function
'edebug
))
3923 (def-mark (car data
)) ; mark at def start
3924 (edebug-points (nth 2 data
))
3925 (i (1- (length edebug-points
)))
3929 (start-of-count-line)
3933 ;; Traverse in reverse order so offsets are correct.
3935 ;; Start at last expression in line.
3936 (goto-char (+ def-mark
(aref edebug-points i
)))
3938 (setq start-of-line
(- (point) def-mark
)
3941 ;; Find all indexes on same line.
3942 (while (and (<= 0 (setq i
(1- i
)))
3943 (<= start-of-line
(aref edebug-points i
))))
3944 ;; Insert all the indices for this line.
3946 (setq start-of-count-line
(point)
3947 first-index i
; Really, last index for line above this one.
3948 last-count -
1) ; Cause first count to always appear.
3950 ;; i == first-index still
3951 (while (<= (setq i
(1+ i
)) last-index
)
3952 (let ((count (aref counts i
))
3953 (coverage (aref coverages i
))
3954 (col (save-excursion
3955 (goto-char (+ (aref edebug-points i
) def-mark
))
3957 (if (= ?\
( (following-char)) 0 1)))))
3958 (insert (make-string
3959 (max 0 (- col
(- (point) start-of-count-line
))) ?\s
)
3960 (if (and (< 0 count
)
3962 '(unknown ok-coverage
))))
3964 (if (= count last-count
) "" (int-to-string count
))
3966 (setq last-count count
)))
3968 (setq i first-index
)))))
3970 ;; FIXME this does not work very well. Eg if you press an arrow key,
3971 ;; or make a mouse-click, it fails with "Non-character input-event".
3972 (defun edebug-temp-display-freq-count ()
3973 "Temporarily display the frequency count data for the current definition.
3974 It is removed when you hit any char."
3975 ;; This seems not to work with Emacs 18.59. It undoes too far.
3977 (let ((inhibit-read-only t
))
3979 (edebug-display-freq-count)
3980 (setq unread-command-events
3981 (append unread-command-events
(list (read-event))))
3982 ;; Yuck! This doesn't seem to work at all for me.
3988 (defun edebug-toggle (variable)
3989 (set variable
(not (symbol-value variable
)))
3990 (message "%s: %s" variable
(symbol-value variable
)))
3992 ;; We have to require easymenu (even for Emacs 18) just so
3993 ;; the easy-menu-define macro call is compiled correctly.
3996 (defconst edebug-mode-menus
3998 ["Stop" edebug-stop t
]
3999 ["Step" edebug-step-mode t
]
4000 ["Next" edebug-next-mode t
]
4001 ["Trace" edebug-trace-mode t
]
4002 ["Trace Fast" edebug-Trace-fast-mode t
]
4003 ["Continue" edebug-continue-mode t
]
4004 ["Continue Fast" edebug-Continue-fast-mode t
]
4005 ["Go" edebug-go-mode t
]
4006 ["Go Nonstop" edebug-Go-nonstop-mode t
]
4008 ["Help" edebug-help t
]
4009 ["Abort" abort-recursive-edit t
]
4010 ["Quit to Top Level" top-level t
]
4011 ["Quit Nonstop" edebug-top-level-nonstop t
]
4014 ["Forward Sexp" edebug-forward-sexp t
]
4015 ["Step In" edebug-step-in t
]
4016 ["Step Out" edebug-step-out t
]
4017 ["Goto Here" edebug-goto-here t
])
4020 ["Set Breakpoint" edebug-set-breakpoint t
]
4021 ["Unset Breakpoint" edebug-unset-breakpoint t
]
4022 ["Set Conditional Breakpoint" edebug-set-conditional-breakpoint t
]
4023 ["Set Global Break Condition" edebug-set-global-break-condition t
]
4024 ["Show Next Breakpoint" edebug-next-breakpoint t
])
4027 ["Where am I?" edebug-where t
]
4028 ["Bounce to Current Point" edebug-bounce-point t
]
4029 ["View Outside Windows" edebug-view-outside t
]
4030 ["Previous Result" edebug-previous-result t
]
4031 ["Show Backtrace" edebug-backtrace t
]
4032 ["Display Freq Count" edebug-display-freq-count t
])
4035 ["Expression" edebug-eval-expression t
]
4036 ["Last Sexp" edebug-eval-last-sexp t
]
4037 ["Visit Eval List" edebug-visit-eval-list t
])
4040 ["Edebug All Defs" edebug-all-defs
4041 :style toggle
:selected edebug-all-defs
]
4042 ["Edebug All Forms" edebug-all-forms
4043 :style toggle
:selected edebug-all-forms
]
4045 ["Tracing" (edebug-toggle 'edebug-trace
)
4046 :style toggle
:selected edebug-trace
]
4047 ["Test Coverage" (edebug-toggle 'edebug-test-coverage
)
4048 :style toggle
:selected edebug-test-coverage
]
4049 ["Save Windows" edebug-toggle-save-windows
4050 :style toggle
:selected edebug-save-windows
]
4052 (edebug-toggle 'edebug-save-displayed-buffer-points
)
4053 :style toggle
:selected edebug-save-displayed-buffer-points
]
4055 "Menus for Edebug.")
4058 ;;; Emacs version specific code
4060 (defalias 'edebug-window-live-p
'window-live-p
)
4062 (defun edebug-mark ()
4065 (defun edebug-set-conditional-breakpoint (arg condition
)
4066 "Set a conditional breakpoint at nearest sexp.
4067 The condition is evaluated in the outside context.
4068 With prefix argument, make it a temporary breakpoint."
4069 ;; (interactive "P\nxCondition: ")
4073 ;; Read condition as follows; getting previous condition is cumbersome:
4074 (let ((edebug-stop-point (edebug-find-stop-point)))
4075 (if edebug-stop-point
4076 (let* ((edebug-def-name (car edebug-stop-point
))
4077 (index (cdr edebug-stop-point
))
4078 (edebug-data (get edebug-def-name
'edebug
))
4079 (edebug-breakpoints (car (cdr edebug-data
)))
4080 (edebug-break-data (assq index edebug-breakpoints
))
4081 (edebug-break-condition (car (cdr edebug-break-data
)))
4082 (initial (and edebug-break-condition
4083 (format "%s" edebug-break-condition
))))
4084 (read-from-minibuffer
4085 "Condition: " initial read-expression-map t
4086 (if (equal (car read-expression-history
) initial
)
4087 '(read-expression-history .
1)
4088 'read-expression-history
)))))))
4089 (edebug-modify-breakpoint t condition arg
))
4091 (easy-menu-define edebug-menu edebug-mode-map
"Edebug menus" edebug-mode-menus
)
4093 ;;; Autoloading of Edebug accessories
4095 ;; edebug-cl-read and cl-read are available from liberte@cs.uiuc.edu
4096 (defun edebug--require-cl-read ()
4097 (require 'edebug-cl-read
))
4099 (if (featurep 'cl-read
)
4100 (add-hook 'edebug-setup-hook
#'edebug--require-cl-read
)
4101 ;; The following causes edebug-cl-read to be loaded when you load cl-read.el.
4102 (add-hook 'cl-read-load-hooks
#'edebug--require-cl-read
))
4105 ;;; Finalize Loading
4107 ;; When edebugging a function, some of the sub-expressions are
4108 ;; wrapped in (edebug-enter (lambda () ..)), so we need to teach
4109 ;; called-interactively-p that calls within the inner lambda should refer to
4110 ;; the outside function.
4111 (add-hook 'called-interactively-p-functions
4112 #'edebug--called-interactively-skip
)
4113 (defun edebug--called-interactively-skip (i frame1 frame2
)
4114 (when (and (eq (car-safe (nth 1 frame1
)) 'lambda
)
4115 (eq (nth 1 (nth 1 frame1
)) '())
4116 (eq (nth 1 frame2
) 'edebug-enter
))
4117 ;; `edebug-enter' calls itself on its first invocation.
4118 (if (eq (nth 1 (backtrace-frame i
'called-interactively-p
))
4122 ;; Finally, hook edebug into the rest of Emacs.
4123 ;; There are probably some other things that could go here.
4125 ;; Install edebug read and eval functions.
4126 (edebug-install-read-eval-functions)
4128 (defun edebug-unload-function ()
4129 "Unload the Edebug source level debugger."
4131 (setq edebug-active nil
)
4133 (abort-recursive-edit)
4134 ;; We still want to run unload-feature to completion
4135 (run-with-idle-timer 0 nil
#'(lambda () (unload-feature 'edebug
)))))
4136 (remove-hook 'called-interactively-p-functions
4137 'edebug--called-interactively-skip
)
4138 (remove-hook 'cl-read-load-hooks
'edebug--require-cl-read
)
4139 (edebug-uninstall-read-eval-functions)
4140 ;; continue standard unloading
4145 ;;; edebug.el ends here