aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/window.c
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2017-12-15 19:10:25 -0500
committerGitHub <noreply@github.com>2017-12-15 19:10:25 -0500
commit7afd26a6d189d1ca798f93db8661bd656a37265f (patch)
tree1c2aa0dbd479f322fa6d8221b9f141fc6e2d3a44 /src/nvim/window.c
parent6ff13d78b7eb0a1fae2e2e8cdd054072e1467158 (diff)
parentdcb2780b834d4df006f55a0475e03bd2a38ac344 (diff)
downloadrneovim-7afd26a6d189d1ca798f93db8661bd656a37265f.tar.gz
rneovim-7afd26a6d189d1ca798f93db8661bd656a37265f.tar.bz2
rneovim-7afd26a6d189d1ca798f93db8661bd656a37265f.zip
Merge pull request #7306 from DarkDeepBlue/vim-8.0.0074
vim-patch:8.0.0074
Diffstat (limited to 'src/nvim/window.c')
-rw-r--r--src/nvim/window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/window.c b/src/nvim/window.c
index e39569321e..63c9361663 100644
--- a/src/nvim/window.c
+++ b/src/nvim/window.c
@@ -2115,7 +2115,7 @@ void win_close_othertab(win_T *win, int free_buf, tabpage_T *tp)
ptp = ptp->tp_next)
;
if (ptp == NULL) {
- EMSG2(_(e_intern2), "win_close_othertab()");
+ internal_error("win_close_othertab()");
return;
}
ptp->tp_next = tp->tp_next;