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:
parent
f7324b7a64
commit
e06d600b49
1 changed files with 1 additions and 1 deletions
|
@ -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)))
|
||||
|
|
Loading…
Add table
Reference in a new issue