Revision: 17294
http://svn.sourceforge.net/gaim/?rev=17294&view=rev
Author: deryni9
Date: 2006-09-17 00:09:54 -0700 (Sun, 17 Sep 2006)
Log Message:
-----------
These were getting in the way of some other things I was working on. Stupid
svn.
Modified Paths:
--------------
trunk/gtk/plugins/perl/common/GtkIMHtml.xs
Modified: trunk/gtk/plugins/perl/common/GtkIMHtml.xs
===================================================================
--- trunk/gtk/plugins/perl/common/GtkIMHtml.xs 2006-09-17 06:30:12 UTC (rev 17293)
+++ trunk/gtk/plugins/perl/common/GtkIMHtml.xs 2006-09-17 07:09:54 UTC (rev 17294)
@@ -307,7 +307,7 @@
gtk_imhtml_get_markup(imhtml)
Gaim::GtkUI::IMHtml imhtml
-# ETAN Test this, and document well that it returns an arrayref
+# /* ETAN Test this, and document well that it returns an arrayref */
void
gtk_imhtml_get_markup_lines(imhtml)
Gaim::GtkUI::IMHtml imhtml
@@ -318,7 +318,7 @@
PPCODE:
bufs = gtk_imhtml_get_markup_lines(imhtml);
lines = newAV();
- for (i = 0; bufs[i]; i++) {
+ for (i = 0; bufs[i] != NULL; i++) {
av_push(lines, newSVpv(bufs[i], 0));
}
XPUSHs(sv_2mortal(newRV_noinc((SV *)lines)));
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|