Update of /cvsroot/linuxconsole/ruby/ruby-2.6/drivers/char
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25421
Modified Files:
decvte.c
Log Message:
Killed off the console_macros for this file.
Index: decvte.c
===================================================================
RCS file: /cvsroot/linuxconsole/ruby/ruby-2.6/drivers/char/decvte.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- decvte.c 30 Apr 2004 06:04:19 -0000 1.3
+++ decvte.c 21 Mar 2005 19:17:24 -0000 1.4
@@ -1,6 +1,6 @@
/*
* decvte.c - DEC VT terminal emulation code.
- * Copyright (C) 2002 James Simmons (jsi...@in...)
+ * Copyright (C) 2002 James Simmons (jsi...@ww...)
*
* I moved all the VT emulation code out of console.c to here. It makes life
* much easier and the code smaller. It also allows other devices to emulate
@@ -47,8 +47,6 @@
#include <asm/uaccess.h>
#include <asm/bitops.h>
[...1975 lines suppressed...]
- G3_charset = IBMPC_MAP;
+ vc->vc_G3_charset = IBMPC_MAP;
break;
case 'K':
- G3_charset = USER_MAP;
+ vc->vc_G3_charset = USER_MAP;
break;
}
- if (charset == 1)
- set_translate(vc, G3_charset);
- vc_state = ESinit;
+ if (vc->vc_charset == 1)
+ set_translate(vc, vc->vc_G3_charset);
+ vc->vc_state = ESinit;
return;
default:
- vc_state = ESinit;
+ vc->vc_state = ESinit;
}
}
|