From 3f0e76d5168a52934f3bf96f994d890688937767 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Fri, 1 Jun 2001 18:49:32 +0000 Subject: more #endif WANT_BIG5 -> #endif changes git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1531 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/fe-text/gui-entry.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/fe-text') diff --git a/src/fe-text/gui-entry.c b/src/fe-text/gui-entry.c index 7544539a..835b3b3d 100644 --- a/src/fe-text/gui-entry.c +++ b/src/fe-text/gui-entry.c @@ -155,7 +155,7 @@ void gui_entry_erase(int size) #ifdef WANT_BIG5 if (is_big5(entry->str[pos-2], entry->str[pos-1])) size++; -#endif WANT_BIG5 +#endif pos -= size; g_string_erase(entry, pos, size); @@ -227,7 +227,7 @@ void gui_entry_move_pos(int p) p++; else if (p < 0 && is_big5 (entry->str[pos-1], entry->str[pos])) p--; -#endif WANT_BIG5 +#endif if (pos+p >= 0 && pos+p <= entry->len) pos += p; -- cgit v1.2.3