Mercurial > emacs
changeset 28097:5d7390b72a44
(reb-re-syntax): Fix typo in `:type'. Fix comment.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Sun, 12 Mar 2000 13:45:25 +0000 |
parents | 244f283b3d03 |
children | 2fc1959fa99d |
files | lisp/emacs-lisp/re-builder.el |
diffstat | 1 files changed, 8 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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.