mirror of
https://github.com/irssi/irssi.git
synced 2026-08-20 17:12:51 +02:00
fixup perl side
This commit is contained in:
parent
ff0daf5870
commit
1e2547eb92
1 changed files with 2 additions and 2 deletions
|
|
@ -19,9 +19,9 @@ void
|
||||||
rawlog_get_lines(rawlog)
|
rawlog_get_lines(rawlog)
|
||||||
Irssi::Rawlog rawlog
|
Irssi::Rawlog rawlog
|
||||||
PREINIT:
|
PREINIT:
|
||||||
GSList *tmp;
|
GList *tmp;
|
||||||
PPCODE:
|
PPCODE:
|
||||||
for (tmp = rawlog->lines; tmp != NULL; tmp = tmp->next) {
|
for (tmp = rawlog->lines->tail; tmp != NULL; tmp = tmp->prev) {
|
||||||
XPUSHs(sv_2mortal(new_pv(tmp->data)));
|
XPUSHs(sv_2mortal(new_pv(tmp->data)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue