aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/term/tty-colors.el11
1 files changed, 11 insertions, 0 deletions
diff --git a/lisp/term/tty-colors.el b/lisp/term/tty-colors.el
index 0a818a5c734..fc21aee2225 100644
--- a/lisp/term/tty-colors.el
+++ b/lisp/term/tty-colors.el
@@ -751,6 +751,17 @@
751 ("black" 0 0 0 0)) 751 ("black" 0 0 0 0))
752 "An alist of 8 standard tty colors, their indices and RGB values.") 752 "An alist of 8 standard tty colors, their indices and RGB values.")
753 753
754;; This is used by term.c
755(defvar tty-color-mode-alist
756 '((never . -1)
757 (no . -1)
758 (default . 0)
759 (auto . 0)
760 (ansi8 . 8)
761 (always . 8)
762 (yes . 8))
763 "An alist of supported standard tty color modes and their aliases.")
764
754(defvar tty-defined-color-alist nil 765(defvar tty-defined-color-alist nil
755 "An alist of defined terminal colors and their RGB values. 766 "An alist of defined terminal colors and their RGB values.
756 767