summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose E. Marchesi <jemarch@gnu.org>2014-03-26 20:39:56 +0100
committerJose E. Marchesi <jemarch@gnu.org>2014-03-26 20:39:56 +0100
commit274476c8610a25974c9a3050222d0576bf4a2652 (patch)
treefba5eb89bba6966f5d3bf87b4cee573b89af266f
parent8b65e07904384b529a464c89f3739d2e7e4d5135 (diff)
downloadsed-274476c8610a25974c9a3050222d0576bf4a2652.tar.gz
Avoid a little potential misunderstanding in the Regular Expressions section of the manual.
2014-03-26 Jose E. Marchesi <jemarch@gnu.org> * doc/sed.texi (Regular Expressions): avoid a potential misunderstanding in the description of the \| operator.
-rw-r--r--ChangeLog5
-rw-r--r--doc/sed.texi10
2 files changed, 10 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index da1d6fd..6313959 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-03-26 Jose E. Marchesi <jemarch@gnu.org>
+
+ * doc/sed.texi (Regular Expressions): avoid a potential
+ misunderstanding in the description of the \| operator.
+
2013-10-16 David A. Wheeler <dwheeler@dwheeler.com>
* doc/sed-in.texi: Document "-E" option to use EREs. GNU sed already
diff --git a/doc/sed.texi b/doc/sed.texi
index a86ac6d..6f1ce01 100644
--- a/doc/sed.texi
+++ b/doc/sed.texi
@@ -808,11 +808,11 @@ symbols, equivalence classes, and character classes, respectively, and
@item @var{regexp1}\|@var{regexp2}
@cindex @acronym{GNU} extensions, to basic regular expressions
-Matches either @var{regexp1} or @var{regexp2}. Use
-parentheses to use complex alternative regular expressions.
-The matching process tries each alternative in turn, from
-left to right, and the first one that succeeds is used.
-It is a @acronym{GNU} extension.
+Matches either @var{regexp1} or @var{regexp2}. Use escaped
+parentheses to use complex alternative regular expressions. The
+matching process tries each alternative in turn, from left to right,
+and the first one that succeeds is used. It is a @acronym{GNU}
+extension.
@item @var{regexp1}@var{regexp2}
Matches the concatenation of @var{regexp1} and @var{regexp2}.