comparison lisp/ido.el @ 61394:31aa9a390538

* mh-customize.el (mh-speedbar-selected-folder-face): Special case high number of colors displays. * textmodes/table.el (table-cell-face): Add special case for displays supporting a high number of colors. * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face) (vhdl-font-lock-reserved-words-face) (vhdl-speedbar-architecture-face) (vhdl-speedbar-instantiation-face) (vhdl-speedbar-architecture-selected-face) (vhdl-speedbar-instantiation-selected-face): Likewise. * progmodes/sh-script.el (sh-heredoc-face): Likewise. * progmodes/idlw-help.el (idlwave-help-link-face): Likewise. * progmodes/ebrowse.el (ebrowse-tree-mark-face) (ebrowse-root-class-face, ebrowse-member-attribute-face) (ebrowse-progress-face): Likewise. * progmodes/compile.el (compilation-info-face): Likewise. * progmodes/cc-fonts.el (c-invalid-face): Likewise. * emacs-lisp/re-builder.el (reb-match-3): Likewise. * calendar/calendar.el (diary-face): Likewise. * woman.el (woman-italic-face, woman-bold-face) (woman-unknown-face): Likewise. * wid-edit.el (widget-button-pressed-face): Likewise. * whitespace.el (whitespace-highlight-face): Likewise. * smerge-mode.el (smerge-mine-face, smerge-base-face): Likewise. * pcvs-info.el (cvs-marked-face): Likewise. * info.el (info-xref): Likewise. * ido.el (ido-subdir-face, ido-indicator-face): Likewise. * hilit-chg.el (highlight-changes-face) (highlight-changes-delete-face): Likewise. * hi-lock.el (hi-yellow, hi-green, hi-blue-b, hi-green-b) (hi-red-b): Likewise. * generic-x.el (show-tabs-tab-face, show-tabs-space-face): Likewise. * font-lock.el (font-lock-keyword-face) (font-lock-function-name-face, font-lock-warning-face): Likewise. * cus-edit.el (custom-invalid-face, custom-modified-face) (custom-set-face, custom-changed-face, custom-variable-tag-face) (custom-group-tag-face-1, custom-group-tag-face): Likewise. * comint.el (comint-highlight-prompt): Likewise.
author Dan Nicolaescu <dann@ics.uci.edu>
date Fri, 08 Apr 2005 14:26:13 +0000
parents cc04bb9ef8b6
children 31b357591bb4 02f1dbc4a199
comparison
equal deleted inserted replaced
61393:dc3d2bbd5575 61394:31aa9a390538
1 ;;; ido.el --- interactively do things with buffers and files. 1 ;;; ido.el --- interactively do things with buffers and files.
2 2
3 ;; Copyright (C) 1996-2004 Free Software Foundation, Inc. 3 ;; Copyright (C) 1996-2004, 2005 Free Software Foundation, Inc.
4 4
5 ;; Author: Kim F. Storm <storm@cua.dk> 5 ;; Author: Kim F. Storm <storm@cua.dk>
6 ;; Based on: iswitchb by Stephen Eglen <stephen@cns.ed.ac.uk> 6 ;; Based on: iswitchb by Stephen Eglen <stephen@cns.ed.ac.uk>
7 ;; Keywords: extensions convenience 7 ;; Keywords: extensions convenience
8 8
745 (:foreground "ForestGreen")) 745 (:foreground "ForestGreen"))
746 (t (:italic t))) 746 (t (:italic t)))
747 "*Font used by ido for highlighting only match." 747 "*Font used by ido for highlighting only match."
748 :group 'ido) 748 :group 'ido)
749 749
750 (defface ido-subdir-face '((((class color)) 750 (defface ido-subdir-face '((((min-colors 88) (class color))
751 (:foreground "red1"))
752 (((class color))
751 (:foreground "red")) 753 (:foreground "red"))
752 (t (:underline t))) 754 (t (:underline t)))
753 "*Font used by ido for highlighting subdirs in the alternatives." 755 "*Font used by ido for highlighting subdirs in the alternatives."
754 :group 'ido) 756 :group 'ido)
755 757
756 (defface ido-indicator-face '((((class color)) 758 (defface ido-indicator-face '((((min-colors 88) (class color))
759 (:foreground "yellow1"
760 :background "red1"
761 :width condensed))
762 (((class color))
757 (:foreground "yellow" 763 (:foreground "yellow"
758 :background "red" 764 :background "red"
759 :width condensed)) 765 :width condensed))
760 (t (:inverse-video t))) 766 (t (:inverse-video t)))
761 "*Font used by ido for highlighting its indicators." 767 "*Font used by ido for highlighting its indicators."