0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.2.3144: Vim9: no error when using an invalid value for a line number

Problem:    Vim9: no error when using an invalid value for a line number.
Solution:   Give an error if the string value is not recognized.
            (closes #8536)
This commit is contained in:
Bram Moolenaar
2021-07-11 16:01:58 +02:00
parent d9162550aa
commit 0f1227f7d5
4 changed files with 27 additions and 2 deletions

View File

@@ -5376,6 +5376,8 @@ var2fpos(
}
return &pos;
}
if (in_vim9script())
semsg(_(e_invalid_value_for_line_number_str), name);
return NULL;
}