diff options
author | Todd A. Pratt <ae88925@gmail.com> | 2015-11-14 09:07:35 -0500 |
---|---|---|
committer | Todd A. Pratt <ae88925@gmail.com> | 2015-11-14 09:07:35 -0500 |
commit | 15dfb27f80922f6f3b751da9e1395994c3026a62 (patch) | |
tree | 7215c83451050adb82e3538936ce81cda4ea91f8 /src/fe-text/gui-entry.c | |
parent | bb8c0bbf4caf87172255993ce8a86f91a8cd4208 (diff) | |
download | irssi-15dfb27f80922f6f3b751da9e1395994c3026a62.zip |
use the enum name which was the original intended change
Diffstat (limited to 'src/fe-text/gui-entry.c')
-rw-r--r-- | src/fe-text/gui-entry.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-text/gui-entry.c b/src/fe-text/gui-entry.c index 650995bd..176ee431 100644 --- a/src/fe-text/gui-entry.c +++ b/src/fe-text/gui-entry.c @@ -646,7 +646,7 @@ void gui_entry_erase_word(GUI_ENTRY_REC *entry, int to_space, CUTBUFFER_UPDATE_O } if (to > 0) to++; - gui_entry_erase(entry, entry->pos-to, TRUE); + gui_entry_erase(entry, entry->pos-to, CUTBUFFER_UPDATE_REPLACE); } void gui_entry_erase_next_word(GUI_ENTRY_REC *entry, int to_space) |