aboutsummaryrefslogtreecommitdiffstats
path: root/regcomp.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-05-26 06:57:23 +0300
committerArnold D. Robbins <arnold@skeeve.com>2015-05-26 06:57:23 +0300
commite07a65e10d9a9eb04ef97b2fb2f885c5595d8fac (patch)
tree77f64ad5b93097053dcf5ad403f9c2593fb8b5af /regcomp.c
parentb8a83849a4871b5ecb186d2bb60e2541a75910ac (diff)
downloadegawk-e07a65e10d9a9eb04ef97b2fb2f885c5595d8fac.tar.gz
egawk-e07a65e10d9a9eb04ef97b2fb2f885c5595d8fac.tar.bz2
egawk-e07a65e10d9a9eb04ef97b2fb2f885c5595d8fac.zip
Fix regex compile error messages.
Diffstat (limited to 'regcomp.c')
-rw-r--r--regcomp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/regcomp.c b/regcomp.c
index f3dcb3ea..f813a1ef 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -159,7 +159,7 @@ const char __re_error_msgid[] attribute_hidden =
#define REG_EBRACK_IDX (REG_ESUBREG_IDX + sizeof "Invalid back reference")
gettext_noop ("Unmatched [, [^, [:, [., or [=") /* REG_EBRACK */
"\0"
-#define REG_EPAREN_IDX (REG_EBRACK_IDX + sizeof "Unmatched [ or [^")
+#define REG_EPAREN_IDX (REG_EBRACK_IDX + sizeof "Unmatched [, [^, [:, [., or [=")
gettext_noop ("Unmatched ( or \\(") /* REG_EPAREN */
"\0"
#define REG_EBRACE_IDX (REG_EPAREN_IDX + sizeof "Unmatched ( or \\(")