diff options
Diffstat (limited to 'Src')
-rw-r--r-- | Src/hist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/hist.c b/Src/hist.c index 089c9f0bd..d531923c0 100644 --- a/Src/hist.c +++ b/Src/hist.c @@ -1077,7 +1077,7 @@ int hwgetword = -1; void ihwbegin(int offset) { - if (stophist == 2 || strin) + if (stophist == 2) return; if (chwordpos%2) chwordpos--; /* make sure we're on a word start, not end */ @@ -1097,7 +1097,7 @@ ihwbegin(int offset) void ihwend(void) { - if (stophist == 2 || strin) + if (stophist == 2) return; if (chwordpos%2 && chline) { /* end of word reached and we've already begun a word */ |