summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/re-builder.el
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2000-03-12 13:45:25 +0000
committerGerd Moellmann <gerd@gnu.org>2000-03-12 13:45:25 +0000
commitb78417b00068570689d79f3bd0d8de176b0f5fe4 (patch)
treeef8230b8aa305de683e5da9b5bc2bea4c004423e /lisp/emacs-lisp/re-builder.el
parent7b746c381028daf76dee9a2a9f2c5fbe01217f48 (diff)
downloademacs-b78417b00068570689d79f3bd0d8de176b0f5fe4.tar.gz
(reb-re-syntax): Fix typo in `:type'. Fix comment.
Diffstat (limited to 'lisp/emacs-lisp/re-builder.el')
-rw-r--r--lisp/emacs-lisp/re-builder.el11
1 files changed, 8 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/re-builder.el b/lisp/emacs-lisp/re-builder.el
index a6b25e5aa2c..c43450c3044 100644
--- a/lisp/emacs-lisp/re-builder.el
+++ b/lisp/emacs-lisp/re-builder.el
@@ -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.