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