| Re: (progn (top-level) A B C) |
|
 |
|
 |
|
 |
|
 |
Group: gnu.emacs.help · Group Profile
Author: Lennart Borgman (gmail)Lennart Borgman (gmail) Date: Feb 14, 2007 08:38
A Soare wrote:
> Hello,
>
> Can somebody tell me how you write a code to execute the followiung commands in the order t-l A B C:
>
> (top-level)
> (A ...)
> (B ...)
> (C ...) ?
I do not think you can do it directly, but maybe you can use a timer?
(run-with-idle-timer 0 nil (lambda()
(message "a")(sit-for 1)
(message "b")(sit-for 1)
(message "c")(sit-for 1)
))
(top-level)
|