The credits file now also has underscores, which need to be escaped in LaTeX.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13431 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2007-05-19 21:05:20 +00:00
parent f7a81a9d6a
commit 41ac7da18b

View file

@ -8,7 +8,8 @@
# #
while (<STDIN>) { while (<STDIN>) {
if(($_ =~ /^([A-Z]+[\S ]+)/) && ($_ !~ /^People/)) { if(($_ =~ /^([A-Z]+[\S ]+)/) && ($_ !~ /^People/)) {
print "\\Forward{}\~$1\n"; s/\_/\\\_/g;
print "\\Forward{}\~$_";
} }
} }