diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2014-05-04 12:37:56 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2014-05-04 12:37:56 -0700 |
commit | 3e9fa60a5c99568817a12a1011b0e61cce5d3a67 (patch) | |
tree | 831a801351db662f324d0709bf1fee718eda63e9 /lisp/emacs-lisp/cl-macs.el | |
parent | bbdcf64f499636ba9567e8fed8f209e06380352c (diff) | |
parent | 61febcb6e32860575316b8a539a2e9f13f70e3c2 (diff) | |
download | emacs-3e9fa60a5c99568817a12a1011b0e61cce5d3a67.tar.gz emacs-3e9fa60a5c99568817a12a1011b0e61cce5d3a67.tar.bz2 emacs-3e9fa60a5c99568817a12a1011b0e61cce5d3a67.zip |
Merge from emacs-24; up to 2014-05-04T21:18:30Z!eggert@cs.ucla.edu
Diffstat (limited to 'lisp/emacs-lisp/cl-macs.el')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 58c3638b58b..14e4d2da0c8 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -2928,7 +2928,7 @@ The function's arguments should be treated as immutable. (defmacro cl-deftype (name arglist &rest body) "Define NAME as a new data type. The type name can then be used in `cl-typecase', `cl-check-type', etc." - (declare (debug cl-defmacro) (doc-string 3)) + (declare (debug cl-defmacro) (doc-string 3) (indent 2)) `(cl-eval-when (compile load eval) (put ',name 'cl-deftype-handler (cl-function (lambda (&cl-defs '('*) ,@arglist) ,@body))))) |