Joe Corneli wrote: > (add-hook 'lisp-mode-hook > (lambda () (make-local-variable font-lock-comment-face) > (setq font-lock-comment-face ugly-face)))
That can be simplified just a bit:
(add-hook 'lisp-mode-hook
(lambda ()
(set (make-local-variable font-lock-comment-face) ugly-face)))
--
Kevin Rodgers
_______________________________________________
Help-gnu-emacs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs
