diff options
| author | Philipp Stephani | 2019-06-11 13:34:14 +0200 |
|---|---|---|
| committer | Philipp Stephani | 2019-06-11 13:34:14 +0200 |
| commit | c3100573429aeaa65e8e5cf3624fb35a12f2bfba (patch) | |
| tree | 9c713ee5570095eff7efe64e534e2ab60b4308b1 | |
| parent | 70d5e0ce3896d12e70472a3f33312d4a60b3e607 (diff) | |
| download | emacs-c3100573429aeaa65e8e5cf3624fb35a12f2bfba.tar.gz emacs-c3100573429aeaa65e8e5cf3624fb35a12f2bfba.zip | |
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
| -rw-r--r-- | lisp/window.el | 6 |
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, | |||
| 181 | neither runs `temp-buffer-setup-hook' which usually puts the | 181 | neither runs `temp-buffer-setup-hook' which usually puts the |
| 182 | buffer in Help mode, nor `temp-buffer-show-function' (the ACTION | 182 | buffer in Help mode, nor `temp-buffer-show-function' (the ACTION |
| 183 | argument replaces this)." | 183 | argument replaces this)." |
| 184 | (declare (debug t)) | 184 | (declare (debug t) (indent 3)) |
| 185 | (let ((buffer (make-symbol "buffer")) | 185 | (let ((buffer (make-symbol "buffer")) |
| 186 | (window (make-symbol "window")) | 186 | (window (make-symbol "window")) |
| 187 | (value (make-symbol "value"))) | 187 | (value (make-symbol "value"))) |
| @@ -204,7 +204,7 @@ argument replaces this)." | |||
| 204 | This construct is like `with-temp-buffer-window' but unlike that, | 204 | This construct is like `with-temp-buffer-window' but unlike that, |
| 205 | makes the buffer specified by BUFFER-OR-NAME current for running | 205 | makes the buffer specified by BUFFER-OR-NAME current for running |
| 206 | BODY." | 206 | BODY." |
| 207 | (declare (debug t)) | 207 | (declare (debug t) (indent 3)) |
| 208 | (let ((buffer (make-symbol "buffer")) | 208 | (let ((buffer (make-symbol "buffer")) |
| 209 | (window (make-symbol "window")) | 209 | (window (make-symbol "window")) |
| 210 | (value (make-symbol "value"))) | 210 | (value (make-symbol "value"))) |
| @@ -226,7 +226,7 @@ BODY." | |||
| 226 | "Show a buffer BUFFER-OR-NAME and evaluate BODY in that buffer. | 226 | "Show a buffer BUFFER-OR-NAME and evaluate BODY in that buffer. |
| 227 | This construct is like `with-current-buffer-window' but unlike that, | 227 | This construct is like `with-current-buffer-window' but unlike that, |
| 228 | displays the buffer specified by BUFFER-OR-NAME before running BODY." | 228 | displays the buffer specified by BUFFER-OR-NAME before running BODY." |
| 229 | (declare (debug t)) | 229 | (declare (debug t) (indent 3)) |
| 230 | (let ((buffer (make-symbol "buffer")) | 230 | (let ((buffer (make-symbol "buffer")) |
| 231 | (window (make-symbol "window")) | 231 | (window (make-symbol "window")) |
| 232 | (value (make-symbol "value"))) | 232 | (value (make-symbol "value"))) |