aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/htmlfontify.el
diff options
context:
space:
mode:
authorDmitry Gutov2022-08-15 02:22:59 +0300
committerDmitry Gutov2022-08-15 02:22:59 +0300
commitee3a674c7c9e39fe7ff296ce1f9830fc45520de8 (patch)
treee8ba1e7be54314f208454e80e3d31044c913f3eb /lisp/htmlfontify.el
parentfe0e53d963899a16e0dd1bbc1ba10a6b59f7989e (diff)
parent0a8e88fd83db5398d36064a7f87cff5b57da7284 (diff)
downloademacs-scratch/font_lock_large_files.tar.gz
emacs-scratch/font_lock_large_files.zip
Merge branch 'master' into scratch/font_lock_large_filesscratch/font_lock_large_files
Diffstat (limited to 'lisp/htmlfontify.el')
-rw-r--r--lisp/htmlfontify.el11
1 files changed, 5 insertions, 6 deletions
diff --git a/lisp/htmlfontify.el b/lisp/htmlfontify.el
index dbcc152c15d..bf7446f151a 100644
--- a/lisp/htmlfontify.el
+++ b/lisp/htmlfontify.el
@@ -81,11 +81,9 @@
81(eval-when-compile (require 'cl-lib)) 81(eval-when-compile (require 'cl-lib))
82(require 'cus-edit) 82(require 'cus-edit)
83 83
84(defconst htmlfontify-version 0.21)
85
86(defconst hfy-meta-tags 84(defconst hfy-meta-tags
87 (format "<meta name=\"generator\" content=\"emacs %s; htmlfontify %0.2f\" />" 85 (format "<meta name=\"generator\" content=\"emacs %s; htmlfontify\" />"
88 emacs-version htmlfontify-version) 86 emacs-version)
89 "The generator meta tag for this version of htmlfontify.") 87 "The generator meta tag for this version of htmlfontify.")
90 88
91(defconst htmlfontify-manual "Htmlfontify Manual" 89(defconst htmlfontify-manual "Htmlfontify Manual"
@@ -2392,13 +2390,14 @@ You may also want to set `hfy-page-header' and `hfy-page-footer'."
2392 (let ((file (hfy-initfile))) 2390 (let ((file (hfy-initfile)))
2393 (load file 'NOERROR nil nil) )) 2391 (load file 'NOERROR nil nil) ))
2394 2392
2395;; Obsolete.
2396
2397(defun hfy-interq (set-a set-b) 2393(defun hfy-interq (set-a set-b)
2398 "Return the intersection (using `eq') of two lists SET-A and SET-B." 2394 "Return the intersection (using `eq') of two lists SET-A and SET-B."
2399 (declare (obsolete seq-intersection "28.1")) 2395 (declare (obsolete seq-intersection "28.1"))
2400 (nreverse (seq-intersection set-a set-b #'eq))) 2396 (nreverse (seq-intersection set-a set-b #'eq)))
2401 2397
2398(defconst htmlfontify-version 0.21)
2399(make-obsolete-variable 'htmlfontify-version 'emacs-version "29.1")
2400
2402(define-obsolete-function-alias 'hfy-prop-invisible-p #'invisible-p "29.1") 2401(define-obsolete-function-alias 'hfy-prop-invisible-p #'invisible-p "29.1")
2403 2402
2404(provide 'htmlfontify) 2403(provide 'htmlfontify)