# HG changeset patch # User Richard M. Stallman # Date 1173126416 0 # Node ID afaae672092015f5e08cbecc81bd48ac8833deae # Parent df0cc74b8778d79276af392a0a529eed6cb8476a (reb-re-syntax): Fix custom type. diff -r df0cc74b8778 -r afaae6720920 lisp/emacs-lisp/re-builder.el --- a/lisp/emacs-lisp/re-builder.el Mon Mar 05 19:57:10 2007 +0000 +++ b/lisp/emacs-lisp/re-builder.el Mon Mar 05 20:26:56 2007 +0000 @@ -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.