all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Tool bar icons not correct
@ 2014-03-05 21:32 Thomas S. Dye
  2014-03-06 22:37 ` Michael Heerdegen
  0 siblings, 1 reply; 4+ messages in thread
From: Thomas S. Dye @ 2014-03-05 21:32 UTC (permalink / raw
  To: help-gnu-emacs

Aloha all,

I'm using Emacs 24.3 (9.0) that I built with MacPorts. I have the latest
Mac OS Mavericks.  

When I start up, the tool bar icons are correct, but after I've worked a
while they begin to get confused. In particular, icons from closed
buffers begin to show up in buffers where they don't belong.  I notice
this often when I use gnus and switch back to editing a LaTeX file or
start working with Org mode. Just now, the icon to compile the LaTeX
file has some kind of mail icon.

I haven't the faintest idea how to debug this. Can someone point me in
the right direction?

All the best,
Tom

-- 
T.S. Dye & Colleagues, Archaeologists
735 Bishop St, Suite 315, Honolulu, HI 96813
Tel: 808-529-0866, Fax: 808-529-0884
http://www.tsdye.com



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Tool bar icons not correct
  2014-03-05 21:32 Tool bar icons not correct Thomas S. Dye
@ 2014-03-06 22:37 ` Michael Heerdegen
  2014-03-07  0:19   ` Thomas S. Dye
  2014-03-09 18:43   ` Thomas S. Dye
  0 siblings, 2 replies; 4+ messages in thread
From: Michael Heerdegen @ 2014-03-06 22:37 UTC (permalink / raw
  To: help-gnu-emacs

tsd@tsdye.com (Thomas S. Dye) writes:

> Aloha all,
>
> I'm using Emacs 24.3 (9.0) that I built with MacPorts. I have the latest
> Mac OS Mavericks.  
>
> When I start up, the tool bar icons are correct, but after I've worked a
> while they begin to get confused. In particular, icons from closed
> buffers begin to show up in buffers where they don't belong.  I notice
> this often when I use gnus and switch back to editing a LaTeX file or
> start working with Org mode. Just now, the icon to compile the LaTeX
> file has some kind of mail icon.
>
> I haven't the faintest idea how to debug this. Can someone point me in
> the right direction?

AFAIK, the tool bar should always reflect the binding of `tool-bar-map'
in the current buffer.  Maybe M-: (force-mode-line-update) or M-:
(redraw-frame) helps?  Anyway, if it's not due to your setup, this
sounds like a bug to me.


Regards,

Michael.




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Tool bar icons not correct
  2014-03-06 22:37 ` Michael Heerdegen
@ 2014-03-07  0:19   ` Thomas S. Dye
  2014-03-09 18:43   ` Thomas S. Dye
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas S. Dye @ 2014-03-07  0:19 UTC (permalink / raw
  To: Michael Heerdegen; +Cc: help-gnu-emacs

Michael Heerdegen <michael_heerdegen@web.de> writes:

> tsd@tsdye.com (Thomas S. Dye) writes:
>
>> Aloha all,
>>
>> I'm using Emacs 24.3 (9.0) that I built with MacPorts. I have the latest
>> Mac OS Mavericks.  
>>
>> When I start up, the tool bar icons are correct, but after I've worked a
>> while they begin to get confused. In particular, icons from closed
>> buffers begin to show up in buffers where they don't belong.  I notice
>> this often when I use gnus and switch back to editing a LaTeX file or
>> start working with Org mode. Just now, the icon to compile the LaTeX
>> file has some kind of mail icon.
>>
>> I haven't the faintest idea how to debug this. Can someone point me in
>> the right direction?
>
> AFAIK, the tool bar should always reflect the binding of `tool-bar-map'
> in the current buffer.  Maybe M-: (force-mode-line-update) or M-:
> (redraw-frame) helps?  Anyway, if it's not due to your setup, this
> sounds like a bug to me.

Thanks Michael. I was able to confirm that the tool bar doesn't reflect
the binding of `tool-bar-map', so I filed a bug report.

All the best,
Tom

-- 
T.S. Dye & Colleagues, Archaeologists
735 Bishop St, Suite 315, Honolulu, HI 96813
Tel: 808-529-0866, Fax: 808-529-0884
http://www.tsdye.com



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Tool bar icons not correct
  2014-03-06 22:37 ` Michael Heerdegen
  2014-03-07  0:19   ` Thomas S. Dye
@ 2014-03-09 18:43   ` Thomas S. Dye
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas S. Dye @ 2014-03-09 18:43 UTC (permalink / raw
  To: Michael Heerdegen; +Cc: help-gnu-emacs

Michael Heerdegen <michael_heerdegen@web.de> writes:

> tsd@tsdye.com (Thomas S. Dye) writes:
>
>> Aloha all,
>>
>> I'm using Emacs 24.3 (9.0) that I built with MacPorts. I have the latest
>> Mac OS Mavericks.  
>>
>> When I start up, the tool bar icons are correct, but after I've worked a
>> while they begin to get confused. In particular, icons from closed
>> buffers begin to show up in buffers where they don't belong.  I notice
>> this often when I use gnus and switch back to editing a LaTeX file or
>> start working with Org mode. Just now, the icon to compile the LaTeX
>> file has some kind of mail icon.
>>
>> I haven't the faintest idea how to debug this. Can someone point me in
>> the right direction?
>
> AFAIK, the tool bar should always reflect the binding of `tool-bar-map'
> in the current buffer.  Maybe M-: (force-mode-line-update) or M-:
> (redraw-frame) helps?  Anyway, if it's not due to your setup, this
> sounds like a bug to me.

Following some advice from the emacs bug list I was able to track this
down to a problem in one of my initialization files.

Thanks again for your help.

Tom

-- 
Thomas S. Dye
http://www.tsdye.com



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-03-09 18:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-05 21:32 Tool bar icons not correct Thomas S. Dye
2014-03-06 22:37 ` Michael Heerdegen
2014-03-07  0:19   ` Thomas S. Dye
2014-03-09 18:43   ` Thomas S. Dye

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.