* term.el (term-default-fg-color, term-default-bg-color): Fix custom type.

This commit is contained in:
Glenn Morris 2013-01-02 22:33:25 -08:00
parent 220740a35b
commit 5b00b74939
2 changed files with 5 additions and 2 deletions

View file

@ -1,5 +1,8 @@
2013-01-03 Glenn Morris <rgm@gnu.org>
* term.el (term-default-fg-color, term-default-bg-color):
Fix custom type.
* progmodes/etags.el (tags-compression-info-list): Doc fix.
(tag-find-file-of-tag-noselect): Check auto-compression-mode
rather than 'jka-compr being loaded. (Bug#13338)

View file

@ -772,14 +772,14 @@ Buffer local variable.")
(defcustom term-default-fg-color nil
"If non-nil, default color for foreground in Term mode."
:group 'term
:type 'string)
:type '(choice (const nil) (string :tag "color")))
(make-obsolete-variable 'term-default-fg-color "use the face `term' instead."
"24.3")
(defcustom term-default-bg-color nil
"If non-nil, default color for foreground in Term mode."
:group 'term
:type 'string)
:type '(choice (const nil) (string :tag "color")))
(make-obsolete-variable 'term-default-bg-color "use the face `term' instead."
"24.3")