Blame po/remove-potcdate.sin

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