Blame po/remove-potcdate.sin

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