1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

; Make doc-viev-imenu-enabled default value a boolean again

This commit is contained in:
Tassilo Horn 2023-07-28 07:07:45 +02:00
parent 3443574a66
commit fd88b6cdd4

View file

@ -216,7 +216,7 @@ are available (see Info node `(emacs)Document View')."
:type 'boolean :type 'boolean
:version "30.1") :version "30.1")
(defcustom doc-view-imenu-enabled (executable-find "mutool") (defcustom doc-view-imenu-enabled (and (executable-find "mutool") t)
"Whether to generate an imenu outline when \"mutool\" is available." "Whether to generate an imenu outline when \"mutool\" is available."
:type 'boolean :type 'boolean
:version "29.1") :version "29.1")