From: Glenn Morris Date: Thu, 3 Jan 2013 06:33:25 +0000 (-0800) Subject: * term.el (term-default-fg-color, term-default-bg-color): Fix custom type. X-Git-Tag: emacs-24.2.92~41 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5b00b74939065b125efab8ea826c851356425003;p=emacs.git * term.el (term-default-fg-color, term-default-bg-color): Fix custom type. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 34c13ad67fd..d200d9733f8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2013-01-03 Glenn Morris + * 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) diff --git a/lisp/term.el b/lisp/term.el index aa873075bfd..8c6ac2a4adf 100644 --- a/lisp/term.el +++ b/lisp/term.el @@ -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")