diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2000-11-06 14:44:17 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2000-11-06 14:44:17 +0000 |
commit | 92819e90bb12d73429f97126cbcccaac7f230243 (patch) | |
tree | 9d2b1417b6c8a14bff49a080b44715755c90fc2c /lisp/textmodes/texinfo.el | |
parent | d3a67486af4a57469747994c020e93a8897ac49b (diff) | |
download | emacs-92819e90bb12d73429f97126cbcccaac7f230243.tar.gz |
(texinfo-section-list): Change majorheading to 2.
(texinfo-font-lock-syntactic-keywords): Use syntax-strings.
Diffstat (limited to 'lisp/textmodes/texinfo.el')
-rw-r--r-- | lisp/textmodes/texinfo.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el index 712597ad1e9..596ad94814f 100644 --- a/lisp/textmodes/texinfo.el +++ b/lisp/textmodes/texinfo.el @@ -244,7 +244,7 @@ chapter." (defvar texinfo-section-list '(("top" 1) - ("majorheading" 1) + ("majorheading" 2) ("chapter" 2) ("unnumbered" 2) ("appendix" 2) @@ -290,9 +290,9 @@ chapter." "Imenu generic expression for TexInfo mode. See `imenu-generic-expression'.") (defvar texinfo-font-lock-syntactic-keywords - '(("\\(@\\)c\\(omment\\)?\\>" (1 '(11))) - ("^\\(@\\)ignore\\>" (1 '(2097163))) - ("^@end ignore\\(\n\\)" (1 '(2097164)))) + '(("\\(@\\)c\\(omment\\)?\\>" (1 "<")) + ("^\\(@\\)ignore\\>" (1 "< b")) + ("^@end ignore\\(\n\\)" (1 "> b"))) "Syntactic keywords to catch comment delimiters in `texinfo-mode'.") (defface texinfo-heading-face |