git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13159 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2009-04-27 03:07:55 +00:00
parent 6f7e34abc3
commit f28bfb149c
1 changed files with 12 additions and 1 deletions

View File

@ -178,7 +178,7 @@
;; Customize face attributes
(setq font-lock-face-attributes
;; Symbol-for-Face Foreground Background Bold Italic Underline
'((font-lock-comment-face "DarkGreen")
'((font-lock-comment-face "green")
(font-lock-preprocessor-face "gray")
(font-lock-string-face "Sienna")
(font-lock-keyword-face "purple")
@ -186,6 +186,13 @@
(font-lock-variable-name-face "Yellow")
(font-lock-type-face "Yellow")
(font-lock-reference-face "Purple")
(font-lock-builtin-face "limegreen")
(font-lock-constant-face "yellow")
(font-lock-doc-face "limegreen")
(font-lock-highlighting-face "limegreen")
(font-lock-warning-face "limegreen")
))
;; Load the font-lock package.
(require 'font-lock)
@ -197,6 +204,10 @@