From: Stefan Kangas Date: Tue, 8 Aug 2023 02:03:17 +0000 (+0200) Subject: Make Emacs 21 compat aliases easy-mmode-* obsolete X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b48793253b2e6ed89f6643b72253ed6c827c289a;p=emacs.git Make Emacs 21 compat aliases easy-mmode-* obsolete * lisp/emacs-lisp/easy-mmode.el (easy-mmode-define-minor-mode) (easy-mmode-define-global-mode): Make Emacs 21 compatibility aliases obsolete. * doc/lispref/loading.texi (Autoload): * doc/lispref/modes.texi (Defining Minor Modes): Don't document above obsolete aliases. --- diff --git a/doc/lispref/loading.texi b/doc/lispref/loading.texi index d6fc4e8d636..125011c780f 100644 --- a/doc/lispref/loading.texi +++ b/doc/lispref/loading.texi @@ -660,9 +660,7 @@ and @code{define-overloadable-function} (see the commentary in @item Definitions for major or minor modes: @code{define-minor-mode}, @code{define-globalized-minor-mode}, @code{define-generic-mode}, @code{define-derived-mode}, -@code{easy-mmode-define-minor-mode}, -@code{easy-mmode-define-global-mode}, @code{define-compilation-mode}, -and @code{define-global-minor-mode}. +@code{define-compilation-mode}, and @code{define-global-minor-mode}. @item Other definition types: @code{defcustom}, @code{defgroup}, @code{deftheme}, @code{defclass} diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi index b4f69e79155..00148420893 100644 --- a/doc/lispref/modes.texi +++ b/doc/lispref/modes.texi @@ -1794,10 +1794,6 @@ and will always be loaded by that time, enabling it by default is harmless. But these are unusual circumstances. Normally, the initial value must be @code{nil}. -@findex easy-mmode-define-minor-mode - The name @code{easy-mmode-define-minor-mode} is an alias -for this macro. - Here is an example of using @code{define-minor-mode}: @smallexample diff --git a/etc/NEWS b/etc/NEWS index 6cdeeacc158..16dd7d5f791 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -736,6 +736,10 @@ provokes an error if used numerically. The compatibility aliases 'x-defined-colors', 'x-color-defined-p', 'x-color-values', and 'x-display-color-p' are now obsolete. ++++ +** 'easy-mmode-define-{minor-mode,global-mode}' aliases are now obsolete. +Use 'define-minor-mode' and 'define-globalized-minor-mode' instead. + * Lisp Changes in Emacs 30.1 diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el index 20681374ee3..529f6e90e88 100644 --- a/lisp/emacs-lisp/easy-mmode.el +++ b/lisp/emacs-lisp/easy-mmode.el @@ -142,8 +142,6 @@ it is disabled.") (insert (format "\\{%s}" keymap-sym))) (buffer-string))))) -;;;###autoload -(defalias 'easy-mmode-define-minor-mode #'define-minor-mode) ;;;###autoload (defmacro define-minor-mode (mode doc &rest body) "Define a new minor mode MODE. @@ -442,8 +440,6 @@ No problems result if this variable is not bound. ;;; make global minor mode ;;; -;;;###autoload -(defalias 'easy-mmode-define-global-mode #'define-globalized-minor-mode) ;;;###autoload (defalias 'define-global-minor-mode #'define-globalized-minor-mode) ;;;###autoload @@ -841,6 +837,12 @@ Interactively, COUNT is the prefix numeric argument, and defaults to 1." ,@body)) (put ',prev-sym 'definition-name ',base)))) +;; When deleting these two, also delete them from loaddefs-gen.el. +;;;###autoload +(define-obsolete-function-alias 'easy-mmode-define-minor-mode #'define-minor-mode "30.1") +;;;###autoload +(define-obsolete-function-alias 'easy-mmode-define-global-mode #'define-globalized-minor-mode "30.1") + (provide 'easy-mmode) ;;; easy-mmode.el ends here