From: Daniel Colascione Date: Wed, 25 Sep 2013 22:39:53 +0000 (-0800) Subject: * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1452 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=00578659268846921c6a5cf736dadc76bf66e9d5;p=emacs.git * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type specs are and that they're not evaluated. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ad9b775142e..7b69330083d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2013-09-25 Daniel Colascione + + * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type + specs are and that they're not evaluated. + 2013-09-24 Sam Steingold * midnight.el (clean-buffer-list-kill-regexps) diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 7e50b5bbc9e..031bf5553d0 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -209,6 +209,8 @@ The name is made by appending a number to PREFIX, default \"G\"." (def-edebug-spec cl-&key-arg (&or ([&or (symbolp arg) arg] &optional def-form arg) arg)) +(def-edebug-spec cl-type-spec sexp) + (defconst cl--lambda-list-keywords '(&optional &rest &key &allow-other-keys &aux &whole &body &environment))