summaryrefslogtreecommitdiff
path: root/lisp/htmlfontify.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2022-05-29 16:40:53 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2022-05-29 16:40:53 +0200
commite06d600b4963fc6ccc69fb0bbbc725350a80c9fc (patch)
tree97bd8a4baf66939887634fab2013384a6944a56b /lisp/htmlfontify.el
parentf7324b7a64424500251f00a796d2d6ed26e716b6 (diff)
downloademacs-e06d600b4963fc6ccc69fb0bbbc725350a80c9fc.tar.gz
emacs-e06d600b4963fc6ccc69fb0bbbc725350a80c9fc.tar.bz2
emacs-e06d600b4963fc6ccc69fb0bbbc725350a80c9fc.zip
Fix hfy-etags-cmd type
* lisp/htmlfontify.el (hfy-etags-cmd): Fix the type -- this variable usually ends up being nil.
Diffstat (limited to 'lisp/htmlfontify.el')
-rw-r--r--lisp/htmlfontify.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/htmlfontify.el b/lisp/htmlfontify.el
index a809e61da73..89cacdff21b 100644
--- a/lisp/htmlfontify.el
+++ b/lisp/htmlfontify.el
@@ -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)))