# HG changeset patch # User Gerd Moellmann # Date 952868725 0 # Node ID 5d7390b72a440eae1320c98b706d1d590ec62fe8 # Parent 244f283b3d03acf9efa4ecf263162d024a2f315a (reb-re-syntax): Fix typo in `:type'. Fix comment. diff -r 244f283b3d03 -r 5d7390b72a44 lisp/emacs-lisp/re-builder.el --- a/lisp/emacs-lisp/re-builder.el Sun Mar 12 12:52:29 2000 +0000 +++ b/lisp/emacs-lisp/re-builder.el Sun Mar 12 13:45:25 2000 +0000 @@ -24,7 +24,7 @@ ;;; Commentary: -;; $Id: re-builder.el,v 1.3 2000/01/25 23:42:24 dzu Exp $ +;; $Id: re-builder.el,v 1.1 2000/03/09 20:20:32 gerd Exp $ ;; When I have to come up with regular expressions that are more ;; complex than simple string matchers, especially if they contain sub @@ -109,6 +109,11 @@ ;; target-buffer ;; - Fixed XEmacs support ;; +;; Changes from Version 1.2: +;; - Fixed a bug preventing normal startup after killing the (previous) +;; target-buffer +;; - Fixed XEmacs support +;; ;; Changes from Version 1.1: ;; - The editing is now done through two major-modes rather than ;; having one minor-mode that behaves exactly like a major-mode @@ -142,13 +147,13 @@ (defcustom reb-re-syntax 'read "*Syntax for the REs in the RE Builder. -Can either be `read', `string' or `lisp-re'." +Can either be `read', `string', `sregex' or `lisp-re'." :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) - (value: sring))) + (value: string))) (defcustom reb-auto-match-limit 200 "*Positive integer limiting the matches for RE Builder auto updates.