aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1997-07-12 06:13:54 +0000
committerRichard M. Stallman <[email protected]>1997-07-12 06:13:54 +0000
commit284795f8719f9deaf18d43477b68e4617ba549bb (patch)
tree5c83e0cf5e28817d7a7bbb579eb1b7415e186f6d /lisp
parentb48e4aeb002f3ef7d555974cbf3b0c5ac38db4a8 (diff)
(condition-case): Fix edebug-form-spec to
allow a handler with a list of condition names.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/edebug.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el
index b305cb9a25..442f2cdbf0 100644
--- a/lisp/emacs-lisp/edebug.el
+++ b/lisp/emacs-lisp/edebug.el
@@ -1,6 +1,6 @@
;;; edebug.el --- a source-level debugger for Emacs Lisp
-;; Copyright (C) 1988,'89,'90,'91,'92,'93,'94,'95,'97
+;; Copyright (C) 1988,'89,'90,'91,'92,'93,'94,'95,1997
;; Free Software Foundation, Inc
;; Author: Daniel LaLiberte <[email protected]>
@@ -2104,7 +2104,7 @@ expressions; a `progn' form will be returned enclosing these forms."
(def-edebug-spec condition-case
(symbolp
form
- &rest (symbolp body)))
+ &rest ([&or symbolp (&rest symbolp)] body)))
(def-edebug-spec \` (backquote-form))