comparison lisp/dabbrev.el @ 19308:f7a109d11c10

(dabbrev-abbrev-skip-leading-regexp): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Mon, 11 Aug 1997 23:55:10 +0000
parents c662a8633943
children bc1937e6cea5
comparison
equal deleted inserted replaced
19307:5745bc43cfe9 19308:f7a109d11c10
117 (defcustom dabbrev-abbrev-skip-leading-regexp nil 117 (defcustom dabbrev-abbrev-skip-leading-regexp nil
118 "*Regexp for skipping leading characters of an abbreviation. 118 "*Regexp for skipping leading characters of an abbreviation.
119 119
120 Example: Set this to \"\\\\$\" for programming languages 120 Example: Set this to \"\\\\$\" for programming languages
121 in which variable names may appear with or without a leading `$'. 121 in which variable names may appear with or without a leading `$'.
122 \(For example, in Makefiles. 122 \(For example, in Makefiles.\)
123 :type 'regexp
124 :group 'dabbrev))
125 123
126 Set this to nil if no characters should be skipped." 124 Set this to nil if no characters should be skipped."
127 :type '(choice regexp 125 :type '(choice regexp
128 (const :tag "off" nil)) 126 (const :tag "off" nil))
129 :group 'dabbrev) 127 :group 'dabbrev)