annotate po/remove-potcdate.sin @ 822:c5eb4b762977 trunk

[svn] - only show the SVN revision if we know what it is
author nenolod
date Sun, 12 Mar 2006 10:27:25 -0800
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 }