diff options
author | Daniel Colascione <dancol@dancol.org> | 2013-09-25 14:39:53 -0800 |
---|---|---|
committer | Daniel Colascione <dancol@dancol.org> | 2013-09-25 14:39:53 -0800 |
commit | 00578659268846921c6a5cf736dadc76bf66e9d5 (patch) | |
tree | 8c2cd72ce6a8ab1e5f6f60a934db80ae743cdffc /lisp/emacs-lisp/cl-macs.el | |
parent | ec165e83bb5749e0ec62daaf09ee83d1dbf9d37c (diff) | |
download | emacs-00578659268846921c6a5cf736dadc76bf66e9d5.tar.gz emacs-00578659268846921c6a5cf736dadc76bf66e9d5.tar.bz2 emacs-00578659268846921c6a5cf736dadc76bf66e9d5.zip |
* emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
specs are and that they're not evaluated.
Diffstat (limited to 'lisp/emacs-lisp/cl-macs.el')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 2 |
1 files changed, 2 insertions, 0 deletions
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)) |