annotate po/remove-potcdate.sin @ 3887:698e76cd10a5

Automated merge with ssh://hg.atheme.org//hg/audacious
author William Pitcock <nenolod@atheme.org>
date Thu, 01 Nov 2007 19:28:40 -0500
parents cb178e5ad177
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
1 # Sed script that remove the POT-Creation-Date line in the header entry
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
2 # from a POT file.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
3 #
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
4 # The distinction between the first and the following occurrences of the
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
5 # pattern is achieved by looking at the hold space.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
6 /^"POT-Creation-Date: .*"$/{
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
7 x
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
8 # Test if the hold space is empty.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
9 s/P/P/
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
10 ta
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
11 # Yes it was empty. First occurrence. Remove the line.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
12 g
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
13 d
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
14 bb
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
15 :a
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
16 # The hold space was nonempty. Following occurrences. Do nothing.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
17 x
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
18 :b
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
19 }