+2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * nsfont.m (ns_get_family): Don't force first letter to uppercase.
+
2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
* keymap.c (where_is_internal): Filter out shadowed remappings.
char *tmp = strdup (SDATA (SYMBOL_NAME (tem)));
NSString *family;
ns_unescape_name (tmp);
- /* For names hard-coded into emacs, like 'helvetica' for splash. */
- tmp[0] = toupper (tmp[0]);
family = [NSString stringWithUTF8String: tmp];
free (tmp);
return family;