diff options
author | Eli Zaretskii <eliz@gnu.org> | 2023-01-14 11:10:53 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2023-01-14 11:10:53 +0200 |
commit | 435ba92ccc4c46914c261de57f71ac6d92c20178 (patch) | |
tree | e10762b21c39d3ad1216d171c2d6f46fe371b512 /lisp/htmlfontify.el | |
parent | 7100ecd7a472a5ff49d7c8a4b9c061a50520e93b (diff) | |
download | emacs-435ba92ccc4c46914c261de57f71ac6d92c20178.tar.gz emacs-435ba92ccc4c46914c261de57f71ac6d92c20178.tar.bz2 emacs-435ba92ccc4c46914c261de57f71ac6d92c20178.zip |
; Fix last change in htmlfontify.el
Diffstat (limited to 'lisp/htmlfontify.el')
-rw-r--r-- | lisp/htmlfontify.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/htmlfontify.el b/lisp/htmlfontify.el index f05bc4e1e35..0e3b48470d1 100644 --- a/lisp/htmlfontify.el +++ b/lisp/htmlfontify.el @@ -78,7 +78,7 @@ ;;; Code: -(eval-when-compile (require 'cl-lib)) +(require 'cl-lib) (require 'cus-edit) (defconst hfy-meta-tags @@ -379,7 +379,8 @@ otherwise." "/\\.git\\(?:/.*\\)?$") "Define some regular expressions to exclude files" :tag "exclude-rules" - :type '(list string)) + :type '(list string) + :version 29.1) (defcustom hfy-display-class nil "Display class to use to determine which display class to use when |