manual: Don't expect first char of name in CREDITS to be ASCII.
Fixes some names not showing in the manual. Note that there's one name left not showing due to LaTeX unicode support missing the characters. Change-Id: I9f1d0d3d49b485be54c83486a23cf97c82d257c8
This commit is contained in:
parent
356133d321
commit
247258b9d2
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@
|
|||
# $Id$
|
||||
#
|
||||
while (<STDIN>) {
|
||||
if(($_ =~ /^([A-Z]+[\S ]+)/) && ($_ !~ /^People/)) {
|
||||
if(($_ =~ /^(\S+[\S ]+)/) && ($_ !~ /^People/)) {
|
||||
s/\_/\\\_/g;
|
||||
print "\\Forward{}\~$_";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue