aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorKATO Takenori <kato@FreeBSD.org>1997-01-31 11:24:01 +0000
committerKATO Takenori <kato@FreeBSD.org>1997-01-31 11:24:01 +0000
commit7546bbf82e78de0ba37dd02ca154edcd63cddebc (patch)
treedb73f35667fa75c6ee8054732cbc309f3c331235 /sys
parent0e5d7a6941121bb0184f9922fdcf2a256f487d22 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/pc98/pc98/syscons.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/sys/pc98/pc98/syscons.c b/sys/pc98/pc98/syscons.c
index 64f758ddd5a1..37807c9b5cf5 100644
--- a/sys/pc98/pc98/syscons.c
+++ b/sys/pc98/pc98/syscons.c
@@ -3922,7 +3922,16 @@ next_code:
metas = 1;
break;
case NEXT:
- switch_scr(cur_console, (get_scr_num() + 1) % MAXCONS);
+ {
+ int next, this = get_scr_num();
+ for (next = this+1; next != this; next = (next+1)%MAXCONS) {
+ struct tty *tp = VIRTUAL_TTY(next);
+ if (tp->t_state & TS_ISOPEN) {
+ switch_scr(cur_console, next);
+ break;
+ }
+ }
+ }
break;
case BTAB:
return(BKEY);