0
0
mirror of https://github.com/vim/vim.git synced 2025-10-01 04:54:07 -04:00

updated for version 7.0092

This commit is contained in:
Bram Moolenaar
2005-06-24 23:07:47 +00:00
parent 0a5fe2140d
commit 1ec484f58e
16 changed files with 174 additions and 18 deletions

View File

@@ -949,7 +949,7 @@ u_saveline(lnum)
{
if (lnum == curbuf->b_u_line_lnum) /* line is already saved */
return;
if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count) /* should never happen */
if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count) /* should never happen */
return;
u_clearline();
curbuf->b_u_line_lnum = lnum;