]> git.eshelyaron.com Git - emacs.git/commitdiff
* nsfont.m (ns_ascii_average_width): Send initWithFormat selector
authorAlp Aker <alp.tekin.aker@gmail.com>
Fri, 17 Aug 2012 04:12:50 +0000 (00:12 -0400)
committerAlp Aker <alp.tekin.aker@gmail.com>
Fri, 17 Aug 2012 04:12:50 +0000 (00:12 -0400)
to an allocated instance of NSString, not to the class itself.

src/ChangeLog
src/nsfont.m

index 5e400b20a31a18e3da39895c7fafa388dc9d7f86..a3ae89b86f2e84259b06fd5c2b0c2d217d7369e4 100644 (file)
@@ -1,3 +1,8 @@
+2012-08-17  Alp Aker  <alp.tekin.aker@gmail.com>
+
+       * nsfont.m (ns_ascii_average_width): Send initWithFormat selector
+       to an allocated instance of NSString, not to the class itself.
+
 2012-08-17  Juanma Barranquero  <lekktu@gmail.com>
 
        * makefile.w32-in (C_CTYPE_H): New macro.
index fdb6e0c33c182ffacd426365b46ffa5a78f7e788..1f8d28cd238b37e6c55796d76d6f8409fb9881de 100644 (file)
@@ -275,7 +275,7 @@ ns_ascii_average_width (NSFont *sfont)
       for (ch = 0; ch < 95; ch++)
        chars[ch] = ' ' + ch;
 
-      ascii_printable = [NSString initWithFormat: @"%s", chars];
+      ascii_printable = [[NSString alloc] initWithFormat: @"%s", chars];
     }
 
 #ifdef NS_IMPL_COCOA