diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-09-10 19:25:05 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-09-10 19:25:05 +0200 |
commit | 4f25b1aba050b85fa97ca2316aa04dd4b0b22530 (patch) | |
tree | 9f051b3953c6eb88e6d5fc1cc5728d348fe626b3 /src/proto | |
parent | a953b5cf4f291875b805262eebd361e502de8c92 (diff) | |
download | vim-git-4f25b1aba050b85fa97ca2316aa04dd4b0b22530.tar.gz |
patch 8.2.1653: expand('<stack>') does not include the final line numberv8.2.1653
Problem: Expand('<stack>') does not include the final line number.
Solution: Add the line nuber. (closes #6927)
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/scriptfile.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/scriptfile.pro b/src/proto/scriptfile.pro index 52df2ca82..cbb9253c5 100644 --- a/src/proto/scriptfile.pro +++ b/src/proto/scriptfile.pro @@ -4,7 +4,7 @@ estack_T *estack_push(etype_T type, char_u *name, long lnum); estack_T *estack_push_ufunc(ufunc_T *ufunc, long lnum); int estack_top_is_ufunc(ufunc_T *ufunc, long lnum); estack_T *estack_pop(void); -char_u *estack_sfile(int is_sfile); +char_u *estack_sfile(estack_arg_T which); void ex_runtime(exarg_T *eap); int do_in_path(char_u *path, char_u *name, int flags, void (*callback)(char_u *fname, void *ck), void *cookie); int do_in_runtimepath(char_u *name, int flags, void (*callback)(char_u *fname, void *ck), void *cookie); |