Mercurial > emacs
changeset 66742:f8d550ae3b06
Use local var `b' instead of XBUFFER (w->buffer) also when
accessing member cursor_in_non_selected_windows.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Mon, 07 Nov 2005 11:55:20 +0000 |
parents | 947d92b6000d |
children | e0df9e6c3f65 |
files | src/xdisp.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xdisp.c Mon Nov 07 10:57:10 2005 +0000 +++ b/src/xdisp.c Mon Nov 07 11:55:20 2005 +0000 @@ -20797,7 +20797,7 @@ /* Use cursor-in-non-selected-windows for non-selected window or frame. */ if (non_selected) { - alt_cursor = XBUFFER (w->buffer)->cursor_in_non_selected_windows; + alt_cursor = b->cursor_in_non_selected_windows; return get_specified_cursor_type (alt_cursor, width); }