diff options
author | Lute Kamstra <lute@gnu.org> | 2005-03-31 14:49:09 +0000 |
---|---|---|
committer | Lute Kamstra <lute@gnu.org> | 2005-03-31 14:49:09 +0000 |
commit | 2a3a044ce6b81e261862c1bebb8ce560e344bb91 (patch) | |
tree | e399a4be2d120750008918553ce1f102d4b5c6c9 /lisp/emacs-lisp | |
parent | fafbb99d577133c09d38ef2aa315a7b583c38079 (diff) | |
download | emacs-2a3a044ce6b81e261862c1bebb8ce560e344bb91.tar.gz |
(easy-mmode-define-global-mode, define-minor-mode): Call
custom-current-group at load-time.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/easy-mmode.el | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el index b6b91710ed4..da93190f2e9 100644 --- a/lisp/emacs-lisp/easy-mmode.el +++ b/lisp/emacs-lisp/easy-mmode.el @@ -1,6 +1,7 @@ ;;; easy-mmode.el --- easy definition for major and minor modes -;; Copyright (C) 1997,2000,01,02,03,2004 Free Software Foundation, Inc. +;; Copyright (C) 1997, 2000, 2001, 2002, 2003, 2004, 2005 +;; Free Software Foundation, Inc. ;; Author: Georges Brun-Cottan <Georges.Brun-Cottan@inria.fr> ;; Maintainer: Stefan Monnier <monnier@gnu.org> @@ -152,8 +153,8 @@ For example, you could write (unless group ;; We might as well provide a best-guess default group. (setq group - `(:group ',(or (custom-current-group) - (intern (replace-regexp-in-string + `(:group (or (custom-current-group) + ',(intern (replace-regexp-in-string "-mode\\'" "" mode-name)))))) `(progn @@ -278,8 +279,8 @@ KEYS is a list of CL-style keyword arguments: (unless group ;; We might as well provide a best-guess default group. (setq group - `(:group ',(or (custom-current-group) - (intern (replace-regexp-in-string + `(:group (or (custom-current-group) + ',(intern (replace-regexp-in-string "-mode\\'" "" (symbol-name mode))))))) `(progn |