aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2014-09-13 18:04:13 -0400
committerJustin M. Keyes <justinkz@gmail.com>2014-09-13 18:04:13 -0400
commit5778c25c019f01c3e0249da18398abdca3f9b002 (patch)
treeaf991fd3e08fd988c615baf22bd4e5e7a8b75375 /src
parent1761a4af711410076e6fdb5f727a83ee54ff5988 (diff)
parentabdcc5fe85f0677cbd6d2be1411da101dd0e7e83 (diff)
downloadrneovim-5778c25c019f01c3e0249da18398abdca3f9b002.tar.gz
rneovim-5778c25c019f01c3e0249da18398abdca3f9b002.tar.bz2
rneovim-5778c25c019f01c3e0249da18398abdca3f9b002.zip
Merge pull request #1167 from atwupack/fix-issue-1164
ex_cmds2.c:fix for issue #1164
Diffstat (limited to 'src')
-rw-r--r--src/nvim/ex_cmds2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds2.c b/src/nvim/ex_cmds2.c
index 17905c3046..c3d34e9991 100644
--- a/src/nvim/ex_cmds2.c
+++ b/src/nvim/ex_cmds2.c
@@ -1914,7 +1914,7 @@ void ex_listdo(exarg_T *eap)
break;
}
}
- if (buf_still_exists) {
+ if (!buf_still_exists) {
break;
}