comparison lisp/textmodes/texinfo.el @ 62813:f2a72c23fa03

(texinfo-heading-face): Specify customization group.
author Lute Kamstra <lute@gnu.org>
date Fri, 27 May 2005 13:07:49 +0000
parents 0b36787d3411
children 72fae6758182 01137c1fdbe9
comparison
equal deleted inserted replaced
62812:29a93bca63aa 62813:f2a72c23fa03
343 "Regexp for environment-like Texinfo list commands. 343 "Regexp for environment-like Texinfo list commands.
344 Subexpression 1 is what goes into the corresponding `@end' statement.") 344 Subexpression 1 is what goes into the corresponding `@end' statement.")
345 345
346 (defface texinfo-heading-face 346 (defface texinfo-heading-face
347 '((t (:inherit font-lock-function-name-face))) 347 '((t (:inherit font-lock-function-name-face)))
348 "Face used for section headings in `texinfo-mode'.") 348 "Face used for section headings in `texinfo-mode'."
349 :group 'texinfo)
349 (defvar texinfo-heading-face 'texinfo-heading-face) 350 (defvar texinfo-heading-face 'texinfo-heading-face)
350 351
351 (defvar texinfo-font-lock-keywords 352 (defvar texinfo-font-lock-keywords
352 `(;; All but the first had an OVERRIDE of t. 353 `(;; All but the first had an OVERRIDE of t.
353 ;; It didn't seem to be any better, and it's slower--simon. 354 ;; It didn't seem to be any better, and it's slower--simon.