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