Changeset 4186

Show
Ignore:
Timestamp:
2007年01月08日 22時26分35秒 (2 years ago)
Author:
miyoshi
Message:

(set_window_buffer): Undo the last change.
(set_window_buffer): Don't call clear_mouse_face() if the frame is
a termcap frame.

Files:

Legend:

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

    r4185 r4186  
     12007-01-08  MIYOSHI Masanori  <miyoshi@meadowy.org> 
     2 
     3        * window.c (set_window_buffer): Undo the last change. 
     4        (set_window_buffer): Don't call clear_mouse_face() if the frame is 
     5        a termcap frame. 
     6 
    172007-01-08  MIYOSHI Masanori  <miyoshi@meadowy.org> 
    28 
  • trunk/src/window.c

    r4185 r4186  
    33793379    } 
    33803380 
    3381 /* This is a hack for MSVC and should be removed.  MSVC causes an 
    3382    invalid `dpyinfo'.  MIYOSHI */ 
    3383 #if defined(MEADOW) && !defined(_MSC_VER) 
    33843381#ifdef HAVE_WINDOW_SYSTEM 
    33853382  BLOCK_INPUT; 
    33863383  if (f && FRAME_X_OUTPUT (f) 
     3384#ifdef MEADOW 
     3385      && !FRAME_TERMCAP_P (f) 
     3386#endif 
    33873387      && (dpyinfo = FRAME_X_DISPLAY_INFO (f)) 
    33883388      && EQ (window, dpyinfo->mouse_face_window)) 
    33893389    clear_mouse_face (dpyinfo); 
    33903390  UNBLOCK_INPUT; 
    3391 #endif 
    33923391#endif 
    33933392