summaryrefslogtreecommitdiffstats
path: root/manual/credits.pl
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 /manual/credits.pl
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
Diffstat (limited to 'manual/credits.pl')
-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 @@
#
while (<STDIN>) {
if(($_ =~ /^([A-Z]+[\S ]+)/) && ($_ !~ /^People/)) {
- print "\\Forward{}\~$1\n";
+ s/\_/\\\_/g;
+ print "\\Forward{}\~$_";
}
}