Re: Graphics files in archives cannot be toggled to display image or code

2006-04-04 Thread Richard Stallman
Thanks.


___
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug


Re: gnus makes emacs lose response

2006-04-04 Thread Leon
Leon <[EMAIL PROTECTED]> writes:

> Dear all,
>
> If I am using gnus and disconnect the network cable, after a while
> emacs will lose response. C-g won't work. I have to `killall emacs'. I
> think this is due to demon trying to fetch news/emails.
>
> My setting of demon in gnus:
> --8<---cut here---start->8---
> ;; fetch email while idle
> (gnus-demon-add-handler 'gnus-group-get-new-news 3 t)
> (gnus-demon-init)
> --8<---cut here---end--->8---
>
> Regards,

I'm not sure if anybody is looking into this issue. Just want to
double confirm that this bug exists and causes a lot of trouble when
using shaky wireless network.

If you need more debug information, please tell me how to get it and
I'll post it here.

-- 
Leon
GNU Emacs 23.0.0.1 (i686-pc-linux-gnu, GTK+ Version 2.8.15) of
2006-03-25 on sl392



___
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug


Re: Graphics files in archives cannot be toggled to display image or code

2006-04-04 Thread Peter Dyballa


Am 04.04.2006 um 15:53 schrieb Richard Stallman:

I am starting and I am observing with some files, when I toggle  
from
the initial image to the code view and then back to image, only  
code

is shown, and it's only a part of the code that is displayed.



This failure has gone after applying your last patch!

--
Greetings

  Pete

“One cannot live by television, video games, top ten CDs, and dumb  
movies alone”

  (Amiri Baraka 1999)




___
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug


Re: Graphics files in archives cannot be toggled to display image or code

2006-04-04 Thread Peter Dyballa


Am 04.04.2006 um 15:53 schrieb Richard Stallman:


Does this handle tar mode as well as arc mode?


After a configure and 'make bootstrap' it still works! In a TAR file  
and in a ZIP archive.


--
Greetings

  Pete
  ~  o
   ~_\\_/\
  ~  O   O




___
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug


Re: Graphics files in archives cannot be toggled to display image or code

2006-04-04 Thread Peter Dyballa


Am 04.04.2006 um 15:53 schrieb Richard Stallman:


Does this handle tar mode as well as arc mode?


*** image-mode.el   11 Feb 2006 11:43:50 -0500  1.10
--- image-mode.el   03 Apr 2006 23:35:43 -0400  
***
*** 139,145 
  ;; was inserted
  (let* ((image
(if (and (buffer-file-name)
!(not (buffer-modified-p)))
(progn (clear-image-cache)
   (create-image (buffer-file-name)))
  (create-image
--- 139,149 
  ;; was inserted
  (let* ((image
(if (and (buffer-file-name)
!(not (buffer-modified-p))
!(not (and (boundp 'archive-superior-buffer)
!  archive-superior-buffer))
!(not (and (boundp 'tar-superior-buffer)
!  tar-superior-buffer)))
(progn (clear-image-cache)
   (create-image (buffer-file-name)))
  (create-image



This patch indeed makes it right! But before I worked on a problem  
with Carbon Emacs and received from Takashi Hiromatsu the  
recommendation to use -DUSE_ATSUI in CFLAGS. So I configured again  
and just invoked 'make -k' because no Elisp code was updated. And  
this version of the X11 client GNU Emacs does not fail any more.


I'll configure again without -DUSE_ATSUI and do a 'make bootstrap' --  
which takes more than hour!



I removed some days ago image-mode.elc when I found that image-mode  
is loaded when needed, not part of the dumped Emacs. Byte-recompile- 
directory never compiled any Elisp file. Is that correct?


--
Greetings

  Pete

Globalisation -- socialism from above.




___
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug


Re: frame-set-background-mode changes frame backgroundforspecial-display frames

2006-04-04 Thread Richard Stallman
I have spent a *lot* of time trying to track this down in my own setup, as I
did not succeed in starting from emacs -Q and building up with pieces of my
code to reproduce it. That's why I started my bug report with the caveat: "I
don't have a simple recipe starting from emacs -Q".

We can't debug it until you give us a recipe.
It does not necessarily have to be a simple recipe
(though a simpler one is better).  But it's completely
impossible to do debug with NO recipe.

Have you read the Bugs chapter recently?


___
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug


Re: Graphics files in archives cannot be toggled to display image or code

2006-04-04 Thread Richard Stallman
I am starting and I am observing with some files, when I toggle from  
the initial image to the code view and then back to image, only code  
is shown, and it's only a part of the code that is displayed.

Please examine what the buffer contents are that cause this result.


___
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug


Re: Graphics files in archives cannot be toggled to display image or code

2006-04-04 Thread Richard Stallman
Does this handle tar mode as well as arc mode?


*** image-mode.el   11 Feb 2006 11:43:50 -0500  1.10
--- image-mode.el   03 Apr 2006 23:35:43 -0400  
***
*** 139,145 
  ;; was inserted
  (let* ((image
(if (and (buffer-file-name)
!(not (buffer-modified-p)))
(progn (clear-image-cache)
   (create-image (buffer-file-name)))
  (create-image
--- 139,149 
  ;; was inserted
  (let* ((image
(if (and (buffer-file-name)
!(not (buffer-modified-p))
!(not (and (boundp 'archive-superior-buffer)
!  archive-superior-buffer))
!(not (and (boundp 'tar-superior-buffer)
!  tar-superior-buffer)))
(progn (clear-image-cache)
   (create-image (buffer-file-name)))
  (create-image


___
emacs-pretest-bug mailing list
emacs-pretest-bug@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug