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 r110830: Make term-default-fg-colo


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r110830: Make term-default-fg-color, term-default-bg-color obsolete
Date: Fri, 09 Nov 2012 20:48:44 -0500
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110830
committer: Glenn Morris <address@hidden>
branch nick: emacs-24
timestamp: Fri 2012-11-09 20:48:44 -0500
message:
  Make term-default-fg-color, term-default-bg-color obsolete
  
  * lisp/term.el (term-default-fg-color, term-default-bg-color):
  Make obsolete, rather than just saying "deprecated" in the doc.
modified:
  lisp/ChangeLog
  lisp/term.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-11-10 01:40:48 +0000
+++ b/lisp/ChangeLog    2012-11-10 01:48:44 +0000
@@ -1,5 +1,8 @@
 2012-11-10  Glenn Morris  <address@hidden>
 
+       * term.el (term-default-fg-color, term-default-bg-color):
+       Make obsolete, rather than just saying "deprecated" in the doc.
+
        * term.el (term): Rename from `term-face'.
        (term-current-face, ansi-term-color-vector)
        (term-default-fg-color, term-default-bg-color, term-ansi-reset):

=== modified file 'lisp/term.el'
--- a/lisp/term.el      2012-11-10 01:40:48 +0000
+++ b/lisp/term.el      2012-11-10 01:48:44 +0000
@@ -770,16 +770,18 @@
    term-color-white])
 
 (defcustom term-default-fg-color nil
-  "If non-nil, default color for foreground in Term mode.
-This is deprecated in favor of customizing the `term' face."
+  "If non-nil, default color for foreground in Term mode."
   :group 'term
   :type 'string)
+(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.
-This is deprecated in favor of customizing the `term' face."
+  "If non-nil, default color for foreground in Term mode."
   :group 'term
   :type 'string)
+(make-obsolete-variable 'term-default-bg-color "use the face `term' instead."
+                        "24.3")
 
 (defface term
   `((t


reply via email to

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