]> git.eshelyaron.com Git - emacs.git/commitdiff
Add missing indentation declaration to a few macros.
authorPhilipp Stephani <phst@google.com>
Tue, 11 Jun 2019 11:34:14 +0000 (13:34 +0200)
committerPhilipp Stephani <phst@google.com>
Tue, 11 Jun 2019 11:34:14 +0000 (13:34 +0200)
* lisp/window.el (with-temp-buffer-window)
(with-current-buffer-window, with-displayed-buffer-window):
Add missing indentation declaration

lisp/window.el

index 0ca628f006537a7101e710897c5b79489ddbb5df..69b1299dbdac0e7950730e6faef0d749aa99313f 100644 (file)
@@ -181,7 +181,7 @@ This construct is similar to `with-output-to-temp-buffer' but,
 neither runs `temp-buffer-setup-hook' which usually puts the
 buffer in Help mode, nor `temp-buffer-show-function' (the ACTION
 argument replaces this)."
-  (declare (debug t))
+  (declare (debug t) (indent 3))
   (let ((buffer (make-symbol "buffer"))
        (window (make-symbol "window"))
        (value (make-symbol "value")))
@@ -204,7 +204,7 @@ argument replaces this)."
 This construct is like `with-temp-buffer-window' but unlike that,
 makes the buffer specified by BUFFER-OR-NAME current for running
 BODY."
-  (declare (debug t))
+  (declare (debug t) (indent 3))
   (let ((buffer (make-symbol "buffer"))
        (window (make-symbol "window"))
        (value (make-symbol "value")))
@@ -226,7 +226,7 @@ BODY."
   "Show a buffer BUFFER-OR-NAME and evaluate BODY in that buffer.
 This construct is like `with-current-buffer-window' but unlike that,
 displays the buffer specified by BUFFER-OR-NAME before running BODY."
-  (declare (debug t))
+  (declare (debug t) (indent 3))
   (let ((buffer (make-symbol "buffer"))
        (window (make-symbol "window"))
        (value (make-symbol "value")))