comparison src/lread.c @ 71558:4252d6e24270

(read_filtered_event): Treat select-window just like switch-frame.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Sun, 02 Jul 2006 14:34:30 +0000
parents dbe1bcee0357
children 9c4db0e8490f 138ce2701550
comparison
equal deleted inserted replaced
71557:695dbebf4c20 71558:4252d6e24270
482 the last characters were typed to a separate minibuffer frame, 482 the last characters were typed to a separate minibuffer frame,
483 for example. Eventually, some code which can deal with 483 for example. Eventually, some code which can deal with
484 switch-frame events will read it and process it. */ 484 switch-frame events will read it and process it. */
485 if (no_switch_frame 485 if (no_switch_frame
486 && EVENT_HAS_PARAMETERS (val) 486 && EVENT_HAS_PARAMETERS (val)
487 && EQ (EVENT_HEAD (val), Qswitch_frame)) 487 && EQ (EVENT_HEAD_KIND (EVENT_HEAD (val)), Qswitch_frame))
488 { 488 {
489 delayed_switch_frame = val; 489 delayed_switch_frame = val;
490 goto retry; 490 goto retry;
491 } 491 }
492 492