]> git.eshelyaron.com Git - emacs.git/commitdiff
(define-global-minor-mode): Renamed from easy-mmode-define-global-mode.
authorRichard M. Stallman <rms@gnu.org>
Thu, 31 Mar 2005 21:16:54 +0000 (21:16 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 31 Mar 2005 21:16:54 +0000 (21:16 +0000)
(easy-mmode-define-global-mode): Alias for define-global-minor-mode.

lisp/ChangeLog
lisp/emacs-lisp/easy-mmode.el

index cd2043e3f3a32cc6c089c02140097824a122efd6..0f142a5e2559fb2843b1c89b70d67313a4a35229 100644 (file)
@@ -1,3 +1,12 @@
+2005-03-31  Richard M. Stallman  <rms@gnu.org>
+
+       * emacs-lisp/easy-mmode.el (define-global-minor-mode):
+       Renamed from easy-mmode-define-global-mode.
+       (easy-mmode-define-global-mode): Alias for define-global-minor-mode.
+
+       * progmodes/scheme.el (scheme-mode-syntax-table): Update
+       syntax of | and # for two-character comment syntax.
+
 2005-03-31  Lute Kamstra  <lute@gnu.org>
 
        * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode)
index da93190f2e99cf49688ed6775c1809799a3597b2..a96b17411394eeaad6284c1e279ec0b164054deb 100644 (file)
@@ -254,8 +254,9 @@ With zero or negative ARG turn mode off.
 ;;;
 
 ;;;###autoload
-(defmacro easy-mmode-define-global-mode (global-mode mode turn-on
-                                                    &rest keys)
+(defalias 'easy-mmode-define-global-mode 'define-global-minor-mode)
+;;;###autoload
+(defmacro define-global-minor-mode (global-mode mode turn-on &rest keys)
   "Make GLOBAL-MODE out of the buffer-local minor MODE.
 TURN-ON is a function that will be called with no args in every buffer
   and that should try to turn MODE on if applicable for that buffer.