Changeset 4240

Show
Ignore:
Timestamp:
07/22/08 15:51:59 (3 months ago)
Author:
gotoh
Message:

(Fx_show_tip): Do not delete existing tip frame on the
case of reusing for the same tip text. Fix #393.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/ChangeLog.Meadow

    r4238 r4240  
     12008-07-22  Shun-ichi GOTO  <gotoh@taiyo.co.jp> 
     2 
     3        * mw32fns.c (Fx_show_tip): Do not delete existing tip frame on the 
     4        case of reusing for the same tip text. Fix #393. 
     5 
    162008-05-13  MIYOSHI Masanori  <miyoshi@meadowy.org> 
    27 
  • trunk/src/mw32fns.c

    r4215 r4240  
    45414541  windows_or_buffers_changed = old_windows_or_buffers_changed; 
    45424542 
     4543  if (tip_frame != Qnil)                /* Is this happen ? */ 
     4544    Fdelete_frame (frame, Qnil);        /* No room to exist */ 
     4545  else 
     4546    tip_frame = frame; 
     4547 
    45434548 start_timer: 
    45444549  /* Let the tip disappear after timeout seconds.  */ 
    45454550  tip_timer = call3 (intern ("run-at-time"), timeout, Qnil, 
    45464551                     intern ("x-hide-tip")); 
    4547  
    4548   if (tip_frame != Qnil)                /* Is this happen ? */ 
    4549     Fdelete_frame (frame, Qnil);        /* No room to exist */ 
    4550   else 
    4551     tip_frame = frame; 
    45524552 
    45534553  UNGCPRO;