aboutsummaryrefslogtreecommitdiffstats
path: root/src/nsfont.m
diff options
context:
space:
mode:
authorAdrian Robert2009-09-09 15:05:47 +0000
committerAdrian Robert2009-09-09 15:05:47 +0000
commitc1905ca3e6b687db0f951aa07789dc90d5310109 (patch)
treed7949f1a7c8c57e6fd7f8570baafbd608b5af57a /src/nsfont.m
parentcd8752523c8e4e2fe3655c2e81edd133fb8c1947 (diff)
downloademacs-c1905ca3e6b687db0f951aa07789dc90d5310109.tar.gz
emacs-c1905ca3e6b687db0f951aa07789dc90d5310109.zip
* nsfont.m (ns_get_family): Don't force first letter to uppercase.
Diffstat (limited to 'src/nsfont.m')
-rw-r--r--src/nsfont.m2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nsfont.m b/src/nsfont.m
index 46c50aa96d3..1319a376631 100644
--- a/src/nsfont.m
+++ b/src/nsfont.m
@@ -102,8 +102,6 @@ ns_get_family (Lisp_Object font_spec)
102 char *tmp = strdup (SDATA (SYMBOL_NAME (tem))); 102 char *tmp = strdup (SDATA (SYMBOL_NAME (tem)));
103 NSString *family; 103 NSString *family;
104 ns_unescape_name (tmp); 104 ns_unescape_name (tmp);
105 /* For names hard-coded into emacs, like 'helvetica' for splash. */
106 tmp[0] = toupper (tmp[0]);
107 family = [NSString stringWithUTF8String: tmp]; 105 family = [NSString stringWithUTF8String: tmp];
108 free (tmp); 106 free (tmp);
109 return family; 107 return family;