summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-05-05 01:03:53 +0000
committerRichard M. Stallman <rms@gnu.org>1997-05-05 01:03:53 +0000
commit4ccdc379cce2283e74ae773452aabd05d01b420d (patch)
treed45b624c198de9f7c85c678e9834019e9946443f
parent2c09acff9623cc4e4572e6ad1327d79c8731dc29 (diff)
downloademacs-4ccdc379cce2283e74ae773452aabd05d01b420d.tar.gz
(edebug-eval-mode): Add a mode-class property.
-rw-r--r--lisp/emacs-lisp/edebug.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el
index 74986e81aa2..04e5e63b3ee 100644
--- a/lisp/emacs-lisp/edebug.el
+++ b/lisp/emacs-lisp/edebug.el
@@ -9,7 +9,7 @@
;; LCD Archive Entry:
;; edebug|Daniel LaLiberte|liberte@cs.uiuc.edu
;; |A source level debugger for Emacs Lisp.
-;; |$Date: 1997/04/12 08:30:46 $|$Revision: 3.14 $|~/modes/edebug.el|
+;; |$Date: 1997/04/14 20:57:39 $|$Revision: 3.15 $|~/modes/edebug.el|
;; This file is part of GNU Emacs.
@@ -86,7 +86,7 @@
;;; Code:
(defconst edebug-version
- (let ((raw-version "$Revision: 3.14 $"))
+ (let ((raw-version "$Revision: 3.15 $"))
(substring raw-version (string-match "[0-9.]*" raw-version)
(match-end 0))))
@@ -4054,6 +4054,7 @@ May only be called from within edebug-recursive-edit."
(define-key edebug-eval-mode-map "\C-j" 'edebug-eval-print-last-sexp)
)
+(put 'edebug-eval-mode 'mode-class 'special)
(defun edebug-eval-mode ()
"Mode for evaluation list buffer while in Edebug.