emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r111125: * term.el (term-default-f


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r111125: * term.el (term-default-fg-color, term-default-bg-color): Fix custom type.
Date: Wed, 02 Jan 2013 22:33:25 -0800
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111125
committer: Glenn Morris <address@hidden>
branch nick: emacs-24
timestamp: Wed 2013-01-02 22:33:25 -0800
message:
  * term.el (term-default-fg-color, term-default-bg-color): Fix custom type.
modified:
  lisp/ChangeLog
  lisp/term.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-01-03 02:54:10 +0000
+++ b/lisp/ChangeLog    2013-01-03 06:33:25 +0000
@@ -1,5 +1,8 @@
 2013-01-03  Glenn Morris  <address@hidden>
 
+       * 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)

=== modified file 'lisp/term.el'
--- a/lisp/term.el      2013-01-01 09:11:05 +0000
+++ b/lisp/term.el      2013-01-03 06:33:25 +0000
@@ -772,14 +772,14 @@
 (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")
 


reply via email to

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