=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mg/kbd.c,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- src/usr.bin/mg/kbd.c 2005/06/14 18:14:40 1.17 +++ src/usr.bin/mg/kbd.c 2005/11/18 20:56:53 1.18 @@ -1,4 +1,4 @@ -/* $OpenBSD: kbd.c,v 1.17 2005/06/14 18:14:40 kjell Exp $ */ +/* $OpenBSD: kbd.c,v 1.18 2005/11/18 20:56:53 deraadt Exp $ */ /* This file is in the public domain. */ @@ -28,7 +28,7 @@ static int pushed = FALSE; static int pushedc; -MAP_ELEMENT *ele; +struct map_element *ele; struct key key; @@ -132,8 +132,8 @@ PF doscan(KEYMAP *map, int c, KEYMAP **newmap) { - MAP_ELEMENT *elec = &map->map_element[0]; - MAP_ELEMENT *last = &map->map_element[map->map_num]; + struct map_element *elec = &map->map_element[0]; + struct map_element *last = &map->map_element[map->map_num]; PF ret; while (elec < last && c > elec->k_num) @@ -346,7 +346,7 @@ selfinsert(int f, int n) { #ifndef NO_MACRO - LINE *lp; + struct line *lp; #endif /* !NO_MACRO */ int c; int count;