aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJohn Paul Wallington2005-01-06 21:58:17 +0000
committerJohn Paul Wallington2005-01-06 21:58:17 +0000
commitd7975e20a0079d6159815aceb804126d0f153ac4 (patch)
tree4ccd643ae59d4586ddd3f9fc91c97c838e74d75b /lisp
parent4c07596d8dab47d5f1189de83cccde18b9b2d517 (diff)
downloademacs-d7975e20a0079d6159815aceb804126d0f153ac4.tar.gz
emacs-d7975e20a0079d6159815aceb804126d0f153ac4.zip
Update copyright. Update commentary to mention rx syntax support.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/re-builder.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/re-builder.el b/lisp/emacs-lisp/re-builder.el
index 77a12167c30..019a45213c8 100644
--- a/lisp/emacs-lisp/re-builder.el
+++ b/lisp/emacs-lisp/re-builder.el
@@ -1,6 +1,6 @@
1;;; re-builder.el --- building Regexps with visual feedback 1;;; re-builder.el --- building Regexps with visual feedback
2 2
3;; Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc. 3;; Copyright (C) 1999, 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
4 4
5;; Author: Detlev Zundel <dzu@gnu.org> 5;; Author: Detlev Zundel <dzu@gnu.org>
6;; Keywords: matching, lisp, tools 6;; Keywords: matching, lisp, tools
@@ -61,12 +61,12 @@
61;; even the auto updates go all the way. Forcing an update overrides 61;; even the auto updates go all the way. Forcing an update overrides
62;; this limit allowing an easy way to see all matches. 62;; this limit allowing an easy way to see all matches.
63 63
64;; Currently `re-builder' understands four different forms of input, 64;; Currently `re-builder' understands five different forms of input,
65;; namely `read', `string', `sregex' and `lisp-re' syntax. Read 65;; namely `read', `string', `rx', `sregex' and `lisp-re' syntax. Read
66;; syntax and string syntax are both delimited by `"'s and behave 66;; syntax and string syntax are both delimited by `"'s and behave
67;; according to their name. With the `string' syntax there's no need 67;; according to their name. With the `string' syntax there's no need
68;; to escape the backslashes and double quotes simplifying the editing 68;; to escape the backslashes and double quotes simplifying the editing
69;; somewhat. The other two allow editing of symbolic regular 69;; somewhat. The other three allow editing of symbolic regular
70;; expressions supported by the packages of the same name. (`lisp-re' 70;; expressions supported by the packages of the same name. (`lisp-re'
71;; is a package by me and its support may go away as it is nearly the 71;; is a package by me and its support may go away as it is nearly the
72;; same as the `sregex' package in Emacs) 72;; same as the `sregex' package in Emacs)