Blame po/remove-potcdate.sin

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