diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2024-07-06 17:09:24 +0200 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2024-07-06 18:57:37 +0200 |
commit | 3cde0066998bc46a44a38583970d748badb0b850 (patch) | |
tree | 041fba196ea41081762a86087a31fd0e995bb610 /lisp/emacs-lisp/lisp-mnt.el | |
parent | af21ac1665832247605ba4835ce823e87efa4208 (diff) | |
download | emacs-3cde0066998bc46a44a38583970d748badb0b850.tar.gz emacs-3cde0066998bc46a44a38583970d748badb0b850.tar.bz2 emacs-3cde0066998bc46a44a38583970d748badb0b850.zip |
Make `lm-homepage` into an obsolete alias for 'lm-website'
* lisp/emacs-lisp/lisp-mnt.el (lm-homepage): Make into an obsolete
function alias for 'lm-website'.
Diffstat (limited to 'lisp/emacs-lisp/lisp-mnt.el')
-rw-r--r-- | lisp/emacs-lisp/lisp-mnt.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp-mnt.el b/lisp/emacs-lisp/lisp-mnt.el index e3741242f59..006e0fb4ead 100644 --- a/lisp/emacs-lisp/lisp-mnt.el +++ b/lisp/emacs-lisp/lisp-mnt.el @@ -557,7 +557,6 @@ absent, return nil." (if (and page (string-match (rx bol "<" (+ nonl) ">" eol) page)) (substring page 1 -1) page))) -(defalias 'lm-homepage #'lm-website) ; for backwards-compatibility ;;; Verification and synopses @@ -688,6 +687,7 @@ Prompts for bug subject TOPIC. Leaves you in a mail buffer." (define-obsolete-function-alias 'lm-code-mark #'lm-code-start "30.1") (define-obsolete-function-alias 'lm-commentary-mark #'lm-commentary-start "30.1") (define-obsolete-function-alias 'lm-history-mark #'lm-history-start "30.1") +(define-obsolete-function-alias 'lm-homepage #'lm-website "31.1") (provide 'lisp-mnt) |