diff options
author | marha <marha@users.sourceforge.net> | 2012-03-30 07:43:00 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2012-03-30 07:43:00 +0200 |
commit | 9ea38169457d2b09d1b2c29fe45c85c616295a70 (patch) | |
tree | 8463831c940a662ada8d15059685fa330b774fc7 | |
parent | 71225f41030ffe0ff4ee784955d9a798f0f1ad69 (diff) | |
parent | 31706e67674f308e3e7f2a8aaf02f1e0a00fbade (diff) | |
download | vcxsrv-9ea38169457d2b09d1b2c29fe45c85c616295a70.tar.gz vcxsrv-9ea38169457d2b09d1b2c29fe45c85c616295a70.tar.bz2 vcxsrv-9ea38169457d2b09d1b2c29fe45c85c616295a70.zip |
Merge remote-tracking branch 'origin/released'
-rw-r--r-- | fontconfig/fc-lang/ne.orth | 23 | ||||
-rw-r--r-- | fontconfig/src/makealias | 2 |
2 files changed, 21 insertions, 4 deletions
diff --git a/fontconfig/fc-lang/ne.orth b/fontconfig/fc-lang/ne.orth index 246386f0b..ca1f2851f 100644 --- a/fontconfig/fc-lang/ne.orth +++ b/fontconfig/fc-lang/ne.orth @@ -2,6 +2,7 @@ # fontconfig/fc-lang/ne.orth # # Copyright © 2002 Keith Packard +# Copyright © 2012 Parag Nemade, Pravin Satpute <psatpute@redhat.com> # # Permission to use, copy, modify, distribute, and sell this software and its # documentation for any purpose is hereby granted without fee, provided that @@ -21,6 +22,22 @@ # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. # -# Nepali (Devanagari script) (NE) -include hi.orth --090C-090E # See bug 30685 +# Nepali (ne) +# +# Source: http://www.panl10n.net/english/Outputs%20Phase%202/CCs/Nepal/MPP/Papers/2007/0702/mpp_reports_pdf/report_character_encoding_constraints_nepali.pdf +# +0901-0903 # Various Signs +0905-090b # Independent vowels +090f-0910 # Independent vowels +0913-0914 # Independent vowels +0915-0928 # Consonants +092a-0930 # Consonants +0932 # Consonants +0935-0939 # Consonants +093e-0943 # Various and Dependent vowel signs +0947-0948 # Dependent vowel signs +094b-094d # Dependent vowel signs and virama +0950 # Sign and vedic tone marks +0964-0965 # Punctuations +0966-096F # Digits +0970 # Abbrevation sign diff --git a/fontconfig/src/makealias b/fontconfig/src/makealias index fca94d4a2..e2f31c621 100644 --- a/fontconfig/src/makealias +++ b/fontconfig/src/makealias @@ -17,7 +17,7 @@ while read name; do hattr='__attribute((visibility("hidden")))' echo "extern __typeof ($name) $alias $hattr;" >> $HEAD echo "#define $name $alias" >> $HEAD - ifdef=$(grep -l '^'$name'[ (]' "$SRCDIR"/*.c | sed -n 1p | sed -e 's/^.*\/\([^.]*\)\.c/__\1__/') + ifdef=`grep -l '^'$name'[ (]' "$SRCDIR"/*.c | sed -n 1p | sed -e 's/^.*\/\([^.]*\)\.c/__\1__/'` if [ -z "$ifdef" ] ; then echo "error: could not locate $name in src/*.c" 1>&2 exit 1 |