From 2c5dc0e2aafea8a21c1d9263b7f62aaf00416b5c Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Thu, 22 Sep 2011 11:31:22 +0000 Subject: [PATCH] Elm entry: Fixed a bug with inserting chunks. Thanks a lot to WooHyun for finding this. SVN revision: 63535 --- legacy/elementary/src/lib/elm_entry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/elementary/src/lib/elm_entry.c b/legacy/elementary/src/lib/elm_entry.c index 21abde7050..729af8b92c 100644 --- a/legacy/elementary/src/lib/elm_entry.c +++ b/legacy/elementary/src/lib/elm_entry.c @@ -1839,7 +1839,7 @@ _text_append_idler(void *data) else if (tmp == '>') tag_start = -1; } - else if (tag_start == -1) + if (tag_start == -1) { if (tmp == '&') esc_start = prev_pos;