diff options
author | Richard M. Stallman <rms@gnu.org> | 2007-03-05 20:27:34 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2007-03-05 20:27:34 +0000 |
commit | 7b1730dd1fd836aa4b524dd521557063ce33fd44 (patch) | |
tree | 31edc2c7e4632023a37a275b5c59b7175fa6922d /lisp/emacs-lisp | |
parent | eb69fe3e0ad2641090ae3222d3d07fea26df318c (diff) | |
download | emacs-7b1730dd1fd836aa4b524dd521557063ce33fd44.tar.gz emacs-7b1730dd1fd836aa4b524dd521557063ce33fd44.tar.bz2 emacs-7b1730dd1fd836aa4b524dd521557063ce33fd44.zip |
(reb-re-syntax): Fix custom type.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/re-builder.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/re-builder.el b/lisp/emacs-lisp/re-builder.el index 08897bec72c..dc4562ab9bb 100644 --- a/lisp/emacs-lisp/re-builder.el +++ b/lisp/emacs-lisp/re-builder.el @@ -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. |