]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/cl-macs.el (cl-define-compiler-macro): Add indent rule.
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 21 Feb 2014 17:45:26 +0000 (12:45 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 21 Feb 2014 17:45:26 +0000 (12:45 -0500)
Fixes: debbugs:16829
lisp/ChangeLog
lisp/emacs-lisp/cl-macs.el

index 082bcd12f989523d85876fc530a10dcd94b85273..58bdb6534d51ac6a94c770d6dd6cc6fa7f12d3ec 100644 (file)
@@ -1,3 +1,8 @@
+2014-02-21  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * emacs-lisp/cl-macs.el (cl-define-compiler-macro): Add indent rule
+       (bug#16829).
+
 2014-02-21  Juanma Barranquero  <lekktu@gmail.com>
 
        * whitespace.el (whitespace-space, whitespace-hspace, whitespace-tab)
 2014-02-21  Martin Rudalics  <rudalics@gmx.at>
 
        Fix handling of window-min-height/-width (Bug#16738).
-       * window.el (window--dump-window, window--dump-frame): New
-       functions.
-       (window--min-size-1): Account for window dividers.  When
-       window-resize-pixelwise is nil, delay rounding till after the
+       * window.el (window--dump-window, window--dump-frame):
+       New functions.
+       (window--min-size-1): Account for window dividers.
+       When window-resize-pixelwise is nil, delay rounding till after the
        sum of the window components has been calculated.
        (window--min-delta-1, window--max-delta-1): When PIXELWISE is
        nil make sure at least one text line and two text columns remain
index 45448ecf5dc85c478c23c7cb2a38df22b35617fd..b1861cf7dfabed9c3b1da3d383b9bfbd3d0aa98b 100644 (file)
@@ -2710,7 +2710,7 @@ compiler macros are expanded repeatedly until no further expansions are
 possible.  Unlike regular macros, BODY can decide to \"punt\" and leave the
 original function call alone by declaring an initial `&whole foo' parameter
 and then returning foo."
-  (declare (debug cl-defmacro))
+  (declare (debug cl-defmacro) (indent 2))
   (let ((p args) (res nil))
     (while (consp p) (push (pop p) res))
     (setq args (nconc (nreverse res) (and p (list '&rest p)))))