* src/nsfont.m (ns_otf_to_script): Fix typo.

This commit is contained in:
Chong Yidong 2011-08-23 10:41:07 -04:00
parent 821ff7208c
commit 4a5885a74a
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2011-08-23 Chong Yidong <cyd@stupidchicken.com>
* nsfont.m (ns_otf_to_script): Fix typo.
2011-08-22 Kenichi Handa <handa@m17n.org>
* chartab.c (Fset_char_table_extra_slot): Do not inhibit setting a

View file

@ -303,7 +303,7 @@ seems to be limited for now (2009/05) to ja, zh, and ko. */
{
Lisp_Object script = assq_no_quit (XCAR (otf), Votf_script_alist);
return CONSP (script)
? [NSString stringWithUTF8String: SDATA (SYMBOL_NAME XCDR ((script)))]
? [NSString stringWithUTF8String: SDATA (SYMBOL_NAME (XCDR ((script))))]
: @"";
}