On Mon, Sep 16, 2002 at 01:57:27PM +0000, Mikhael Goikhman wrote:
> In FvwmConsole type 2 Schedule commands, like:
> 
>   Schedule 20000 5001 Beep
>   Schedule   100 5002 Iconify
> 
> This is currently effectivelly equivalent to:
> 
>   Schedule   100 5002 Iconify
>   Schedule   100 5001 Beep
> 
> My orgiginal problem was different (Schedule delay in StartFunction is not
> respected, but it is respected without colorsets) and it took me some time
> to figure out that it is not different, because there is a hidden command
> in colorsets.c:
> 
>   CMD_Schedule(NULL, exc, "3000 CleanupColorsets");
> 
> BTW, commands called this way are not included in the command log, so from
> the log it can't be guessed there is one more Schedule. But at least
> the command log shows "CleanupColorsets" that comes from nowhere.

I've added the execution_context_t.type to the output.  It has a
few values that indicate the source of the executed action:

  typedef enum
  {
        EXCT_NULL = 0,  /* "spontaneous" execution */
        EXCT_EVENT,     /* triggered by event */
        EXCT_MODULE,    /* triggered by module input */
        EXCT_MENULOOP,  /* unused at the moment */
        EXCT_PAGING,    /* unused at the moment */
        EXCT_SCHEDULE   /* triggered by schedule queue */
  } exec_context_type_t;

Bye

Dominik ^_^  ^_^

 --
Dominik Vogt, mail: [EMAIL PROTECTED], phone: 0721/91374-382
Schlund + Partner AG, Erbprinzenstr. 4-12, D-76133 Karlsruhe
--
Visit the official FVWM web page at <URL:http://www.fvwm.org/>.
To unsubscribe from the list, send "unsubscribe fvwm-workers" in the
body of a message to [EMAIL PROTECTED]
To report problems, send mail to [EMAIL PROTECTED]

Reply via email to