diff lisp/term.el @ 56684:39cc1e82deb1

(term-default-fg-color, term-default-bg-color) (ansi-term-color-vector): Use `unspecified', not nil, as default.
author Richard M. Stallman <rms@gnu.org>
date Mon, 16 Aug 2004 22:41:56 +0000
parents 0b482d5702c7
children bebd8a58e0f8 d8411455de48
line wrap: on
line diff
--- a/lisp/term.el	Mon Aug 16 22:40:47 2004 +0000
+++ b/lisp/term.el	Mon Aug 16 22:41:56 2004 +0000
@@ -705,18 +705,18 @@
 
 ;;; 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 @@
 	      (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))