diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-11-09 21:48:07 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-11-09 21:48:07 +0000 |
commit | 5398a9e7bf01a85f78057f4258660d969f409028 (patch) | |
tree | b27c32334b4d4590e78e32eddb04eca665ec6283 /lisp/emacs-lisp | |
parent | 2ec9c94e21e908bd2d7825aa13b1a4664a07aa3b (diff) | |
download | emacs-5398a9e7bf01a85f78057f4258660d969f409028.tar.gz emacs-5398a9e7bf01a85f78057f4258660d969f409028.tar.bz2 emacs-5398a9e7bf01a85f78057f4258660d969f409028.zip |
(combine-after-change-calls): New def-edebug-spec.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/edebug.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el index e6edb4d6c5a..76a3443b065 100644 --- a/lisp/emacs-lisp/edebug.el +++ b/lisp/emacs-lisp/edebug.el @@ -8,7 +8,7 @@ ;; LCD Archive Entry: ;; edebug|Daniel LaLiberte|liberte@cs.uiuc.edu ;; |A source level debugger for Emacs Lisp. -;; |$Date: 1996/09/24 06:54:18 $|$Revision: 3.10 $|~/modes/edebug.el| +;; |$Date: 1996/10/02 21:41:56 $|$Revision: 3.11 $|~/modes/edebug.el| ;; This file is part of GNU Emacs. @@ -85,7 +85,7 @@ ;;; Code: (defconst edebug-version - (let ((raw-version "$Revision: 3.10 $")) + (let ((raw-version "$Revision: 3.11 $")) (substring raw-version (string-match "[0-9.]*" raw-version) (match-end 0)))) @@ -2123,6 +2123,7 @@ expressions; a `progn' form will be returned enclosing these forms." (def-edebug-spec save-match-data t) (def-edebug-spec with-output-to-string t) (def-edebug-spec with-current-buffer t) +(def-edebug-spec combine-after-change-calls t) (def-edebug-spec with-temp-file t) (def-edebug-spec with-temp-buffer t) |