mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(tree-widget-image-enable): Use display-images-p rather than an Emacs
version test.
This commit is contained in:
parent
e234202b48
commit
d811a2c435
1 changed files with 3 additions and 3 deletions
|
|
@ -127,9 +127,9 @@
|
|||
:version "22.1"
|
||||
:group 'widgets)
|
||||
|
||||
(defcustom tree-widget-image-enable
|
||||
(not (or (featurep 'xemacs) (< emacs-major-version 21)))
|
||||
"*Non-nil means that tree-widget will try to use images."
|
||||
(defcustom tree-widget-image-enable (if (fboundp 'display-images-p)
|
||||
(display-images-p))
|
||||
"Non-nil means that tree-widget will try to use images."
|
||||
:type 'boolean
|
||||
:group 'tree-widget)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue