summaryrefslogtreecommitdiffstats
path: root/po/insert-header.sin
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2019-04-29 00:21:17 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2019-04-29 00:21:17 +0900
commit71ae23a29f60f1da7cfe659db0aa18ef71b4c4db (patch)
tree88e2167871d3c3ef5b8cc941c3185eb425491eb5 /po/insert-header.sin
parentcb199a0d60fde27c74de2c035b64bedc6356fba2 (diff)
downloadlibr-71ae23a2.tar.gz
libr-71ae23a2.zip
Clean automake files and unusued 'po' folder.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 b26de01..0000000
--- 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
-}