Blame po/remove-potcdate.sin

Packit 971217
# Sed script that remove the POT-Creation-Date line in the header entry
Packit 971217
# from a POT file.
Packit 971217
#
Packit 971217
# The distinction between the first and the following occurrences of the
Packit 971217
# pattern is achieved by looking at the hold space.
Packit 971217
/^"POT-Creation-Date: .*"$/{
Packit 971217
x
Packit 971217
# Test if the hold space is empty.
Packit 971217
s/P/P/
Packit 971217
ta
Packit 971217
# Yes it was empty. First occurrence. Remove the line.
Packit 971217
g
Packit 971217
d
Packit 971217
bb
Packit 971217
:a
Packit 971217
# The hold space was nonempty. Following occurrences. Do nothing.
Packit 971217
x
Packit 971217
:b
Packit 971217
}