emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master a7825c4: Use correct glyph in title when resizing NS frames


From: Mattias Engdegård
Subject: master a7825c4: Use correct glyph in title when resizing NS frames
Date: Fri, 27 Nov 2020 15:19:23 -0500 (EST)

branch: master
commit a7825c4be06b7c0b544df34555ecf586276245e6
Author: Mattias Engdegård <mattiase@acm.org>
Commit: Mattias Engdegård <mattiase@acm.org>

    Use correct glyph in title when resizing NS frames
    
    * src/nsterm.m ([EmacsView windowWillResize:toSize:]): Use ×, not x.
---
 src/nsterm.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/nsterm.m b/src/nsterm.m
index a9280eb..0729c96 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -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);



reply via email to

[Prev in Thread] Current Thread [Next in Thread]