From aa356f561ab7861f463d3024f574fc71d45cb00b Mon Sep 17 00:00:00 2001 From: Joseph Turner Date: Wed, 30 Aug 2023 23:24:16 -0700 Subject: [PATCH 1/2] Include package name in package-vc documentation log buffer name * lisp/emacs-lisp/package-vc.el (package-vc--build-documentation): --- 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 747fe696204..ea8d9ecf488 100644 --- a/lisp/emacs-lisp/package-vc.el +++ b/lisp/emacs-lisp/package-vc.el @@ -423,7 +423,7 @@ otherwise it's assumed to be an Info file." (let ((default-directory docs-directory)) (org-export-to-file 'texinfo file)) (setq clean-up t))) - (with-current-buffer (get-buffer-create " *package-vc doc*") + (with-current-buffer (get-buffer-create (format " *package-vc doc: %s*" pkg-name)) (erase-buffer) (cond ((/= 0 (call-process "makeinfo" nil t nil -- 2.41.0