Blame po/remove-potcdate.sin

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