=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mg/ttykbd.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- src/usr.bin/mg/ttykbd.c 2000/03/12 00:42:16 1.4 +++ src/usr.bin/mg/ttykbd.c 2000/04/13 06:12:18 1.5 @@ -17,7 +17,7 @@ * extend.c. */ -char *keystrings[] = { NULL } ; +char *keystrings[] = {NULL}; #endif /* @@ -25,12 +25,12 @@ * available. The keys file is located in the same manner as the startup * file is, depending on what startupfile() does on your system. */ -extern int ttputc(); +extern int ttputc(); ttykeymapinit() { - extern int dobindkey(); /* XXX */ - char *cp; + extern int dobindkey(); /* XXX */ + char *cp; #ifdef FKEYS /* Bind keypad function keys. */ if (key_left) @@ -54,13 +54,13 @@ #endif #ifndef NO_STARTUP if (cp = gettermtype()) { - extern char *startupfile(); + extern char *startupfile(); if (((cp = startupfile(cp)) != NULL) - && (load(cp) != TRUE)) + && (load(cp) != TRUE)) ewprintf("Error reading key initialization file"); } #endif - if (keypad_xmit) /* turn on keypad */ + if (keypad_xmit) /* turn on keypad */ putpad(keypad_xmit, 1); } @@ -71,7 +71,7 @@ { if (keypad_local) - putpad(keypad_local, 1); /* turn off keypad */ + putpad(keypad_local, 1); /* turn off keypad */ } #endif