home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / lucid / help-lucid-emacs / text0179.txt < prev    next >
Encoding:
Text File  |  1993-07-14  |  680 b   |  30 lines

  1. In 19.4, the declaration 
  2.  
  3. (defconst imps-font-lock-keywords
  4.   '(("^(def[-a-z]+\\s +\\([^
  5. ]+\\)"
  6.      1
  7.      font-lock-function-name-face)))
  8.  
  9. together with 
  10.  
  11.   (setq font-lock-keywords imps-font-lock-keywords) 
  12.   (font-lock-mode)
  13.   (set-face-underline-p (quote font-lock-string-face) nil)
  14.  
  15. as part of a mode hook caused the name in a context such as 
  16.  
  17. (def-theorem la-la-la 
  18.    ...)
  19.  
  20. to be in bold italics.  (This isn't significantly different from the
  21. lisp-font-lock-keywords in font-lock.el.)  But in 19.6 this appears no longer
  22. to do so.  I couldn't find anything about font-lock-mode in the NEWS file.  Is
  23. there some change I should adjust to?  
  24.  
  25. Thanks very much.  
  26.  
  27.     Josh
  28.  
  29.  
  30.