mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 20:41:23 +00:00
widget-image-find: Use 'image-load-path' (bug#81140)
* lisp/wid-edit.el (widget-image-find): Use 'image-load-path' (bug#81140).
This commit is contained in:
parent
69286be27d
commit
545bbc6ebe
1 changed files with 2 additions and 1 deletions
|
|
@ -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