gaim/gaim

673f5a989ed8
Parents 0943618c5eee
Children 43a51e22f48b
this might fix that not parsing smileys at end of line (really smileys
butted up against a tag, e.g. ":-)")
But I didn't have time to test it. But at least it compiles.
--- a/src/gtkimhtml.c Mon Feb 14 19:50:46 2005 -0500
+++ b/src/gtkimhtml.c Mon Feb 14 20:00:12 2005 -0500
@@ -1486,7 +1486,7 @@
else if (*x == '<') /* Because we're all WYSIWYG now, a '<'
* char should only appear as the start of a tag. Perhaps a safer (but costlier)
* check would be to call gtk_imhtml_is_tag on it */
- return 0;
+ break;
else
pos = strchr (t->values->str, *x);
--- a/src/gtkimhtml.h Mon Feb 14 19:50:46 2005 -0500
+++ b/src/gtkimhtml.h Mon Feb 14 20:00:12 2005 -0500
@@ -140,7 +140,7 @@
gchar *fore;
gchar *back;
gchar *sml;
- gboolean underline;
+ gboolean underline;
};
struct _GtkSmileyTree {