mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 04:21:24 +00:00
Merge from origin/emacs-31
2487984685* lisp/shell.el (shell): Fix typo: use process-live-p (bu...545bbc6ebewidget-image-find: Use 'image-load-path' (bug#81140)69286be27d; Fix an overwide docstring line.
This commit is contained in:
commit
ee1092aaac
3 changed files with 4 additions and 3 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
|
|
@ -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'.
|
||||
|
|
|
|||
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Reference in a new issue