* emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type

specs are and that they're not evaluated.
This commit is contained in:
Daniel Colascione 2013-09-25 14:39:53 -08:00
parent ec165e83bb
commit 0057865926
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2013-09-25 Daniel Colascione <dancol@dancol.org>
* 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 <sds@gnu.org>
* midnight.el (clean-buffer-list-kill-regexps)

View file

@ -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))