From 69286be27db320a03e787edb5d2cc483f0f64f66 Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Thu, 28 May 2026 10:19:02 +0100 Subject: [PATCH 1/3] ; Fix an overwide docstring line. --- lisp/vc/vc-dir.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/vc/vc-dir.el b/lisp/vc/vc-dir.el index c79ac50cfc3..98c69b48691 100644 --- a/lisp/vc/vc-dir.el +++ b/lisp/vc/vc-dir.el @@ -161,7 +161,7 @@ proceed to mark and unmark other entries, without asking." :version "31.1") (defcustom vc-dir-auto-hide-up-to-date nil - "Whether VC-Dir automatically removes \\+`up-to-date'/\\+`ignored' files from display. + "Whether VC-Dir auto-removes \\+`up-to-date'/\\+`ignored' files from display. If the value is nil, files shown in the VC-Dir buffer will remain on display if they become \\+`up-to-date' or \\+`ignored'. From 545bbc6ebe819144c179bbef347016488c339fc8 Mon Sep 17 00:00:00 2001 From: David Ponce Date: Thu, 28 May 2026 11:55:12 +0200 Subject: [PATCH 2/3] widget-image-find: Use 'image-load-path' (bug#81140) * lisp/wid-edit.el (widget-image-find): Use 'image-load-path' (bug#81140). --- lisp/wid-edit.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/wid-edit.el b/lisp/wid-edit.el index 353d546fce4..3871d0f64c4 100644 --- a/lisp/wid-edit.el +++ b/lisp/wid-edit.el @@ -868,7 +868,8 @@ extension (xpm, xbm, gif, jpg, or png) located in image) ((stringp image) ;; A string. Look it up in relevant directories. - (let* ((load-path (cons widget-image-directory load-path)) + (let* ((image-load-path (cons widget-image-directory + image-load-path)) specs) (dolist (elt widget-image-conversion) (dolist (ext (cdr elt)) From 24879846852a577a348eb45c935ac2b31b632d94 Mon Sep 17 00:00:00 2001 From: Augusto Stoffel Date: Fri, 29 May 2026 09:46:40 +0200 Subject: [PATCH 3/3] * lisp/shell.el (shell): Fix typo: use process-live-p (bug#81145). --- lisp/shell.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/shell.el b/lisp/shell.el index 2730c417b49..acaa8e1f860 100644 --- a/lisp/shell.el +++ b/lisp/shell.el @@ -996,7 +996,7 @@ Make the shell buffer the current buffer, and return it. (lambda (proc event) (when sentinel (funcall sentinel proc event)) - (unless (buffer-live-p proc) + (unless (process-live-p proc) (kill-buffer buffer)))))) buffer)