view po/insert-header.sin @ 1775:7d32dff734da trunk

[svn] improvement of shaded playlist window - title string does auto scroll. - format and font of the string follow playlist configuration. - filepopup will appear on shaded playlist window. - now shaded playlist window displays multi byte characters correctly. - no more "textbox_set_text: assertion `text != NULL' failed" assertion in the log file.
author yaz
date Wed, 04 Oct 2006 02:15:22 -0700
parents cb178e5ad177
children
line wrap: on
line source

# 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
}