diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-06-15 18:26:38 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-06-15 18:26:38 +0000 |
commit | d0738b5d6741551a5386fba2215fa506b8494c3e (patch) | |
tree | 55c234e657bda77d36c09bc92e43133a2ecd23bc /posix/regex.c | |
parent | 61464e3e737575c2f0df89866a32ff546b066fa1 (diff) | |
download | glibc-d0738b5d6741551a5386fba2215fa506b8494c3e.tar glibc-d0738b5d6741551a5386fba2215fa506b8494c3e.tar.gz glibc-d0738b5d6741551a5386fba2215fa506b8494c3e.tar.bz2 glibc-d0738b5d6741551a5386fba2215fa506b8494c3e.zip |
Update.
1999-06-15 Ulrich Drepper <drepper@cygnus.com>
* posix/regex.c (re_error_msgid): Remove extra commas.
Diffstat (limited to 'posix/regex.c')
-rw-r--r-- | posix/regex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/posix/regex.c b/posix/regex.c index 5cbc046c70..99cf4c31a7 100644 --- a/posix/regex.c +++ b/posix/regex.c @@ -1025,7 +1025,7 @@ static const char re_error_msgid[] = gettext_noop ("Invalid regular expression") /* REG_BADPAT */ "\0" #define REG_ECOLLATE_IDX (REG_BADPAT_IDX + sizeof "Invalid regular expression") - gettext_noop ("Invalid collation character"), /* REG_ECOLLATE */ + gettext_noop ("Invalid collation character") /* REG_ECOLLATE */ "\0" #define REG_ECTYPE_IDX (REG_ECOLLATE_IDX + sizeof "Invalid collation character") gettext_noop ("Invalid character class name") /* REG_ECTYPE */ @@ -1064,7 +1064,7 @@ static const char re_error_msgid[] = gettext_noop ("Regular expression too big") /* REG_ESIZE */ "\0" #define REG_ERPAREN_IDX (REG_ESIZE_IDX + sizeof "Regular expression too big") - gettext_noop ("Unmatched ) or \\)"), /* REG_ERPAREN */ + gettext_noop ("Unmatched ) or \\)") /* REG_ERPAREN */ }; static const size_t re_error_msgid_idx[] = |