Blame po/remove-potcdate.sin

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