1
0
mirror of https://github.com/irssi/irssi.git synced 2025-02-02 15:08:01 -05:00

/window prev didn't work because of small "typo".

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@205 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-05-10 09:26:39 +00:00 committed by cras
parent 00b03e8c01
commit 36421bb11b

View File

@ -273,7 +273,7 @@ static int window_refnum_prev(int refnum)
WINDOW_REC *rec = tmp->data;
if (rec->refnum < refnum && (max == -1 || rec->refnum > max))
max = rec->refnum;
prev = rec->refnum;
if (max == -1 || rec->refnum > max)
max = rec->refnum;
}