summaryrefslogtreecommitdiffstats
path: root/src/edit.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2009-12-24 14:46:12 +0000
committerBram Moolenaar <Bram@vim.org>2009-12-24 14:46:12 +0000
commit30848947930e16759289db7489f7a6a20897f6e1 (patch)
tree55677fea82af229ec636f778cd48745f79878a54 /src/edit.c
parentc7be3f30d0a7002d4ec7dd71fb7ccfafd3fa2dde (diff)
updated for version 7.2-322v7.2.322
Diffstat (limited to 'src/edit.c')
-rw-r--r--src/edit.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/edit.c b/src/edit.c
index 19e5b8d5ec..75b18084f3 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -7397,6 +7397,10 @@ in_cinkeys(keytyped, when, line_is_empty)
int icase;
int i;
+ if (keytyped == NUL)
+ /* Can happen with CTRL-Y and CTRL-E on a short line. */
+ return FALSE;
+
#ifdef FEAT_EVAL
if (*curbuf->b_p_inde != NUL)
look = curbuf->b_p_indk; /* 'indentexpr' set: use 'indentkeys' */