diff options
| author | Richard M. Stallman | 1993-05-22 22:06:48 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-05-22 22:06:48 +0000 |
| commit | 1613b7573b2e4acd1444ca0042d1358b9a0af855 (patch) | |
| tree | db1902bced7af03f14ae0cd329bdd82baa3ec3d2 /src | |
| parent | bcb2db92ba655162cb4664ebc501ac6551539754 (diff) | |
| download | emacs-1613b7573b2e4acd1444ca0042d1358b9a0af855.tar.gz emacs-1613b7573b2e4acd1444ca0042d1358b9a0af855.zip | |
(display_text_line): Highlight in any frame's sel window.
(display_text_line): Highlight only in selected window.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index b991aeb5805..e72ca032083 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -1723,7 +1723,9 @@ display_text_line (w, start, vpos, hpos, taboffset) | |||
| 1723 | if (tab_width <= 0 || tab_width > 1000) tab_width = 8; | 1723 | if (tab_width <= 0 || tab_width > 1000) tab_width = 8; |
| 1724 | 1724 | ||
| 1725 | /* Show where to highlight the region. */ | 1725 | /* Show where to highlight the region. */ |
| 1726 | if (highlight_region && XMARKER (current_buffer->mark)->buffer != 0) | 1726 | if (highlight_region && XMARKER (current_buffer->mark)->buffer != 0 |
| 1727 | /* Highlight only in selected window. */ | ||
| 1728 | && w == XWINDOW (FRAME_SELECTED_WINDOW (f))) | ||
| 1727 | { | 1729 | { |
| 1728 | region_beg = marker_position (current_buffer->mark); | 1730 | region_beg = marker_position (current_buffer->mark); |
| 1729 | if (PT < region_beg) | 1731 | if (PT < region_beg) |