summaryrefslogtreecommitdiff
path: root/lisp/window.el
diff options
context:
space:
mode:
authorPhilipp Stephani <phst@google.com>2019-06-11 13:34:14 +0200
committerPhilipp Stephani <phst@google.com>2019-06-11 13:34:14 +0200
commitc3100573429aeaa65e8e5cf3624fb35a12f2bfba (patch)
tree9c713ee5570095eff7efe64e534e2ab60b4308b1 /lisp/window.el
parent70d5e0ce3896d12e70472a3f33312d4a60b3e607 (diff)
downloademacs-c3100573429aeaa65e8e5cf3624fb35a12f2bfba.tar.gz
Add missing indentation declaration to a few macros.
* lisp/window.el (with-temp-buffer-window) (with-current-buffer-window, with-displayed-buffer-window): Add missing indentation declaration
Diffstat (limited to 'lisp/window.el')
-rw-r--r--lisp/window.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/window.el b/lisp/window.el
index 0ca628f0065..69b1299dbda 100644
--- a/lisp/window.el
+++ b/lisp/window.el
@@ -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")))