emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r116517: * lisp/emacs-lisp/cl-macs.el (cl-define-com


From: Stefan Monnier
Subject: [Emacs-diffs] trunk r116517: * lisp/emacs-lisp/cl-macs.el (cl-define-compiler-macro): Add indent rule.
Date: Fri, 21 Feb 2014 17:45:45 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 116517
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16829
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Fri 2014-02-21 12:45:26 -0500
message:
  * lisp/emacs-lisp/cl-macs.el (cl-define-compiler-macro): Add indent rule.
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-02-21 16:18:56 +0000
+++ b/lisp/ChangeLog    2014-02-21 17:45:26 +0000
@@ -1,3 +1,8 @@
+2014-02-21  Stefan Monnier  <address@hidden>
+
+       * emacs-lisp/cl-macs.el (cl-define-compiler-macro): Add indent rule
+       (bug#16829).
+
 2014-02-21  Juanma Barranquero  <address@hidden>
 
        * whitespace.el (whitespace-space, whitespace-hspace, whitespace-tab)
@@ -25,10 +30,10 @@
 2014-02-21  Martin Rudalics  <address@hidden>
 
        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

=== modified file 'lisp/emacs-lisp/cl-macs.el'
--- a/lisp/emacs-lisp/cl-macs.el        2014-01-23 15:01:41 +0000
+++ b/lisp/emacs-lisp/cl-macs.el        2014-02-21 17:45:26 +0000
@@ -2710,7 +2710,7 @@
 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)))))


reply via email to

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