diff options
author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2006-07-20 14:33:04 +0000 |
---|---|---|
committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2006-07-20 14:33:04 +0000 |
commit | b44b225e6e230f73e54f4ca1599707bf4ae1fa83 (patch) | |
tree | 5aa683719aeb87fad10c5bc4a01d058ff4d1092f /manual | |
parent | af4862cd6dc72cbdbe9833b77e5bab2338ce6061 (diff) |
don't break between name and bullet in credits list.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10262 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'manual')
-rw-r--r-- | manual/credits.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/credits.pl b/manual/credits.pl index 46035f50f6..fc4f40e229 100644 --- a/manual/credits.pl +++ b/manual/credits.pl @@ -8,7 +8,7 @@ # while (<STDIN>) { if(($_ =~ /^([A-Z]+[\S ]+)/) && ($_ !~ /^People/)) { - print "\\Forward{} $1\n"; + print "\\Forward{}\~$1\n"; } } |