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