• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/emacs-93/emacs/lisp/

Lines Matching +defs:mode +defs:alist

78 	   (internal-set-alternative-font-family-alist value)))
104 (internal-set-alternative-font-registry-alist value)))
937 used. Value is an alist of (NAME . VALUE) if ATTRIBUTE expects a value
984 (defvar face-attribute-name-alist
999 "An alist of descriptive names for face attributes.
1007 (cdr (assq attribute face-attribute-name-alist)))
1010 (defun face-read-string (face default name &optional completion-alist)
1015 alist of valid values, if non-nil.
1028 completion-alist nil nil nil nil default)))
1117 (dolist (attribute face-attribute-name-alist result)
1357 (dolist (entry face-attribute-name-alist result)
1405 (memq (frame-parameter frame 'background-mode)
1447 (let ((attrs face-attribute-name-alist))
1490 (let ((list face-attribute-name-alist)
1534 (mapcar 'car (tty-color-alist frame))))
1587 ;;; Background mode.
1590 (defcustom frame-background-mode nil
1599 (mapc 'frame-set-background-mode (frame-list)))
1605 (defvar default-frame-background-mode nil
1609 mode from `xterm' or a similar terminal emulator, the value is
1613 (defun frame-set-background-mode (frame)
1616 according to the `background-mode' and `display-type' frame parameters."
1621 (bg-mode
1622 (cond (frame-background-mode)
1627 (or default-frame-background-mode 'dark))
1631 (or default-frame-background-mode 'dark))
1633 (if (eq default-frame-background-mode 'light) 'dark 'light))
1649 (old-bg-mode
1650 (frame-parameter frame 'background-mode))
1654 (unless (and (eq bg-mode old-bg-mode) (eq display-type old-display-type))
1668 (list (cons 'background-mode bg-mode)
1686 (cdr (assq 'name default-frame-alist))))
1697 ;; default-frame-alist so that they go after it.
1698 (setq parameters (append parameters default-frame-alist parsed))))
1706 (assq 'reverse default-frame-alist)
1732 `default-frame-alist'. If PARAMETERS specify a frame name,
1734 or `default-frame-alist' contains a `reverse' parameter, or
1745 (frame-set-background-mode frame)
1818 (assq 'reverse default-frame-alist)))
1836 `default-frame-alist'. If either PARAMETERS or `default-frame-alist'
1844 (frame-set-background-mode frame)
1857 (frame-set-background-mode frame)
1877 'frame-set-background-mode "21.1")
2050 (defgroup mode-line-faces nil
2051 "Faces used in the mode line."
2052 :group 'mode-line
2056 (defface mode-line
2062 "Basic mode line face for selected window."
2064 :group 'mode-line-faces
2067 (defface mode-line-inactive
2069 :inherit mode-line)
2078 "Basic mode line face for non-selected windows."
2080 :group 'mode-line-faces
2083 (defface mode-line-highlight
2088 "Basic mode line face for highlighting."
2090 :group 'mode-line-faces
2093 (defface mode-line-buffer-id
2095 "Face used for buffer identification parts of the mode line."
2097 :group 'mode-line-faces
2100 ;; Make `modeline' an alias for `mode-line', for compatibility.
2101 (put 'modeline 'face-alias 'mode-line)
2102 (put 'modeline-inactive 'face-alias 'mode-line-inactive)
2103 (put 'modeline-highlight 'face-alias 'mode-line-highlight)
2104 (put 'modeline-buffer-id 'face-alias 'mode-line-buffer-id)
2108 :inherit mode-line)
2111 ;; good when combined with inverse-video mode-lines and multiple
2114 ;; header-line in relation to the mode-line face. If a terminal
2119 :inverse-video nil ;Override the value inherited from mode-line.
2142 '((((type tty)) :inherit mode-line-inactive))