Mercurial > pidgin
annotate plugins/perl/libgaimperl.c @ 13223:3a3538be5b6a
[gaim-migrate @ 15587]
While tracking down a formatting bug that occurred when switching protocols in a contact-aware convo, SimGuy noticed that imhtml_clear_formatting didn't clear imhtml->edit.fontface. We both noticed that those values should be g_free()d before clearing them. I noticed that formatting wasn't clearing properly when I was testing a plain old AIM conversation and just hit Ctrl-R.
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Sat, 11 Feb 2006 07:23:29 +0000 |
parents | a4229dd9c76a |
children |
rev | line source |
---|---|
11862 | 1 #include <gmodule.h> |
12418
a4229dd9c76a
[gaim-migrate @ 14725]
Richard Laager <rlaager@wiktel.com>
parents:
11862
diff
changeset
|
2 void __attribute__ ((constructor)) my_init(void); |
a4229dd9c76a
[gaim-migrate @ 14725]
Richard Laager <rlaager@wiktel.com>
parents:
11862
diff
changeset
|
3 |
a4229dd9c76a
[gaim-migrate @ 14725]
Richard Laager <rlaager@wiktel.com>
parents:
11862
diff
changeset
|
4 void __attribute__ ((constructor)) my_init() { |
a4229dd9c76a
[gaim-migrate @ 14725]
Richard Laager <rlaager@wiktel.com>
parents:
11862
diff
changeset
|
5 /* Very evil hack...puts perl.so's symbols in the global table |
a4229dd9c76a
[gaim-migrate @ 14725]
Richard Laager <rlaager@wiktel.com>
parents:
11862
diff
changeset
|
6 * but does not create a circular dependancy because g_module_open |
a4229dd9c76a
[gaim-migrate @ 14725]
Richard Laager <rlaager@wiktel.com>
parents:
11862
diff
changeset
|
7 * will only open the library once. */ |
11120 | 8 g_module_open("perl.so", 0); |
9 } |