]> git.eshelyaron.com Git - emacs.git/commitdiff
* term.el (term-default-fg-color, term-default-bg-color): Fix custom type.
authorGlenn Morris <rgm@gnu.org>
Thu, 3 Jan 2013 06:33:25 +0000 (22:33 -0800)
committerGlenn Morris <rgm@gnu.org>
Thu, 3 Jan 2013 06:33:25 +0000 (22:33 -0800)
lisp/ChangeLog
lisp/term.el

index 34c13ad67fdaf32c8b6302cc17bc82076e99167e..d200d9733f8e646b1cea6675e78889fccda5cb2e 100644 (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)
index aa873075bfd03481381cdadf80c8e79a7ff63d0f..8c6ac2a4adf93e846d39bd0238c581896a3d54a7 100644 (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")