diff options
author | Timo Sirainen <cras@irssi.org> | 2000-05-10 09:26:39 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-05-10 09:26:39 +0000 |
commit | 36421bb11b8c03bf273592c70c8cbab7e4f58620 (patch) | |
tree | 02f8f753ee7b869e516c88f5de6d09c9b2eeb378 /src | |
parent | 00b03e8c0137ac4a73abf7635e38fdf565be1ca3 (diff) | |
download | irssi-36421bb11b8c03bf273592c70c8cbab7e4f58620.zip |
/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
Diffstat (limited to 'src')
-rw-r--r-- | src/fe-common/core/windows.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-common/core/windows.c b/src/fe-common/core/windows.c index 1ee29795..c8354323 100644 --- a/src/fe-common/core/windows.c +++ b/src/fe-common/core/windows.c @@ -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; } |