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

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

frame creation inhibits `sit-for'?


From: Katsumi Yamaoka
Subject: frame creation inhibits `sit-for'?
Date: Fri, 08 Feb 2002 11:17:17 +0900
User-agent: Gnus/5.090006 (Oort Gnus v0.06) Emacs/21.1 (sparc-sun-solaris2.6)

I have sent a mail to <emacs-pretest-bug@gnu.org> two weeks ago,
so far I have received no answer.  I am sorry to bother you, but
I will send the same message to this list.


Dear Emacs developers,

I found a strange behavior in Emacs 21.1 and later that the
function `sit-for' will not work just after the frame creation.
For instance, the following code will not show any images nor
texts in the newly created frame.

(let ((buffer (get-buffer-create "*testing*"))
      (frame (make-frame))
      (visible-bell t))
  (select-frame frame)
  (switch-to-buffer buffer)
  (erase-buffer)
  (fancy-splash-head)
  (insert "TESTING!")
  (sit-for 10)
  (ding)
  (erase-buffer))

Is there any option to make `sit-for' work?  Or is it a bug?

Best regards,
-- 
Katsumi Yamaoka <yamaoka@jpl.org>



reply via email to

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