unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#59548: [PATCH] Include the package name in package-vc--unpack's prompt
@ 2022-11-24 17:12 daanturo
  2022-11-24 23:27 ` Stefan Kangas
  0 siblings, 1 reply; 4+ messages in thread
From: daanturo @ 2022-11-24 17:12 UTC (permalink / raw)
  To: 59548

[-- Attachment #1: Type: text/plain, Size: 196 bytes --]


--=-=-=
Content-Type: text/plain

Tags: patch


Make the prompt a bit more informative, as sometimes I am presented with

this question at startup without even knowing the cause.


-- 
Daanturo.

[-- Attachment #2: 0001-More-informant-prompt-for-package-vc-unpack.patch --]
[-- Type: text/x-patch, Size: 1119 bytes --]

From dba6787f0cb1e92f3c9eb62b1f7d9ab6599c43a1 Mon Sep 17 00:00:00 2001
From: Daanturo <daanturo@gmail.com>
Date: Fri, 25 Nov 2022 00:06:37 +0700
Subject: [PATCH] More informant prompt for package-vc--unpack

* lisp/emacs-lisp/package-vc.el (package-vc--unpack): show the package's
name while asking whether to overwrite its previous checkout.
---
 lisp/emacs-lisp/package-vc.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/package-vc.el b/lisp/emacs-lisp/package-vc.el
index bf1ea2bdf4..a9c1bbfe60 100644
--- a/lisp/emacs-lisp/package-vc.el
+++ b/lisp/emacs-lisp/package-vc.el
@@ -523,7 +523,7 @@ package-vc--unpack
                (pkg-dir (expand-file-name dirname package-user-dir)))
     (setf (package-desc-dir pkg-desc) pkg-dir)
     (when (file-exists-p pkg-dir)
-      (if (yes-or-no-p "Overwrite previous checkout?")
+      (if (yes-or-no-p (format "Overwrite %s's previous checkout?" name))
           (package--delete-directory pkg-dir)
         (error "There already exists a checkout for %s" name)))
     (package-vc--clone pkg-desc pkg-spec pkg-dir rev)
-- 
2.38.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-11-25  8:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-24 17:12 bug#59548: [PATCH] Include the package name in package-vc--unpack's prompt daanturo
2022-11-24 23:27 ` Stefan Kangas
2022-11-25  7:31   ` Philip Kaludercic
2022-11-25  8:04     ` Stefan Kangas

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).