diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-11-11 15:21:05 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-11-11 15:21:05 +0100 |
commit | f49cc60aa802862c595ff619dccc11271633a94b (patch) | |
tree | e8f01a0c236f2910f117c858f7236b8919e33b93 /src/alloc.h | |
parent | 8617b401599451187fa0c0561a84944978536a90 (diff) | |
download | vim-git-f49cc60aa802862c595ff619dccc11271633a94b.tar.gz |
patch 8.1.0519: cannot save and restore the tag stackv8.1.0519
Problem: Cannot save and restore the tag stack.
Solution: Add gettagstack() and settagstack(). (Yegappan Lakshmanan,
closes #3604)
Diffstat (limited to 'src/alloc.h')
-rw-r--r-- | src/alloc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/alloc.h b/src/alloc.h index 60fa4bd66..36890054f 100644 --- a/src/alloc.h +++ b/src/alloc.h @@ -18,5 +18,8 @@ typedef enum { aid_qf_module, aid_qf_errmsg, aid_qf_pattern, + aid_tagstack_items, + aid_tagstack_from, + aid_tagstack_details, aid_last } alloc_id_T; |