diff options
Diffstat (limited to 'src/nvim/hardcopy.c')
-rw-r--r-- | src/nvim/hardcopy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/hardcopy.c b/src/nvim/hardcopy.c index 43cf372e07..4b361d2d45 100644 --- a/src/nvim/hardcopy.c +++ b/src/nvim/hardcopy.c @@ -325,7 +325,7 @@ static char_u *parse_list_options(char_u *option_str, option_table_T *table, break; } - table[idx].number = getdigits_int(&p); + table[idx].number = getdigits_int(&p, false, 0); } table[idx].string = p; |