comparison src/userfunc.c @ 15000:32787e326de2 v8.1.0511

patch 8.1.0511: ml_get error when calling a function with a range commit https://github.com/vim/vim/commit/9e353b5265bd7fa103caf4e5a9b3c99f344f548e Author: Bram Moolenaar <Bram@vim.org> Date: Sun Nov 4 23:39:38 2018 +0100 patch 8.1.0511: ml_get error when calling a function with a range Problem: ml_get error when calling a function with a range. Solution: Don't position the cursor after the last line.
author Bram Moolenaar <Bram@vim.org>
date Sun, 04 Nov 2018 23:45:07 +0100
parents c5ec5ddbe814
children 67e3103d6e18
comparison
equal deleted inserted replaced
14999:2b30a2b4bde2 15000:32787e326de2
3147 lnum = eap->line1; 3147 lnum = eap->line1;
3148 for ( ; lnum <= eap->line2; ++lnum) 3148 for ( ; lnum <= eap->line2; ++lnum)
3149 { 3149 {
3150 if (!eap->skip && eap->addr_count > 0) 3150 if (!eap->skip && eap->addr_count > 0)
3151 { 3151 {
3152 if (lnum > curbuf->b_ml.ml_line_count)
3153 {
3154 // If the function deleted lines or switched to another buffer
3155 // the line number may become invalid.
3156 EMSG(_(e_invrange));
3157 break;
3158 }
3152 curwin->w_cursor.lnum = lnum; 3159 curwin->w_cursor.lnum = lnum;
3153 curwin->w_cursor.col = 0; 3160 curwin->w_cursor.col = 0;
3154 #ifdef FEAT_VIRTUALEDIT 3161 #ifdef FEAT_VIRTUALEDIT
3155 curwin->w_cursor.coladd = 0; 3162 curwin->w_cursor.coladd = 0;
3156 #endif 3163 #endif