Skip to content

Commit c310057

Browse files
committed
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
1 parent 70d5e0c commit c310057

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lisp/window.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ This construct is similar to `with-output-to-temp-buffer' but,
181181
neither runs `temp-buffer-setup-hook' which usually puts the
182182
buffer in Help mode, nor `temp-buffer-show-function' (the ACTION
183183
argument replaces this)."
184-
(declare (debug t))
184+
(declare (debug t) (indent 3))
185185
(let ((buffer (make-symbol "buffer"))
186186
(window (make-symbol "window"))
187187
(value (make-symbol "value")))
@@ -204,7 +204,7 @@ argument replaces this)."
204204
This construct is like `with-temp-buffer-window' but unlike that,
205205
makes the buffer specified by BUFFER-OR-NAME current for running
206206
BODY."
207-
(declare (debug t))
207+
(declare (debug t) (indent 3))
208208
(let ((buffer (make-symbol "buffer"))
209209
(window (make-symbol "window"))
210210
(value (make-symbol "value")))
@@ -226,7 +226,7 @@ BODY."
226226
"Show a buffer BUFFER-OR-NAME and evaluate BODY in that buffer.
227227
This construct is like `with-current-buffer-window' but unlike that,
228228
displays the buffer specified by BUFFER-OR-NAME before running BODY."
229-
(declare (debug t))
229+
(declare (debug t) (indent 3))
230230
(let ((buffer (make-symbol "buffer"))
231231
(window (make-symbol "window"))
232232
(value (make-symbol "value")))

0 commit comments

Comments
 (0)