aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/eval.c
diff options
context:
space:
mode:
authorerw7 <erw7.github@gmail.com>2019-05-25 11:14:35 +0900
committererw7 <erw7.github@gmail.com>2020-02-12 16:03:45 +0900
commitaec3d7915c55fc0b7dc73f6186cf0ae45d416d33 (patch)
tree54d83b901dd4b31126b0cb250b84a062a61c086e /src/nvim/eval.c
parentb015c4741caef37b3f89661e1d5d6a4a033b2856 (diff)
downloadrneovim-aec3d7915c55fc0b7dc73f6186cf0ae45d416d33.tar.gz
rneovim-aec3d7915c55fc0b7dc73f6186cf0ae45d416d33.tar.bz2
rneovim-aec3d7915c55fc0b7dc73f6186cf0ae45d416d33.zip
vim-patch:8.1.0091: MS-Windows: Cannot interrupt gdb when program is running
Problem: MS-Windows: Cannot interrupt gdb when program is running. Solution: Add debugbreak() and use it in the terminal debugger. Respect 'modified' in a prompt buffer. https://github.com/vim/vim/commit/4551c0a9fcdbdef52836d4852686d54b5e47fdaf
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r--src/nvim/eval.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c
index 7b5845e18b..df2e6bd415 100644
--- a/src/nvim/eval.c
+++ b/src/nvim/eval.c
@@ -7315,9 +7315,7 @@ dict_T *get_win_info(win_T *wp, int16_t tpnr, int16_t winnr)
return dict;
}
-/*
- * Find window specified by "vp" in tabpage "tp".
- */
+// Find window specified by "vp" in tabpage "tp".
win_T *
find_win_by_nr(
typval_T *vp,