diff options
Diffstat (limited to 'app/xterm/TekPrsTbl.c')
-rw-r--r-- | app/xterm/TekPrsTbl.c | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/app/xterm/TekPrsTbl.c b/app/xterm/TekPrsTbl.c index a16d18de1..4b95a702b 100644 --- a/app/xterm/TekPrsTbl.c +++ b/app/xterm/TekPrsTbl.c @@ -1,7 +1,7 @@ -/* $XTermId: TekPrsTbl.c,v 1.9 2006/02/13 01:14:57 tom Exp $ */ +/* $XTermId: TekPrsTbl.c,v 1.10 2024/09/02 16:07:11 tom Exp $ */ /* - * Copyright 1998-2001,2006 by Thomas E. Dickey + * Copyright 1998-2006,2024 by Thomas E. Dickey * * All Rights Reserved * @@ -54,8 +54,9 @@ /* $XFree86: xc/programs/xterm/TekPrsTbl.c,v 3.5 2006/02/13 01:14:57 dickey Exp $ */ #include <Tekparse.h> +/* *INDENT-OFF* */ -Const int Talptable[] = /* US (^_) normal alpha mode */ +const int Talptable[] = /* US (^_) normal alpha mode */ { /* NUL SOH STX ETX */ CASE_IGNORE, @@ -379,7 +380,7 @@ CASE_PRINT, CASE_PRINT, }; -Const int Tbestable[] = /* ESC while in bypass state */ +const int Tbestable[] = /* ESC while in bypass state */ { /* NUL SOH STX ETX */ CASE_BYP_STATE, @@ -703,7 +704,7 @@ CASE_BYP_STATE, CASE_BYP_STATE, }; -Const int Tbyptable[] = /* ESC CAN (^X) bypass state */ +const int Tbyptable[] = /* ESC CAN (^X) bypass state */ { /* NUL SOH STX ETX */ CASE_IGNORE, @@ -1027,7 +1028,7 @@ CASE_IGNORE, CASE_IGNORE, }; -Const int Tesctable[] = /* ESC */ +const int Tesctable[] = /* ESC */ { /* NUL SOH STX ETX */ CASE_CURSTATE, @@ -1351,7 +1352,7 @@ CASE_IGNORE, CASE_IGNORE, }; -Const int Tipltable[] = /* RS (^^) incremental plot */ +const int Tipltable[] = /* RS (^^) incremental plot */ { /* NUL SOH STX ETX */ CASE_IGNORE, @@ -1675,7 +1676,7 @@ CASE_IGNORE, CASE_IGNORE, }; -Const int Tplttable[] = /* GS (^]) graph (plot) mode */ +const int Tplttable[] = /* GS (^]) graph (plot) mode */ { /* NUL SOH STX ETX */ CASE_IGNORE, @@ -1999,7 +2000,7 @@ CASE_IGNORE, CASE_IGNORE, }; -Const int Tpttable[] = /* FS (^\) point plot mode */ +const int Tpttable[] = /* FS (^\) point plot mode */ { /* NUL SOH STX ETX */ CASE_IGNORE, @@ -2323,7 +2324,7 @@ CASE_IGNORE, CASE_IGNORE, }; -Const int Tspttable[] = /* ESC FS (^\) special point plot */ +const int Tspttable[] = /* ESC FS (^\) special point plot */ { /* NUL SOH STX ETX */ CASE_IGNORE, @@ -2646,3 +2647,4 @@ CASE_IGNORE, CASE_IGNORE, CASE_IGNORE, }; +/* *INDENT-ON* */ |