emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-24 r117045: * emacs-lisp/cl-macs.el (cl-deftype): Fi


From: Leo Liu
Subject: [Emacs-diffs] emacs-24 r117045: * emacs-lisp/cl-macs.el (cl-deftype): Fix indentation.
Date: Fri, 02 May 2014 11:13:34 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117045
revision-id: address@hidden
parent: address@hidden
committer: Leo Liu <address@hidden>
branch nick: emacs-24
timestamp: Fri 2014-05-02 19:11:35 +0800
message:
  * emacs-lisp/cl-macs.el (cl-deftype): Fix indentation.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/emacs-lisp/cl-macs.el     clmacs.el-20091113204419-o5vbwnq5f7feedwu-612
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-05-01 23:55:25 +0000
+++ b/lisp/ChangeLog    2014-05-02 11:11:35 +0000
@@ -1,3 +1,7 @@
+2014-05-02  Leo Liu  <address@hidden>
+
+       * emacs-lisp/cl-macs.el (cl-deftype): Fix indentation.
+
 2014-05-01  Glenn Morris  <address@hidden>
 
        * allout-widgets.el (allout-widgets-tally)

=== modified file 'lisp/emacs-lisp/cl-macs.el'
--- a/lisp/emacs-lisp/cl-macs.el        2014-04-21 21:18:12 +0000
+++ b/lisp/emacs-lisp/cl-macs.el        2014-05-02 11:11:35 +0000
@@ -2585,7 +2585,7 @@
 (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)))))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]