summaryrefslogtreecommitdiff
path: root/po/insert-header.sin
diff options
context:
space:
mode:
authorSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-12-30 08:41:02 +0000
committerSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2010-12-30 08:41:02 +0000
commit2cd31844fdb13127110a9bbb50033791dd69a77a (patch)
tree2beb8d1f42e94a12af99c63123cdcf85a20185c3 /po/insert-header.sin
parentb697f2a8b4100865f6fa2c28faacd8b96f6c7880 (diff)
downloadpcsxr-2cd31844fdb13127110a9bbb50033791dd69a77a.tar.gz
Removed some more unnecessary files.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@61595 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'po/insert-header.sin')
-rw-r--r--po/insert-header.sin23
1 files changed, 0 insertions, 23 deletions
diff --git a/po/insert-header.sin b/po/insert-header.sin
deleted file mode 100644
index b26de01f..00000000
--- a/po/insert-header.sin
+++ /dev/null
@@ -1,23 +0,0 @@
-# Sed script that inserts the file called HEADER before the header entry.
-#
-# At each occurrence of a line starting with "msgid ", we execute the following
-# commands. At the first occurrence, insert the file. At the following
-# occurrences, do nothing. The distinction between the first and the following
-# occurrences is achieved by looking at the hold space.
-/^msgid /{
-x
-# Test if the hold space is empty.
-s/m/m/
-ta
-# Yes it was empty. First occurrence. Read the file.
-r HEADER
-# Output the file's contents by reading the next line. But don't lose the
-# current line while doing this.
-g
-N
-bb
-:a
-# The hold space was nonempty. Following occurrences. Do nothing.
-x
-:b
-}