aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-03-12 13:45:25 +0000
committerGerd Moellmann2000-03-12 13:45:25 +0000
commitb78417b00068570689d79f3bd0d8de176b0f5fe4 (patch)
treeef8230b8aa305de683e5da9b5bc2bea4c004423e
parent7b746c381028daf76dee9a2a9f2c5fbe01217f48 (diff)
downloademacs-b78417b00068570689d79f3bd0d8de176b0f5fe4.tar.gz
emacs-b78417b00068570689d79f3bd0d8de176b0f5fe4.zip
(reb-re-syntax): Fix typo in `:type'. Fix comment.
-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 @@
24 24
25;;; Commentary: 25;;; Commentary:
26 26
27;; $Id: re-builder.el,v 1.3 2000/01/25 23:42:24 dzu Exp $ 27;; $Id: re-builder.el,v 1.1 2000/03/09 20:20:32 gerd Exp $
28 28
29;; When I have to come up with regular expressions that are more 29;; When I have to come up with regular expressions that are more
30;; complex than simple string matchers, especially if they contain sub 30;; complex than simple string matchers, especially if they contain sub
@@ -109,6 +109,11 @@
109;; target-buffer 109;; target-buffer
110;; - Fixed XEmacs support 110;; - Fixed XEmacs support
111;; 111;;
112;; Changes from Version 1.2:
113;; - Fixed a bug preventing normal startup after killing the (previous)
114;; target-buffer
115;; - Fixed XEmacs support
116;;
112;; Changes from Version 1.1: 117;; Changes from Version 1.1:
113;; - The editing is now done through two major-modes rather than 118;; - The editing is now done through two major-modes rather than
114;; having one minor-mode that behaves exactly like a major-mode 119;; having one minor-mode that behaves exactly like a major-mode
@@ -142,13 +147,13 @@
142 147
143(defcustom reb-re-syntax 'read 148(defcustom reb-re-syntax 'read
144 "*Syntax for the REs in the RE Builder. 149 "*Syntax for the REs in the RE Builder.
145Can either be `read', `string' or `lisp-re'." 150Can either be `read', `string', `sregex' or `lisp-re'."
146 :group 're-builder 151 :group 're-builder
147 :type '(choice (const :tag "Read syntax" read) 152 :type '(choice (const :tag "Read syntax" read)
148 (const :tag "String syntax" string) 153 (const :tag "String syntax" string)
149 (const :tag "`sregex' syntax" sregex) 154 (const :tag "`sregex' syntax" sregex)
150 (const :tag "`lisp-re' syntax" lisp-re) 155 (const :tag "`lisp-re' syntax" lisp-re)
151 (value: sring))) 156 (value: string)))
152 157
153(defcustom reb-auto-match-limit 200 158(defcustom reb-auto-match-limit 200
154 "*Positive integer limiting the matches for RE Builder auto updates. 159 "*Positive integer limiting the matches for RE Builder auto updates.