comparison lisp/generic.el @ 58587:275bfc016770

(define-generic-mode): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Sat, 27 Nov 2004 19:01:41 +0000
parents 9aacf8e5ae58
children b392b963c10b f2ebccfa87d4
comparison
equal deleted inserted replaced
58586:7bc75f3f915a 58587:275bfc016770
195 COMMENT-LIST is a list, whose entries are either a single character, 195 COMMENT-LIST is a list, whose entries are either a single character,
196 a one or two character string or a cons pair. If the entry is a character 196 a one or two character string or a cons pair. If the entry is a character
197 or a one-character string, it is added to the mode's syntax table with 197 or a one-character string, it is added to the mode's syntax table with
198 `comment-start' syntax. If the entry is a cons pair, the elements of the 198 `comment-start' syntax. If the entry is a cons pair, the elements of the
199 pair are considered to be `comment-start' and `comment-end' respectively. 199 pair are considered to be `comment-start' and `comment-end' respectively.
200 \(The latter should be nil if you want comments to end at end of line.)
200 Note that Emacs has limitations regarding comment characters. 201 Note that Emacs has limitations regarding comment characters.
201 202
202 KEYWORD-LIST is a list of keywords to highlight with `font-lock-keyword-face'. 203 KEYWORD-LIST is a list of keywords to highlight with `font-lock-keyword-face'.
203 Each keyword should be a string. 204 Each keyword should be a string.
204 205