comparison src/mark.c @ 20635:3e36a51ff152 v8.2.0871

patch 8.2.0871: cannot use getmarklist() as a method Commit: https://github.com/vim/vim/commit/f17e7ea67a798d0aa45ce24ea80c9e21d5164326 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jun 1 14:14:44 2020 +0200 patch 8.2.0871: cannot use getmarklist() as a method Problem: Cannot use getmarklist() as a method. Solution: Make getmarklist() work as a method. Add one to the column number to match getpos(). (Yegappan Lakshmanan, closes #6176)
author Bram Moolenaar <Bram@vim.org>
date Mon, 01 Jun 2020 14:15:05 +0200
parents 8eed1e9389bb
children 9064044fd4f6
comparison
equal deleted inserted replaced
20634:524fb8e122ba 20635:3e36a51ff152
1440 if (lpos == NULL) 1440 if (lpos == NULL)
1441 return FAIL; 1441 return FAIL;
1442 1442
1443 list_append_number(lpos, bufnr); 1443 list_append_number(lpos, bufnr);
1444 list_append_number(lpos, pos->lnum); 1444 list_append_number(lpos, pos->lnum);
1445 list_append_number(lpos, pos->col); 1445 list_append_number(lpos, pos->col + 1);
1446 list_append_number(lpos, pos->coladd); 1446 list_append_number(lpos, pos->coladd);
1447 1447
1448 if (dict_add_string(d, "mark", mname) == FAIL 1448 if (dict_add_string(d, "mark", mname) == FAIL
1449 || dict_add_list(d, "pos", lpos) == FAIL 1449 || dict_add_list(d, "pos", lpos) == FAIL
1450 || (fname != NULL && dict_add_string(d, "file", fname) == FAIL)) 1450 || (fname != NULL && dict_add_string(d, "file", fname) == FAIL))