aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes/texinfo.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/textmodes/texinfo.el')
-rw-r--r--lisp/textmodes/texinfo.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el
index bd14c658379..2be01d630f9 100644
--- a/lisp/textmodes/texinfo.el
+++ b/lisp/textmodes/texinfo.el
@@ -1,7 +1,7 @@
1;;; texinfo.el --- major mode for editing Texinfo files 1;;; texinfo.el --- major mode for editing Texinfo files
2 2
3;; Copyright (C) 1985, 1988, 1989, 1990, 1991, 1992, 1993, 1996, 1997, 3;; Copyright (C) 1985, 1988, 1989, 1990, 1991, 1992, 1993, 1996, 1997,
4;; 2000, 2001, 2003, 2004 Free Software Foundation, Inc. 4;; 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc.
5 5
6;; Author: Robert J. Chassell 6;; Author: Robert J. Chassell
7;; Date: [See date below for texinfo-version] 7;; Date: [See date below for texinfo-version]
@@ -343,11 +343,13 @@ chapter."
343 "Regexp for environment-like Texinfo list commands. 343 "Regexp for environment-like Texinfo list commands.
344Subexpression 1 is what goes into the corresponding `@end' statement.") 344Subexpression 1 is what goes into the corresponding `@end' statement.")
345 345
346(defface texinfo-heading-face 346(defface texinfo-heading
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 :group 'texinfo)
350(defvar texinfo-heading-face 'texinfo-heading-face) 350;; backward-compatibility alias
351(put 'texinfo-heading-face 'face-alias 'texinfo-heading)
352(defvar texinfo-heading-face 'texinfo-heading)
351 353
352(defvar texinfo-font-lock-keywords 354(defvar texinfo-font-lock-keywords
353 `(;; All but the first had an OVERRIDE of t. 355 `(;; All but the first had an OVERRIDE of t.