From: James S. <jsi...@us...> - 2002-02-27 23:56:13
|
Update of /cvsroot/linuxconsole/ruby/linux/include/linux In directory usw-pr-cvs1:/tmp/cvs-serv12904 Modified Files: vt_kern.h Log Message: Fix to suppor up to 256 columns. Index: vt_kern.h =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/include/linux/vt_kern.h,v retrieving revision 1.64 retrieving revision 1.65 diff -u -d -r1.64 -r1.65 --- vt_kern.h 20 Jan 2002 03:54:46 -0000 1.64 +++ vt_kern.h 27 Feb 2002 23:56:10 -0000 1.65 @@ -134,7 +134,7 @@ unsigned char vc_utf : 1; /* Unicode UTF-8 encoding */ unsigned char vc_utf_count; int vc_utf_char; - unsigned int vc_tab_stop[5]; /* Tab stops. 160 columns. */ + unsigned int vc_tab_stop[8]; /* Tab stops. 256 columns. */ unsigned char vc_palette[16*3]; /* Colour palette for VGA+ */ unsigned int vc_translate; /* Current ACM */ unsigned char vc_G0_charset; |