diff options
author | Roland McGrath <roland@gnu.org> | 2003-03-30 21:55:45 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-03-30 21:55:45 +0000 |
commit | e7c41f614ac5518c5fc7756d5b619b594ac604fd (patch) | |
tree | 3540bbf7a5bb5fd16c2f927e9d488ca95cce2968 /intl | |
parent | 163b180f5ce6680943f411389911d3f7ed8ea7e0 (diff) | |
download | glibc-e7c41f614ac5518c5fc7756d5b619b594ac604fd.tar.gz |
2003-03-30 Roland McGrath <roland@redhat.com>
* intl/po2test.sed: Anchor substitution regexps to fix last change.
Diffstat (limited to 'intl')
-rw-r--r-- | intl/po2test.sed | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/intl/po2test.sed b/intl/po2test.sed index c68808d840..8b5e4c82e0 100644 --- a/intl/po2test.sed +++ b/intl/po2test.sed @@ -21,14 +21,14 @@ # We copy the original message as a comment into the .msg file. But enclose # them with INPUT ( ). # -s/msgid[ ]*"\(.*\)"/INPUT ("\1")/ +s/^msgid[ ]*"\(.*\)"/INPUT ("\1")/ # Clear flag from last substitution and jump if matching tb # # Copy the translations as well and enclose them with OUTPUT ( ). # -s/msgstr[ ]*"\(.*\)"/OUTPUT ("\1")/ +s/^msgstr[ ]*"\(.*\)"/OUTPUT ("\1")/ # Clear flag from last substitution and jump if matching tb |