# HG changeset patch # User Karl Heuer # Date 879625481 0 # Node ID ebebe05191b4d5f3d801d3fd79fbdc3516ab04ff # Parent 7ba68c0e1bee2830bfc966264efe4026b28b76ad (display_text_line): Make decision about which windows highlight the region in just once place. When minibuffer is selected, show the region in the previous window, diff -r 7ba68c0e1bee -r ebebe05191b4 src/xdisp.c --- a/src/xdisp.c Sat Nov 15 20:23:21 1997 +0000 +++ b/src/xdisp.c Sat Nov 15 20:24:41 1997 +0000 @@ -2895,11 +2895,10 @@ && !WINDOW_FULL_WIDTH_P (w)) || !NILP (current_buffer->truncate_lines)); - /* 1 if we should highlight the region. */ + /* 1 if this buffer has a region to highlight. */ int highlight_region = (!NILP (Vtransient_mark_mode) && !NILP (current_buffer->mark_active) - && (XWINDOW (current_buffer->last_selected_window) == w - || highlight_nonselected_windows)); + && XMARKER (current_buffer->mark)->buffer != 0); int region_beg, region_end; int selective = (INTEGERP (current_buffer->selective_display) @@ -2959,10 +2958,12 @@ if (tab_width <= 0 || tab_width > 1000) tab_width = 8; /* Show where to highlight the region. */ - if (highlight_region && XMARKER (current_buffer->mark)->buffer != 0 + if (highlight_region /* Maybe highlight only in selected window. */ && (highlight_nonselected_windows - || w == XWINDOW (selected_window))) + || w == XWINDOW (selected_window) + || (MINI_WINDOW_P (XWINDOW (selected_window)) + && w == XWINDOW (Vminibuf_scroll_window)))) { region_beg = marker_position (current_buffer->mark); if (PT < region_beg)