diff options
| author | Eli Zaretskii | 2025-02-22 13:35:30 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2025-02-22 13:35:30 +0200 |
| commit | f0d58d976a62b92bdcfe0bebdfe81c7f463fb938 (patch) | |
| tree | 7b60e6bcc4020ecc8e98ec5892427d57ba4fa880 | |
| parent | 9a4b9a1e65857422b4c3f3ff27f21a46a30356c2 (diff) | |
| download | emacs-f0d58d976a62b92bdcfe0bebdfe81c7f463fb938.tar.gz emacs-f0d58d976a62b92bdcfe0bebdfe81c7f463fb938.zip | |
; * lisp/ibuf-macs.el (define-ibuffer-op): Fix long lines.
| -rw-r--r-- | lisp/ibuf-macs.el | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/lisp/ibuf-macs.el b/lisp/ibuf-macs.el index 667dd1fff0f..4a283420efd 100644 --- a/lisp/ibuf-macs.el +++ b/lisp/ibuf-macs.el | |||
| @@ -256,11 +256,13 @@ buffer object. | |||
| 256 | ()) | 256 | ()) |
| 257 | (and after `(,after)) ; post-operation form. | 257 | (and after `(,after)) ; post-operation form. |
| 258 | `((ibuffer-redisplay t) | 258 | `((ibuffer-redisplay t) |
| 259 | (message (concat "Operation finished; " (if (functionp ,opstring-sym) | 259 | (message (concat "Operation finished; " |
| 260 | (funcall ,opstring-sym) | 260 | (if (functionp ,opstring-sym) |
| 261 | ,opstring-sym) | 261 | (funcall ,opstring-sym) |
| 262 | ,opstring-sym) | ||
| 262 | " %s %s") | 263 | " %s %s") |
| 263 | count (ngettext "buffer" "buffers" count))))) | 264 | count (ngettext "buffer" "buffers" |
| 265 | count))))) | ||
| 264 | (inner-body (if complex | 266 | (inner-body (if complex |
| 265 | `(progn ,@body) | 267 | `(progn ,@body) |
| 266 | `(progn | 268 | `(progn |
| @@ -285,14 +287,16 @@ buffer object. | |||
| 285 | (prog1 ,inner-body | 287 | (prog1 ,inner-body |
| 286 | (when (not (eq ibuffer-tmp-previous-buffer-modification | 288 | (when (not (eq ibuffer-tmp-previous-buffer-modification |
| 287 | (buffer-modified-p buf))) | 289 | (buffer-modified-p buf))) |
| 288 | (setq ibuffer-did-modification t)))) | 290 | (setq |
| 291 | ibuffer-did-modification t)))) | ||
| 289 | inner-body))))) | 292 | inner-body))))) |
| 290 | ,finish))) | 293 | ,finish))) |
| 291 | (if dangerous | 294 | (if dangerous |
| 292 | `(when (ibuffer-confirm-operation-on (if (functionp ,active-opstring-sym) | 295 | `(when (ibuffer-confirm-operation-on |
| 293 | (funcall ,active-opstring-sym) | 296 | (if (functionp ,active-opstring-sym) |
| 294 | ,active-opstring-sym) | 297 | (funcall ,active-opstring-sym) |
| 295 | marked-names) | 298 | ,active-opstring-sym) |
| 299 | marked-names) | ||
| 296 | ,body) | 300 | ,body) |
| 297 | body)))) | 301 | body)))) |
| 298 | :autoload-end)))) | 302 | :autoload-end)))) |