summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2007-05-19 21:05:20 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2007-05-19 21:05:20 +0000
commit41ac7da18b8538456373524df39e7043ce85c72d (patch)
tree302310722693b007960d2ca33354d1a2c9dbab95
parentf7a81a9d6aa358cd3767c30ac24c1a3efd5b967f (diff)
downloadrockbox-41ac7da18b8538456373524df39e7043ce85c72d.tar.gz
rockbox-41ac7da18b8538456373524df39e7043ce85c72d.zip
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
-rw-r--r--manual/credits.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/manual/credits.pl b/manual/credits.pl
index fc4f40e229..e231c71ebc 100644
--- a/manual/credits.pl
+++ b/manual/credits.pl
@@ -8,7 +8,8 @@
8# 8#
9while (<STDIN>) { 9while (<STDIN>) {
10 if(($_ =~ /^([A-Z]+[\S ]+)/) && ($_ !~ /^People/)) { 10 if(($_ =~ /^([A-Z]+[\S ]+)/) && ($_ !~ /^People/)) {
11 print "\\Forward{}\~$1\n"; 11 s/\_/\\\_/g;
12 print "\\Forward{}\~$_";
12 } 13 }
13} 14}
14 15