comparison lisp/progmodes/make-mode.el @ 90261:7beb78bc1f8e

Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-97 Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 616-696) - Add lisp/mh-e/.arch-inventory - Update from CVS - Merge from gnus--rel--5.10 - Update from CVS: lisp/smerge-mode.el: Add 'tools' to file keywords. - lisp/gnus/ChangeLog: Remove duplicate entry * gnus--rel--5.10 (patch 147-181) - Update from CVS - Merge from emacs--cvs-trunk--0 - Update from CVS: lisp/mml.el (mml-preview): Doc fix. - Update from CVS: texi/message.texi: Fix default values. - Update from CVS: texi/gnus.texi (RSS): Addition.
author Miles Bader <miles@gnu.org>
date Mon, 16 Jan 2006 08:37:27 +0000
parents 0ca0d9181b5e ca3575ba6361
children d88caeac70d7
comparison
equal deleted inserted replaced
90260:0ca0d9181b5e 90261:7beb78bc1f8e
95 ;;; Configurable stuff 95 ;;; Configurable stuff
96 ;;; ------------------------------------------------------------ 96 ;;; ------------------------------------------------------------
97 97
98 (defgroup makefile nil 98 (defgroup makefile nil
99 "Makefile editing commands for Emacs." 99 "Makefile editing commands for Emacs."
100 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
100 :group 'tools 101 :group 'tools
101 :prefix "makefile-") 102 :prefix "makefile-")
102 103
103 (defface makefile-space 104 (defface makefile-space
104 '((((class color)) (:background "hotpink")) 105 '((((class color)) (:background "hotpink"))
105 (t (:reverse-video t))) 106 (t (:reverse-video t)))
106 "Face to use for highlighting leading spaces in Font-Lock mode." 107 "Face to use for highlighting leading spaces in Font-Lock mode."
107 :group 'faces
108 :group 'makefile) 108 :group 'makefile)
109 (put 'makefile-space-face 'face-alias 'makefile-space) 109 (put 'makefile-space-face 'face-alias 'makefile-space)
110 110
111 (defface makefile-targets 111 (defface makefile-targets
112 ;; This needs to go along both with foreground and background colors (i.e. shell) 112 ;; This needs to go along both with foreground and background colors (i.e. shell)
113 '((t (:inherit font-lock-function-name-face))) 113 '((t (:inherit font-lock-function-name-face)))
114 "Face to use for additionally highlighting rule targets in Font-Lock mode." 114 "Face to use for additionally highlighting rule targets in Font-Lock mode."
115 :group 'faces
116 :group 'makefile 115 :group 'makefile
117 :version "22.1") 116 :version "22.1")
118 117
119 (defface makefile-shell 118 (defface makefile-shell
120 () 119 ()
121 ;;'((((class color) (min-colors 88) (background light)) (:background "seashell1")) 120 ;;'((((class color) (min-colors 88) (background light)) (:background "seashell1"))
122 ;; (((class color) (min-colors 88) (background dark)) (:background "seashell4"))) 121 ;; (((class color) (min-colors 88) (background dark)) (:background "seashell4")))
123 "Face to use for additionally highlighting Shell commands in Font-Lock mode." 122 "Face to use for additionally highlighting Shell commands in Font-Lock mode."
124 :group 'faces
125 :group 'makefile 123 :group 'makefile
126 :version "22.1") 124 :version "22.1")
127 125
128 (defface makefile-makepp-perl 126 (defface makefile-makepp-perl
129 '((((class color) (background light)) (:background "LightBlue1")) ; Camel Book 127 '((((class color) (background light)) (:background "LightBlue1")) ; Camel Book
130 (((class color) (background dark)) (:background "DarkBlue")) 128 (((class color) (background dark)) (:background "DarkBlue"))
131 (t (:reverse-video t))) 129 (t (:reverse-video t)))
132 "Face to use for additionally highlighting Perl code in Font-Lock mode." 130 "Face to use for additionally highlighting Perl code in Font-Lock mode."
133 :group 'faces
134 :group 'makefile 131 :group 'makefile
135 :version "22.1") 132 :version "22.1")
136 133
137 (defcustom makefile-browser-buffer-name "*Macros and Targets*" 134 (defcustom makefile-browser-buffer-name "*Macros and Targets*"
138 "*Name of the macro- and target browser buffer." 135 "*Name of the macro- and target browser buffer."