diff options
author | James McCoy <jamessan@jamessan.com> | 2021-01-31 13:25:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-31 13:25:16 -0500 |
commit | e85c8dff692c894a614192f6dd8a4c71c1c9fe30 (patch) | |
tree | 077b5c54b39b538c09b44a419044648cc36fdce9 /src/nvim/quickfix.c | |
parent | b2713f11b48fe8029aeae07ef6a55ef182a4fbfd (diff) | |
parent | 81794204ce85dd15a62a27275fe717c7033e65d5 (diff) | |
download | rneovim-e85c8dff692c894a614192f6dd8a4c71c1c9fe30.tar.gz rneovim-e85c8dff692c894a614192f6dd8a4c71c1c9fe30.tar.bz2 rneovim-e85c8dff692c894a614192f6dd8a4c71c1c9fe30.zip |
Merge pull request #12937 from jamessan/term-env
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r-- | src/nvim/quickfix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index 3d639d7db5..e074f73d04 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -5648,7 +5648,7 @@ static int get_qfline_items(qfline_T *qfp, list_T *list) == FAIL)) { // tv_dict_add* fail only if key already exist, but this is a newly // allocated dictionary which is thus guaranteed to have no existing keys. - assert(false); + abort(); } return OK; |