=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/less/command.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- src/usr.bin/less/command.c 2001/01/29 01:58:00 1.3 +++ src/usr.bin/less/command.c 2001/11/19 19:02:14 1.4 @@ -1,4 +1,4 @@ -/* $OpenBSD: command.c,v 1.3 2001/01/29 01:58:00 niklas Exp $ */ +/* $OpenBSD: command.c,v 1.4 2001/11/19 19:02:14 mpech Exp $ */ /* * Copyright (c) 1984,1985,1989,1994,1995 Mark Nudelman @@ -163,7 +163,7 @@ static void exec_mca() { - register char *cbuf; + char *cbuf; cmd_exec(); cbuf = get_cmdbuf(); @@ -412,7 +412,7 @@ static void prompt() { - register char *p; + char *p; if (ungotp != NULL && ungotp > ungot) { @@ -566,7 +566,7 @@ ungetsc(s) char *s; { - register char *p; + char *p; for (p = s + strlen(s) - 1; p >= s; p--) ungetcc(*p); @@ -582,7 +582,7 @@ char *pattern; int n; { - register int nomore; + int nomore; IFILE save_ifile; int changed_file; @@ -662,9 +662,9 @@ public void commands() { - register int c; - register int action; - register char *cbuf; + int c; + int action; + char *cbuf; int save_search_type; char *s; char tbuf[2];