1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-08 12:40:49 -08:00

* nsfont.m (ns_get_family): Don't force first letter to uppercase.

This commit is contained in:
Adrian Robert 2009-09-09 15:05:47 +00:00
parent cd8752523c
commit c1905ca3e6
2 changed files with 4 additions and 2 deletions

View file

@ -1,3 +1,7 @@
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.

View file

@ -102,8 +102,6 @@ ns_get_family (Lisp_Object font_spec)
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;