]> git.eshelyaron.com Git - emacs.git/commitdiff
kill-matching-buffers to optionally not confirm
authorGlenn Morris <rgm@gnu.org>
Tue, 20 Jun 2017 01:31:50 +0000 (21:31 -0400)
committerGlenn Morris <rgm@gnu.org>
Tue, 20 Jun 2017 01:31:50 +0000 (21:31 -0400)
* lisp/files.el (kill-matching-buffers):
Add option to not confirm killing.  (Bug#27286)

lisp/files.el

index 2930f30db7fdbc45589af8fbad2d09b823a2eaa9..06f49bba23cd2a4cf230d027dd4eefec689bf6dd 100644 (file)
@@ -6077,16 +6077,18 @@ specifies the list of buffers to kill, asking for approval for each one."
           (kill-buffer-ask buffer)))
     (setq list (cdr list))))
 
-(defun kill-matching-buffers (regexp &optional internal-too)
+(defun kill-matching-buffers (regexp &optional internal-too no-ask)
   "Kill buffers whose name matches the specified REGEXP.
-The optional second argument indicates whether to kill internal buffers too."
+Ignores buffers whose name starts with a space, unless optional
+prefix argument INTERNAL-TOO is non-nil.  Asks before killing
+each buffer, unless NO-ASK is non-nil."
   (interactive "sKill buffers matching this regular expression: \nP")
   (dolist (buffer (buffer-list))
     (let ((name (buffer-name buffer)))
       (when (and name (not (string-equal name ""))
                  (or internal-too (/= (aref name 0) ?\s))
                  (string-match regexp name))
-        (kill-buffer-ask buffer)))))
+        (funcall (if no-ask 'kill-buffer 'kill-buffer-ask) buffer)))))
 
 \f
 (defun rename-auto-save-file ()