diff options
-rw-r--r-- | usr.bin/doscmd/tty.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/doscmd/tty.c b/usr.bin/doscmd/tty.c index a76239e..be747b0 100644 --- a/usr.bin/doscmd/tty.c +++ b/usr.bin/doscmd/tty.c @@ -68,7 +68,7 @@ static int flags = 0; static int mode = -1; #define vmem ((u_short *)0xB8000) static int blink = 1; -int flipdelete = 1; /* Flip meaning of delete and backspace */ +int flipdelete = 0; /* Flip meaning of delete and backspace */ extern int capture_fd; static u_short break_code = 0x00; static u_short scan_code = 0x00; @@ -2137,6 +2137,7 @@ video_init() | ButtonReleaseMask | PointerMotionMask ); } + XStoreName(dpy, win, "DOS"); XMapWindow(dpy, win); XFlush(dpy); |