comparison lisp/term.el @ 19219:67d2c89a660c

(term-default-fg-color): (term-default-bg-color): Default to nil.
author Richard M. Stallman <rms@gnu.org>
date Thu, 07 Aug 1997 18:54:49 +0000
parents e159c69a45f0
children 81065d2158f9
comparison
equal deleted inserted replaced
19218:56b3e5e01010 19219:67d2c89a660c
694 (defmacro term-ignore-error (&rest body) 694 (defmacro term-ignore-error (&rest body)
695 `(condition-case nil 695 `(condition-case nil
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 ---
704 (make-face 'term-default-fg) 704 (make-face 'term-default-fg)
705 (make-face 'term-default-bg) 705 (make-face 'term-default-bg)