emacs-devel
[Top][All Lists]
Advanced

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

Re: standard-value of display-battery/time-mode


From: Luc Teirlinck
Subject: Re: standard-value of display-battery/time-mode
Date: Sat, 18 Feb 2006 18:31:20 -0600 (CST)

David Reitter wrote:

   (customize-mark-to-save 'display-battery-mode)

   is always t even though now change was made because the standard- 
   value property is nil / not set. It should probably be (nil).

`display-battery-mode' is autoloaded.  This means that it is defined
with `defvar' in loaddefs.el.  The standard-value property remains nil
until the defcustom is evaluated, when it becomes (nil).

   It works fine for, e.g., `show-paren-mode'.

Then your .emacs must load paren.

`emacs -q', then:

ELISP> (get 'show-paren-mode 'standard-value)
nil
ELISP> (load "paren")
t
ELISP> (get 'show-paren-mode 'standard-value)
(nil)

ELISP> 

Sincerely,

Luc.




reply via email to

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