comparison src/proto/scriptfile.pro @ 22208:a607f02fd17a v8.2.1653

patch 8.2.1653: expand('<stack>') does not include the final line number Commit: https://github.com/vim/vim/commit/4f25b1aba050b85fa97ca2316aa04dd4b0b22530 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Sep 10 19:25:05 2020 +0200 patch 8.2.1653: expand('<stack>') does not include the final line number Problem: Expand('<stack>') does not include the final line number. Solution: Add the line nuber. (closes https://github.com/vim/vim/issues/6927)
author Bram Moolenaar <Bram@vim.org>
date Thu, 10 Sep 2020 19:30:05 +0200
parents a427f5f26419
children 15f40772e10a
comparison
equal deleted inserted replaced
22207:d32eb3b1201e 22208:a607f02fd17a
2 void estack_init(void); 2 void estack_init(void);
3 estack_T *estack_push(etype_T type, char_u *name, long lnum); 3 estack_T *estack_push(etype_T type, char_u *name, long lnum);
4 estack_T *estack_push_ufunc(ufunc_T *ufunc, long lnum); 4 estack_T *estack_push_ufunc(ufunc_T *ufunc, long lnum);
5 int estack_top_is_ufunc(ufunc_T *ufunc, long lnum); 5 int estack_top_is_ufunc(ufunc_T *ufunc, long lnum);
6 estack_T *estack_pop(void); 6 estack_T *estack_pop(void);
7 char_u *estack_sfile(int is_sfile); 7 char_u *estack_sfile(estack_arg_T which);
8 void ex_runtime(exarg_T *eap); 8 void ex_runtime(exarg_T *eap);
9 int do_in_path(char_u *path, char_u *name, int flags, void (*callback)(char_u *fname, void *ck), void *cookie); 9 int do_in_path(char_u *path, char_u *name, int flags, void (*callback)(char_u *fname, void *ck), void *cookie);
10 int do_in_runtimepath(char_u *name, int flags, void (*callback)(char_u *fname, void *ck), void *cookie); 10 int do_in_runtimepath(char_u *name, int flags, void (*callback)(char_u *fname, void *ck), void *cookie);
11 int source_runtime(char_u *name, int flags); 11 int source_runtime(char_u *name, int flags);
12 int source_in_path(char_u *path, char_u *name, int flags, int *ret_sid); 12 int source_in_path(char_u *path, char_u *name, int flags, int *ret_sid);