diff options
Diffstat (limited to 'lisp/htmlfontify.el')
| -rw-r--r-- | lisp/htmlfontify.el | 11 |
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) |