Fix hfy-etags-cmd type

* lisp/htmlfontify.el (hfy-etags-cmd): Fix the type -- this
variable usually ends up being nil.
This commit is contained in:
Lars Ingebrigtsen 2022-05-29 16:40:53 +02:00
parent f7324b7a64
commit e06d600b49

View file

@ -364,7 +364,7 @@ the etags output on stdout.
Two canned commands are provided - they drive Emacs's etags and
exuberant-ctags' etags respectively."
:tag "etags-command"
:type (let ((clist (list '(string))))
:type (let ((clist (list '(string) '(const :tag "None" nil))))
(dolist (C hfy-etags-cmd-alist)
(push (list 'const :tag (car C) (cdr C)) clist))
(cons 'choice clist)))