Blame po/remove-potcdate.sin

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