# HG changeset patch # User Richard M. Stallman # Date 1123789657 0 # Node ID 3e6c73954fdaa6348910b0882dc060aae7bf81a6 # Parent 6ed6c1b79d36f8bc6c8e80b81da84c2bdea1c9a9 (Regular Expressions): Document re-builder. diff -r 6ed6c1b79d36 -r 3e6c73954fda lispref/searching.texi --- a/lispref/searching.texi Thu Aug 11 19:47:10 2005 +0000 +++ b/lispref/searching.texi Thu Aug 11 19:47:37 2005 +0000 @@ -167,6 +167,16 @@ a regexp is a very powerful operation. This section explains how to write regexps; the following section says how to search for them. +@findex re-builder +@cindex authoring regular expressions + For convenient interactive development of regular expressions, you +can use the @kbd{M-x re-builder} command. It provides a convenient +interface for creating regular expressions, by giving immediate visual +feedback in a separate buffer. As you edit the regexp, all its +matches in the target buffer are highlighted. Each parenthesized +sub-expression of the regexp is shown in a distinct face, which makes +it easier to verify even very complex regexps. + @menu * Syntax of Regexps:: Rules for writing regular expressions. * Regexp Example:: Illustrates regular expression syntax.