@@ -181,7 +181,7 @@ This construct is similar to `with-output-to-temp-buffer' but,
181
181
neither runs `temp-buffer-setup-hook' which usually puts the
182
182
buffer in Help mode, nor `temp-buffer-show-function' (the ACTION
183
183
argument replaces this)."
184
- (declare (debug t))
184
+ (declare (debug t) (indent 3) )
185
185
(let ((buffer (make-symbol "buffer"))
186
186
(window (make-symbol "window"))
187
187
(value (make-symbol "value")))
@@ -204,7 +204,7 @@ argument replaces this)."
204
204
This construct is like `with-temp-buffer-window' but unlike that,
205
205
makes the buffer specified by BUFFER-OR-NAME current for running
206
206
BODY."
207
- (declare (debug t))
207
+ (declare (debug t) (indent 3) )
208
208
(let ((buffer (make-symbol "buffer"))
209
209
(window (make-symbol "window"))
210
210
(value (make-symbol "value")))
@@ -226,7 +226,7 @@ BODY."
226
226
"Show a buffer BUFFER-OR-NAME and evaluate BODY in that buffer.
227
227
This construct is like `with-current-buffer-window' but unlike that,
228
228
displays the buffer specified by BUFFER-OR-NAME before running BODY."
229
- (declare (debug t))
229
+ (declare (debug t) (indent 3) )
230
230
(let ((buffer (make-symbol "buffer"))
231
231
(window (make-symbol "window"))
232
232
(value (make-symbol "value")))
0 commit comments