+2005-12-11 Juri Linkov <juri@jurta.org>
+
+ * frame.el (set-background-color, set-foreground-color)
+ (set-cursor-color, set-mouse-color, set-border-color):
+ Add explicit prompts to read colors by `facemenu-read-color'.
+ (show-trailing-whitespace, blink-cursor-delay)
+ (blink-cursor-interval, display-hourglass, hourglass-delay):
+ Remove tags.
+ (display-hourglass, hourglass-delay): Doc fix.
+ (cursor-in-non-selected-windows): Capitalize words in tag.
+
+ * faces.el (frame-background-mode): Replace `choice-item' keywords
+ with `const' to not make [default] button. Change default value tag
+ from `default' to `automatic'. Doc fix.
+ (trailing-whitespace) <defface>: Change group `whitespace' to
+ `whitespace-faces'.
+
2005-12-11 Richard M. Stallman <rms@gnu.org>
* buff-menu.el (Buffer-menu-sort-column): Not a user variable.
(defcustom frame-background-mode nil
"*The brightness of the background.
Set this to the symbol `dark' if your background color is dark,
-`light' if your background is light, or nil (default) if you want Emacs
-to examine the brightness for you. Don't set this variable with `setq';
-this won't have the expected effect."
+`light' if your background is light, or nil (automatic by default)
+if you want Emacs to examine the brightness for you. Don't set this
+variable with `setq'; this won't have the expected effect."
:group 'faces
:set #'(lambda (var value)
(set-default var value)
(mapc 'frame-set-background-mode (frame-list)))
:initialize 'custom-initialize-changed
- :type '(choice (choice-item dark)
- (choice-item light)
- (choice-item :tag "default" nil)))
+ :type '(choice (const dark)
+ (const light)
+ (const :tag "automatic" nil)))
(defvar default-frame-background-mode nil
"Internal variable for the default brightness of the background.
(t :inverse-video t))
"Basic face for highlighting trailing whitespace."
:version "21.1"
- :group 'whitespace ; like `show-trailing-whitespace'
+ :group 'whitespace-faces ; like `show-trailing-whitespace'
:group 'basic-faces)
(defface escape-glyph