diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-08-07 18:54:49 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-08-07 18:54:49 +0000 |
commit | 81f9cf5226a6c9dfd26cf83a0166e766c832b7c0 (patch) | |
tree | 56fdb724b835e395ce79a4786a96b158e3803210 | |
parent | 3f16db2909d1e56c932a0c8efd3c2698fa98ff6f (diff) | |
download | emacs-81f9cf5226a6c9dfd26cf83a0166e766c832b7c0.tar.gz emacs-81f9cf5226a6c9dfd26cf83a0166e766c832b7c0.tar.bz2 emacs-81f9cf5226a6c9dfd26cf83a0166e766c832b7c0.zip |
(term-default-fg-color):
(term-default-bg-color): Default to nil.
-rw-r--r-- | lisp/term.el | 4 |
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.") (progn ,@body) (error nil))) -(defvar term-default-fg-color "SkyBlue") -(defvar term-default-bg-color "LightBlue") +(defvar term-default-fg-color nil) +(defvar term-default-bg-color nil) (when (fboundp 'make-face) ;;; --- Simple faces --- |