diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-10-12 18:25:27 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-10-23 01:33:15 -0400 |
commit | 6dceaf33613cc4d1ff361053e65ce801ce2678cf (patch) | |
tree | da39286b2392399fb35fc27b9813bcaff26016d1 /src/nvim/memline.c | |
parent | 53b025887e28888f8dba78ff57afc001d1a6428b (diff) | |
download | rneovim-6dceaf33613cc4d1ff361053e65ce801ce2678cf.tar.gz rneovim-6dceaf33613cc4d1ff361053e65ce801ce2678cf.tar.bz2 rneovim-6dceaf33613cc4d1ff361053e65ce801ce2678cf.zip |
vim-patch:8.1.0014: qf_init_ext() is too long
Problem: qf_init_ext() is too long.
Solution: Split it into multiple functions. (Yegappan Lakshmanan,
closes vim/vim#2939)
https://github.com/vim/vim/commit/6053f2d29a979ffed1fe01b0a2f28e23750530e9
Diffstat (limited to 'src/nvim/memline.c')
-rw-r--r-- | src/nvim/memline.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/memline.c b/src/nvim/memline.c index b85c23e50f..05cc62bb33 100644 --- a/src/nvim/memline.c +++ b/src/nvim/memline.c @@ -1929,6 +1929,7 @@ int ml_append_buf( colnr_T len, // length of new line, including NUL, or 0 bool newfile // flag, see above ) + FUNC_ATTR_NONNULL_ARG(1) { if (buf->b_ml.ml_mfp == NULL) return FAIL; |