mirror of
https://github.com/irssi/irssi.git
synced 2026-08-18 08:02:13 +02:00
reverse queue
This commit is contained in:
parent
1e2547eb92
commit
4537d85b0b
2 changed files with 4 additions and 4 deletions
|
|
@ -21,7 +21,7 @@ rawlog_get_lines(rawlog)
|
|||
PREINIT:
|
||||
GList *tmp;
|
||||
PPCODE:
|
||||
for (tmp = rawlog->lines->tail; tmp != NULL; tmp = tmp->prev) {
|
||||
for (tmp = rawlog->lines->head; tmp != NULL; tmp = tmp->next) {
|
||||
XPUSHs(sv_2mortal(new_pv(tmp->data)));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue