aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-08-07 18:54:49 +0000
committerRichard M. Stallman1997-08-07 18:54:49 +0000
commit81f9cf5226a6c9dfd26cf83a0166e766c832b7c0 (patch)
tree56fdb724b835e395ce79a4786a96b158e3803210
parent3f16db2909d1e56c932a0c8efd3c2698fa98ff6f (diff)
downloademacs-81f9cf5226a6c9dfd26cf83a0166e766c832b7c0.tar.gz
emacs-81f9cf5226a6c9dfd26cf83a0166e766c832b7c0.zip
(term-default-fg-color):
(term-default-bg-color): Default to nil.
-rw-r--r--lisp/term.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/term.el b/lisp/term.el
index b7930b704e7..141f874c285 100644
--- a/lisp/term.el
+++ b/lisp/term.el
@@ -696,8 +696,8 @@ Buffer local variable.")
696 (progn ,@body) 696 (progn ,@body)
697 (error nil))) 697 (error nil)))
698 698
699(defvar term-default-fg-color "SkyBlue") 699(defvar term-default-fg-color nil)
700(defvar term-default-bg-color "LightBlue") 700(defvar term-default-bg-color nil)
701 701
702(when (fboundp 'make-face) 702(when (fboundp 'make-face)
703;;; --- Simple faces --- 703;;; --- Simple faces ---