unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
From: owner@emacsbugs.donarmstrong.com (Emacs bug Tracking System)
To: martin rudalics <rudalics@gmx.at>
Subject: bug#1754: marked as done (23.0.60; tool-bar is shown with  tool-bar-mode off)
Date: Sat, 10 Jan 2009 10:20:03 +0000	[thread overview]
Message-ID: <handler.1754.D1754.123158223610131.ackdone@emacsbugs.donarmstrong.com> (raw)
In-Reply-To: 005301c96b95$547ae890$c2b22382@us.oracle.com

[-- Attachment #1: Type: text/plain, Size: 891 bytes --]


Your message dated Sat, 10 Jan 2009 11:09:41 +0100
with message-id <496873E5.9080601@gmx.at>
and subject line Re: bug#1754: 23.0.60; tool-bar is shown with tool-bar-mode off
has caused the Emacs bug report #1754,
regarding 23.0.60; tool-bar is shown with tool-bar-mode off
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@emacsbugs.donarmstrong.com
immediately.)


-- 
1754: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=1754
Emacs Bug Tracking System
Contact owner@emacsbugs.donarmstrong.com with problems

[-- Attachment #2: Type: message/rfc822, Size: 4691 bytes --]

From: "Drew Adams" <drew.adams@oracle.com>
To: <emacs-pretest-bug@gnu.org>
Subject: 23.0.60; tool-bar is shown with tool-bar-mode off
Date: Wed, 31 Dec 2008 14:15:46 -0800
Message-ID: <005301c96b95$547ae890$c2b22382@us.oracle.com>

This is a regression wrt Emacs 20, 21, and 22.
 
1. Put this code in a file named `bug-tool-bar.el':
 
(tool-bar-mode -1)
(defvar my-minibuffer-frame nil "")
(defun foo () ""
  (interactive)
  (setq default-frame-alist
        (append (list (cons 'tool-bar-lines 1))
                default-frame-alist))
  (setq pop-up-frames      t
        pop-up-frame-alist (append default-frame-alist
                                   pop-up-frame-alist))
  (setq minibuffer-frame-alist
        (append (list (cons 'minibuffer 'only))
                minibuffer-frame-alist))
  (if my-minibuffer-frame
      (modify-frame-parameters my-minibuffer-frame
                               (list (cons 'minibuffer 'only)))
    (setq my-minibuffer-frame
          (let ((after-make-frame-functions nil))
            (make-frame (list (cons 'minibuffer 'only)))))))
 
It doesn't matter where the (tool-bar-mode -1) is, and you could
alternatively leave it out altogether and then do `M-x tool-bar-mode'
to turn it off (step 3).
 
2. Start Emacs this way:
 
runemacs.exe -Q --debug-init -l "bug-tool-bar.el" -f "foo"
 
You get one frame with buffer *scratch* and a standalone minibuffer
frame. Neither frame has a tool bar. However, `tool-bar-mode' is t -
it should be nil. You can see this by typing `tool-bar-mode' in buffer
*scratch* and using `C-x C-e'.
 
3. Optional step: `M-x tool-bar-mode'. This turns off tool-bar mode,
though it should already have been off because of the code in
`bug-tool-bar.el'.
 
4. Do `C-x 4 f some-file.el'. The file is visited in a new frame, and
the frame has a tool bar. And tool-bar mode is now on. And this is so
regardless of whether you skip step 3.

The mode should remain off, and no tool bar should be shown.
 

In GNU Emacs 23.0.60.1 (i386-mingw-nt5.1.2600)
 of 2008-12-30 on LENNART-69DE564
Windowing system distributor `Microsoft Corp.', version 5.1.2600
configured using `configure --with-gcc (3.4) --no-opt --cflags -Ic:/g/include
-fno-crossjumping'
 




[-- Attachment #3: Type: message/rfc822, Size: 1990 bytes --]

From: martin rudalics <rudalics@gmx.at>
To: 1754-done@emacsbugs.donarmstrong.com
Cc: Chong Yidong <cyd@stupidchicken.com>
Subject: Re: bug#1754: 23.0.60; tool-bar is shown with tool-bar-mode off
Date: Sat, 10 Jan 2009 11:09:41 +0100
Message-ID: <496873E5.9080601@gmx.at>

 >> IMHO, we should either not call `modify-all-frames-parameters' in
 >> either case or call them in both cases as in the (attached)
 >> tool-bar.el patch I proposed earlier.
 >
 > Patch looks OK; go ahead and install if you like.

Done.  Not that I liked it, but I'd rather find out now whether asking
for non-zero tool-bar-lines may cause problems on text-only terminals.

martin


      parent reply	other threads:[~2009-01-10 10:20 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <496873E5.9080601@gmx.at>
2008-12-31 22:15 ` bug#1754: 23.0.60; tool-bar is shown with tool-bar-mode off Drew Adams
2009-01-01 15:24   ` martin rudalics
2009-01-01 15:53     ` Jason Rumney
2009-01-01 16:09       ` martin rudalics
2009-01-01 21:28     ` Drew Adams
2009-01-01 21:51       ` Drew Adams
2009-01-02  7:52         ` martin rudalics
2009-01-02  7:52       ` martin rudalics
2009-01-03  3:12         ` Stefan Monnier
2009-01-03 10:13           ` martin rudalics
2009-01-05  4:10             ` Stefan Monnier
2009-01-05  7:57               ` martin rudalics
2009-01-05 22:20                 ` Stefan Monnier
2009-01-06 13:37                   ` martin rudalics
2009-01-09 19:37                   ` martin rudalics
2009-01-10  2:29                     ` Stefan Monnier
2009-01-10 10:04                       ` martin rudalics
2009-01-10 22:38                         ` Stefan Monnier
2009-01-11 11:22                           ` martin rudalics
2009-01-11 14:56                             ` Stefan Monnier
2009-01-11 17:14                               ` martin rudalics
2009-01-11 23:12                                 ` Stefan Monnier
2009-01-12  9:58                                   ` martin rudalics
2009-01-12 15:23                                     ` Stefan Monnier
2009-01-12 16:00                                       ` martin rudalics
2009-01-12 18:29                                         ` Stefan Monnier
2009-01-12 19:33                                           ` Lennart Borgman
2009-01-12 20:57                                             ` Stefan Monnier
2009-01-12 21:59                                           ` Drew Adams
2009-01-14 14:20                                           ` martin rudalics
2009-01-17 18:33             ` Drew Adams
2009-01-09 19:37   ` martin rudalics
2009-01-09 20:21     ` Chong Yidong
2009-01-10 10:20   ` Emacs bug Tracking System [this message]

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=handler.1754.D1754.123158223610131.ackdone@emacsbugs.donarmstrong.com \
    --to=owner@emacsbugs.donarmstrong.com \
    --cc=rudalics@gmx.at \
    /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).