bug-gnu-emacs
[Top][All Lists]
Advanced

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

bug#44794: 28.0.50; Frame creation broken with (tool-bar-mode -1)


From: Eli Zaretskii
Subject: bug#44794: 28.0.50; Frame creation broken with (tool-bar-mode -1)
Date: Sun, 22 Nov 2020 21:59:32 +0200

> From: David Fussner <dfussner@googlemail.com>
> Date: Sun, 22 Nov 2020 19:23:16 +0000
> Cc: Eli Zaretskii <eliz@gnu.org>, 44794@debbugs.gnu.org
> 
> Thanks for the tip -- it says "GNU Emacs at newfont" when it first
> comes up, then prepends the buffer name to that later.

What happens if you change this:

  Lisp_Object icon_title_name_format
    = pure_list (empty_unibyte_string,
                 build_pure_c_string ("%b - GNU Emacs at "),
                 intern_c_string ("system-name"));

to say this instead:

  Lisp_Object icon_title_name_format
    = pure_list (empty_unibyte_string,
                 build_pure_c_string ("GNU Emacs at "),
                 intern_c_string ("system-name"));

This code is in xdisp.c.  The change I propose removes the "%b - "
part from the argument to build_pure_c_string.





reply via email to

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