diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2020-09-02 13:48:48 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-02 13:48:48 +0000 |
commit | 3ba55d8aca8078f7f09bf3f95fd7c2d7db3f3308 (patch) | |
tree | 9b27a73552f4044c006f2bb71c5d8b69f4883d11 | |
parent | Update ChangeLog (diff) | |
parent | Add closing bracket I somehow forgot about in the previous commit (diff) | |
download | w3m-3ba55d8aca8078f7f09bf3f95fd7c2d7db3f3308.tar.gz w3m-3ba55d8aca8078f7f09bf3f95fd7c2d7db3f3308.zip |
Merge pull request #150 from bptato/master
Add closing bracket I somehow forgot about in the previous commit
-rw-r--r-- | linein.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -184,7 +184,7 @@ inputLineHistSearch(char *prompt, char *def_str, int flag, Hist *hist, cm_clear = TRUE; cm_disp_clear = TRUE; if (!i_quote && - (((cm_mode & CPL_ALWAYS) && (c == CTRL_I || (space_autocomplete && c == ' ')) || + (((cm_mode & CPL_ALWAYS) && (c == CTRL_I || (space_autocomplete && c == ' '))) || ((cm_mode & CPL_ON) && (c == CTRL_I)))) { if (emacs_like_lineedit && cm_next) { _dcompl(); |