From f740b29ae2a346e44c34001b3bf8ecfa0c7857bd Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 16 Feb 2006 22:11:02 +0000 Subject: updated for version 7.0199 --- src/mark.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/mark.c') diff --git a/src/mark.c b/src/mark.c index f077b1133..193d76846 100644 --- a/src/mark.c +++ b/src/mark.c @@ -1500,11 +1500,12 @@ write_viminfo_marks(fp_out) int i; #ifdef FEAT_WINDOWS win_T *win; + tabpage_T *tp; /* * Set b_last_cursor for the all buffers that have a window. */ - for (win = firstwin; win != NULL; win = win->w_next) + FOR_ALL_TAB_WINDOWS(tp, win) set_last_cursor(win); #else set_last_cursor(curwin); -- cgit v1.2.1