diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-10-07 21:51:04 -0700 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-10-07 21:51:04 -0700 |
commit | 3b3a40978117a79cd6960c820b12e6f04408ac25 (patch) | |
tree | 347bf4fa16579a0d78314589babd405b520f68a3 /src/nvim/digraph.c | |
parent | 7faa6c41c89f1c5d48f92a436ed690bc7ce6ea85 (diff) | |
parent | 0586a4b512b2495d32f20c46946d35a0d403bd52 (diff) | |
download | rneovim-3b3a40978117a79cd6960c820b12e6f04408ac25.tar.gz rneovim-3b3a40978117a79cd6960c820b12e6f04408ac25.tar.bz2 rneovim-3b3a40978117a79cd6960c820b12e6f04408ac25.zip |
Merge #11077 'vim-patch:8.1.{1354,1356,1362,1588}'
Diffstat (limited to 'src/nvim/digraph.c')
-rw-r--r-- | src/nvim/digraph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/digraph.c b/src/nvim/digraph.c index 5a07137831..65d95ff158 100644 --- a/src/nvim/digraph.c +++ b/src/nvim/digraph.c @@ -1887,7 +1887,7 @@ void ex_loadkeymap(exarg_T *eap) // Get each line of the sourced file, break at the end. for (;;) { - line = eap->getline(0, eap->cookie, 0); + line = eap->getline(0, eap->cookie, 0, true); if (line == NULL) { break; |