comparison lisp/textmodes/bib-mode.el @ 13967:8058d6f606de

(capitalize-title-stop-words): Doc fix.
author Karl Heuer <kwzh@gnu.org>
date Thu, 04 Jan 1996 23:27:40 +0000
parents 10e417efb12a
children 83f275dcd93a
comparison
equal deleted inserted replaced
13966:82eeef849f8b 13967:8058d6f606de
196 196
197 (defvar capitalize-title-stop-words 197 (defvar capitalize-title-stop-words
198 (concat 198 (concat
199 "the\\|and\\|of\\|is\\|a\\|an\\|of\\|for\\|in\\|to\\|in\\|on\\|at\\|" 199 "the\\|and\\|of\\|is\\|a\\|an\\|of\\|for\\|in\\|to\\|in\\|on\\|at\\|"
200 "by\\|with\\|that\\|its") 200 "by\\|with\\|that\\|its")
201 "Words not to be capitialized in a title (unless they're the first word 201 "Words not to be capitalized in a title (unless they're the first word
202 in the title).") 202 in the title).")
203 203
204 (defvar capitalize-title-stop-regexp 204 (defvar capitalize-title-stop-regexp
205 (concat "\\(" capitalize-title-stop-words "\\)\\(\\b\\|'\\)")) 205 (concat "\\(" capitalize-title-stop-words "\\)\\(\\b\\|'\\)"))
206 206