From: Spencer Baugh Date: Fri, 13 Oct 2023 12:35:58 +0000 (-0400) Subject: Use project-name in the project-kill-buffers prompt X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0d536f27557843d0652267bc6c20bc1357f716a4;p=emacs.git Use project-name in the project-kill-buffers prompt This is mildly prettier (bug#66518). * lisp/progmodes/project.el (project-kill-buffers): Use project-name. --- diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el index fd9c146a1fd..b9ecb770e60 100644 --- a/lisp/progmodes/project.el +++ b/lisp/progmodes/project.el @@ -1620,7 +1620,7 @@ Also see the `project-kill-buffers-display-buffer-list' variable." (yes-or-no-p (format "Kill %d buffers in %s? " (length bufs) - (project-root pr)))))) + (project-name pr)))))) (cond (no-confirm (mapc #'kill-buffer bufs)) ((null bufs)