]> code.delx.au - gnu-emacs/commitdiff
(reb-re-syntax): Fix typo in `:type'. Fix comment.
authorGerd Moellmann <gerd@gnu.org>
Sun, 12 Mar 2000 13:45:25 +0000 (13:45 +0000)
committerGerd Moellmann <gerd@gnu.org>
Sun, 12 Mar 2000 13:45:25 +0000 (13:45 +0000)
lisp/emacs-lisp/re-builder.el

index a6b25e5aa2cb7ad0e0856f8de57062d73be341ae..c43450c3044ebdb957a5367740e74083e7a93504 100644 (file)
@@ -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
 ;;     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
 
 (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.