Elm entry: Fixed a bug with inserting chunks.
authortasn <tasn@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 22 Sep 2011 11:31:22 +0000 (11:31 +0000)
committertasn <tasn@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 22 Sep 2011 11:31:22 +0000 (11:31 +0000)
Thanks a lot to WooHyun for finding this.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@63535 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/elm_entry.c

index 21abde7..729af8b 100644 (file)
@@ -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;