summaryrefslogtreecommitdiff
path: root/lisp/term.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2004-08-16 22:41:56 +0000
committerRichard M. Stallman <rms@gnu.org>2004-08-16 22:41:56 +0000
commit35985318379a1fe30f91fb797757ea722f402b3e (patch)
treeca2ea90aa52b955d0c931b7c8bee5c60379ed624 /lisp/term.el
parent9a69579e35eded8550448022462c6221cf044d84 (diff)
downloademacs-35985318379a1fe30f91fb797757ea722f402b3e.tar.gz
(term-default-fg-color, term-default-bg-color)
(ansi-term-color-vector): Use `unspecified', not nil, as default.
Diffstat (limited to 'lisp/term.el')
-rw-r--r--lisp/term.el9
1 files changed, 4 insertions, 5 deletions
diff --git a/lisp/term.el b/lisp/term.el
index f1bd8d9a4f6..9866db7e29c 100644
--- a/lisp/term.el
+++ b/lisp/term.el
@@ -705,18 +705,18 @@ Buffer local variable.")
;;; faces -mm
-(defcustom term-default-fg-color nil
+(defcustom term-default-fg-color 'unspecified
"Default color for foreground in `term'."
:group 'term
:type 'string)
-(defcustom term-default-bg-color nil
+(defcustom term-default-bg-color 'unspecified
"Default color for background in `term'."
:group 'term
:type 'string)
(defvar ansi-term-color-vector
- [nil "black" "red" "green" "yellow" "blue"
+ [unspecified "black" "red" "green" "yellow" "blue"
"magenta" "cyan" "white"])
;;; Inspiration came from comint.el -mm
@@ -3080,8 +3080,7 @@ See `term-prompt-regexp'."
(setq term-current-face
(append '(:underline t) term-current-face))))))
-; (message "Debug %S" term-current-face)
-
+;;; (message "Debug %S" term-current-face)
(setq term-ansi-face-already-done 0))