]> git.eshelyaron.com Git - emacs.git/commitdiff
Use correct glyph in title when resizing NS frames
authorMattias Engdegård <mattiase@acm.org>
Fri, 27 Nov 2020 20:16:15 +0000 (21:16 +0100)
committerMattias Engdegård <mattiase@acm.org>
Fri, 27 Nov 2020 20:17:58 +0000 (21:17 +0100)
* src/nsterm.m ([EmacsView windowWillResize:toSize:]): Use ×, not x.

src/nsterm.m

index a9280eb4af91d70c076f95031c284150c7ee0a9b..0729c961bdf833e6646455da9c82651fac4f3314 100644 (file)
@@ -7282,7 +7282,7 @@ not_in_argv (NSString *arg)
             old_title = t;
           }
         size_title = xmalloc (strlen (old_title) + 40);
-       esprintf (size_title, "%s  —  (%d x %d)", old_title, cols, rows);
+       esprintf (size_title, "%s  —  (%d × %d)", old_title, cols, rows);
         [window setTitle: [NSString stringWithUTF8String: size_title]];
         [window display];
         xfree (size_title);