diff lisp/emacs-lisp/re-builder.el @ 76350:afaae6720920

(reb-re-syntax): Fix custom type.
author Richard M. Stallman <rms@gnu.org>
date Mon, 05 Mar 2007 20:26:56 +0000
parents 7a3f13e2dd57
children 2f2e0b6d33c0 91bf6e05918b
line wrap: on
line diff
--- 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.