comparison src/mark.c @ 29239:da56650de132 v8.2.5138

patch 8.2.5138: various small issues Commit: https://github.com/vim/vim/commit/8088ae95bbed2085c5fb196850c4e4b8df55c989 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jun 20 11:38:17 2022 +0100 patch 8.2.5138: various small issues Problem: Various small issues. Solution: Various small improvments.
author Bram Moolenaar <Bram@vim.org>
date Mon, 20 Jun 2022 12:45:03 +0200
parents 320991d9812e
children 14c0d0c72bcd
comparison
equal deleted inserted replaced
29238:ee6d7b2b9704 29239:da56650de132
1482 void 1482 void
1483 f_getmarklist(typval_T *argvars, typval_T *rettv) 1483 f_getmarklist(typval_T *argvars, typval_T *rettv)
1484 { 1484 {
1485 buf_T *buf = NULL; 1485 buf_T *buf = NULL;
1486 1486
1487 if (rettv_list_alloc(rettv) != OK) 1487 if (rettv_list_alloc(rettv) == FAIL)
1488 return; 1488 return;
1489 1489
1490 if (in_vim9script() && check_for_opt_buffer_arg(argvars, 0) == FAIL) 1490 if (in_vim9script() && check_for_opt_buffer_arg(argvars, 0) == FAIL)
1491 return; 1491 return;
1492 1492