help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Adding font-lock keywords


From: Brendan Van Horn
Subject: Adding font-lock keywords
Date: 21 Apr 2003 14:05:19 -0700

Greetings!  I spent some time reading FAQs and posts I could find and
I still seem to be missing something.  I'm trying to add some extra
keywords so that they are highlighted while editing.  Here is what I
came up with:

;; windows constants
(setq my-win32-constant-keywords
      (regexp-opt
       '("COINIT_MULTITHREADED" "ICC_COOL_CLASSES" "NULL"
"SW_SHOWDEFAULT"
         "VT_BSTR" "VT_I4")))

(font-lock-add-keywords
 'c++-mode
 '((my-win32-constant-keywords . font-lock-constant-face)))

Where am I going wrong???

Thanks!
Brendan


reply via email to

[Prev in Thread] Current Thread [Next in Thread]