emacs-pretest-bug
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

define-minor-mode does not add to customization group


From: Lennart Borgman (gmail)
Subject: define-minor-mode does not add to customization group
Date: Sat, 17 Mar 2007 23:12:43 +0100
User-agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.10) Gecko/20070221 Thunderbird/1.5.0.10 Mnenhy/0.7.5.666


A minor mode defined by define-minor-mode does not get added to the customization group given. To show this evaluate this code:

(defgroup the-temp-group nil
  "doc string")
(define-minor-mode the-temp-mode nil
  "doc string"
  :group 'the-temp-group
  )
(defcustom temp-var nil
  "doc string"
  :group 'the-temp-group)
(customize-group 'the-temp-group)



In GNU Emacs 22.0.95.1 (i386-mingw-nt5.1.2600)
 of 2007-03-08




reply via email to

[Prev in Thread] Current Thread [Next in Thread]