annotate po/remove-potcdate.sin @ 4842:62cb85252393

Only hide, do not destroy, window on delete-event (Debian bug #495427)
author John Lindgren <john.lindgren@tds.net>
date Fri, 10 Apr 2009 01:02:50 -0400
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 }