]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/simple.el (alternatives-define): Remove leftover :group keyword.
authorJuanma Barranquero <lekktu@gmail.com>
Sat, 6 Jul 2013 13:31:59 +0000 (15:31 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Sat, 6 Jul 2013 13:31:59 +0000 (15:31 +0200)
Tweak docstring.

lisp/ChangeLog
lisp/simple.el

index cd7859a940a928fd1316cd7800e59a6ef71e64d4..49fc7449a35c4c65b668cd51f007d1247efd9375 100644 (file)
@@ -1,3 +1,8 @@
+2013-07-06  Juanma Barranquero  <lekktu@gmail.com>
+
+       * simple.el (alternatives-define): Remove leftover :group keyword.
+       Tweak docstring.
+
 2013-07-06  Leo Liu  <sdl.web@gmail.com>
 
        * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
index 9e83a224f5dc628158a1c77571eb8aed3562fbb5..c4c7d56dc2a7007c8c19291ef911b6d9a2c7874f 100644 (file)
@@ -7368,7 +7368,7 @@ implementations of COMMAND, so that running `C-u M-x COMMAND'
 will allow the user to chose among them.
 CUSTOMIZATIONS, if non-nil, should be composed of alternating
 `defcustom' keywords and values to add to the declaration of
-`COMMAND-alternatives' (typically to add new groups)."
+`COMMAND-alternatives' (typically :group and :version)."
   (let* ((command-name (symbol-name command))
          (varalt-name (concat command-name "-alternatives"))
          (varalt-sym (intern varalt-name))
@@ -7383,7 +7383,6 @@ ALTNAME - The name shown at user to describe the alternative implementation.
 ALTFUN  - The function called to implement this alternative."
                   command-name)
          :type '(alist :key-type string :value-type function)
-         :group 'dispatcher
          ,@customizations)
 
        (defvar ,varimp-sym nil "Internal use only.")