unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
From: David Fussner via "Bug reports for GNU Emacs, the Swiss army knife of text editors" <bug-gnu-emacs@gnu.org>
To: Eli Zaretskii <eliz@gnu.org>
Cc: Stefan Kangas <stefan@marxist.se>, 44794@debbugs.gnu.org
Subject: bug#44794: 28.0.50; Frame creation broken with (tool-bar-mode -1)
Date: Sun, 22 Nov 2020 21:47:21 +0000	[thread overview]
Message-ID: <CADF+Rti=CAsO4Ph05j64yWPO4=ZdF76S2c_p3gGdS2=cNLn_bw@mail.gmail.com> (raw)
In-Reply-To: <CADF+Rth-dZsoy3BDwQhTsOAfBgC_1-gD7nm_h8TA2WfxQ_8K5w@mail.gmail.com>

As no one else seems to be able to reproduce this bug, I thought I
would give a fuller list of the symptoms I've seen when using various
set-ups in my .emacs file, in case that might help.

If in addition to turning off the tool bar you add:

(add-to-list 'default-frame-alist
                '(height . 30)
                '(font . "Luxi Mono-16"))

Then the initial frame shows the splash page just fine, and all looks
well. After C-x 5 b return then the *scratch* buffer pops up with all
the problems described in the initial report: nothing visible in the
main window and no mini-buffer, either.

If you make the height too big for the screen, in my case with such a
big font I set it to 33, then the initial frame shows the splash page
just fine and is as tall as the screen allows. After C-x 5 b return
then the *scratch* buffer does appear, with text and mini-buffer
intact, only the second frame is about two-thirds the correct height.

After Eli's suggestion above about the WM I did try shutting down KDE
and running xfce4, with exactly the same results as with KDE, as far
as I could tell.

Thanks again to you both for all your help.

David.

On Sun, 22 Nov 2020 at 20:50, David Fussner <dfussner@googlemail.com> wrote:
>
> I'm sorry to report it didn't help (aside from modifying what appears
> in the title bar).
>
> On Sun, 22 Nov 2020 at 19:59, Eli Zaretskii <eliz@gnu.org> wrote:
> >
> > > 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	other threads:[~2020-11-22 21:47 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-22 12:46 bug#44794: 28.0.50; Frame creation broken with (tool-bar-mode -1) David Fussner via Bug reports for GNU Emacs, the Swiss army knife of text editors
2020-11-22 13:43 ` David Fussner via Bug reports for GNU Emacs, the Swiss army knife of text editors
2020-11-22 15:20 ` Stefan Kangas
2020-11-22 15:49   ` Eli Zaretskii
2020-11-22 18:08     ` David Fussner via Bug reports for GNU Emacs, the Swiss army knife of text editors
2020-11-22 18:39       ` Eli Zaretskii
2020-11-22 18:54         ` David Fussner via Bug reports for GNU Emacs, the Swiss army knife of text editors
2020-11-22 19:16           ` Stefan Kangas
2020-11-22 19:23             ` David Fussner via Bug reports for GNU Emacs, the Swiss army knife of text editors
2020-11-22 19:59               ` Eli Zaretskii
2020-11-22 20:50                 ` David Fussner via Bug reports for GNU Emacs, the Swiss army knife of text editors
2020-11-22 21:47                   ` David Fussner via Bug reports for GNU Emacs, the Swiss army knife of text editors [this message]
2020-12-13 18:17                     ` David Fussner via Bug reports for GNU Emacs, the Swiss army knife of text editors
2020-12-13 18:53                       ` Eli Zaretskii
2020-12-13 21:22                         ` David Fussner via Bug reports for GNU Emacs, the Swiss army knife of text editors
2020-12-19 10:42                           ` Eli Zaretskii
2020-12-19 13:07                             ` martin rudalics
2020-12-19 13:22                               ` Eli Zaretskii
2020-12-19 15:55                                 ` martin rudalics
2020-12-19 18:19                                   ` David Fussner via Bug reports for GNU Emacs, the Swiss army knife of text editors
2020-12-19 18:31                                     ` Eli Zaretskii
2020-12-21 14:42                                   ` J. Scott Berg
2020-12-21 15:33                                     ` martin rudalics
2020-12-21 17:29                                     ` Eli Zaretskii
2020-11-22 19:37           ` Eli Zaretskii

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CADF+Rti=CAsO4Ph05j64yWPO4=ZdF76S2c_p3gGdS2=cNLn_bw@mail.gmail.com' \
    --to=bug-gnu-emacs@gnu.org \
    --cc=44794@debbugs.gnu.org \
    --cc=dfussner@googlemail.com \
    --cc=eliz@gnu.org \
    --cc=stefan@marxist.se \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).