* Kim F. Storm (2005-04-06) writes:

> I think (face FACE [PROP VAL]...) would be clearer.

AFAICS the "face FACE" part isn't even necessary; you can pass a
property/value-only list to `font-lock-keywords' and it will work as
well (you might have to disable global-font-lock-mode before trying
this):

(progn
  (pop-to-buffer (get-buffer-create "*foo*"))
  (insert "foo")
  (setq font-lock-keywords '(("foo" 0 '(:foreground "green"))))
  (font-lock-fontify-keywords-region (point-min) (point-max)))

This is not covered in the manual and doc string yet, or am I missing
something?

-- 
Ralf


_______________________________________________
Emacs-devel mailing list
Emacs-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-devel

Reply via email to