]> git.eshelyaron.com Git - emacs.git/commitdiff
Make Emacs 21 compat aliases easy-mmode-* obsolete
authorStefan Kangas <stefankangas@gmail.com>
Tue, 8 Aug 2023 02:03:17 +0000 (04:03 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Tue, 8 Aug 2023 02:03:17 +0000 (04:03 +0200)
* 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.

doc/lispref/loading.texi
doc/lispref/modes.texi
etc/NEWS
lisp/emacs-lisp/easy-mmode.el

index d6fc4e8d63609007cf0b0225a1fdfeea06d5e648..125011c780f87105635d6758249c4d0f7197b5c3 100644 (file)
@@ -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}
index b4f69e7915561d72b4e94d4b8eaae27cd1d7db67..0014842089336082038c158a0d416ef90681d27a 100644 (file)
@@ -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
index 6cdeeacc158073da2e7df74dc972d7ec620628bc..16dd7d5f791c80f0cdadae95e0a0112444e14a42 100644 (file)
--- 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.
+
 \f
 * Lisp Changes in Emacs 30.1
 
index 20681374ee3a71f21e29812b022362218610ef8a..529f6e90e8854a7f2d1ad2ccf71ac2d6bde21263 100644 (file)
@@ -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