diff src/fileio.c @ 6201:52fa8300ce20 v7.4.436

updated for version 7.4.436 Problem: ml_get error for autocommand that moves the cursor of the current window. Solution: Check the cursor position after switching back to the current buffer. (Christian Brabandt)
author Bram Moolenaar <bram@vim.org>
date Tue, 09 Sep 2014 16:59:38 +0200
parents 67edf731a240
children 54194bd6ed60
line wrap: on
line diff
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -9009,6 +9009,9 @@ win_found:
 
 	    curwin = aco->save_curwin;
 	    curbuf = curwin->w_buffer;
+	    /* In case the autocommand move the cursor to a position that that
+	     * not exist in curbuf. */
+	    check_cursor();
 	}
     }
 }