mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
(reb-re-syntax): Fix custom type.
This commit is contained in:
parent
eb69fe3e0a
commit
7b1730dd1f
@ -1,3 +1,10 @@
|
||||
2007-03-05 Richard Stallman <rms@gnu.org>
|
||||
|
||||
* emacs-lisp/re-builder.el (reb-re-syntax): Fix custom type.
|
||||
|
||||
* files.el (find-file-noselect): No error if file no longer exists.
|
||||
Display a message and avoid other questions.
|
||||
|
||||
2007-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* pcomplete.el (pcomplete-show-completions): Improve last change, so
|
||||
|
@ -130,14 +130,13 @@
|
||||
|
||||
(defcustom reb-re-syntax 'read
|
||||
"*Syntax for the REs in the RE Builder.
|
||||
Can either be `read', `string', `sregex' or `lisp-re'."
|
||||
Can either be `read', `string', `sregex', `lisp-re', `rx'."
|
||||
:group 're-builder
|
||||
:type '(choice (const :tag "Read syntax" read)
|
||||
(const :tag "String syntax" string)
|
||||
(const :tag "`sregex' syntax" sregex)
|
||||
(const :tag "`lisp-re' syntax" lisp-re)
|
||||
(const :tag "`rx' syntax" rx)
|
||||
(value: string)))
|
||||
(const :tag "`rx' syntax" rx)))
|
||||
|
||||
(defcustom reb-auto-match-limit 200
|
||||
"*Positive integer limiting the matches for RE Builder auto updates.
|
||||
|
Loading…
Reference in New Issue
Block a user