diff options
Diffstat (limited to 'opttbl.c')
-rw-r--r-- | opttbl.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/opttbl.c b/opttbl.c index 03838374c9586..58ec347f4b68d 100644 --- a/opttbl.c +++ b/opttbl.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1984-2016 Mark Nudelman + * Copyright (C) 1984-2017 Mark Nudelman * * You may distribute under the terms of either the GNU General Public * License or the Less License, as specified in the README file. @@ -466,7 +466,7 @@ static struct loption option[] = public void init_option() { - register struct loption *o; + struct loption *o; char *p; p = lgetenv("LESS_IS_MORE"); @@ -492,7 +492,7 @@ init_option() findopt(c) int c; { - register struct loption *o; + struct loption *o; for (o = option; o->oletter != '\0'; o++) { @@ -533,9 +533,9 @@ findopt_name(p_optname, p_oname, p_err) int *p_err; { char *optname = *p_optname; - register struct loption *o; - register struct optname *oname; - register int len; + struct loption *o; + struct optname *oname; + int len; int uppercase; struct loption *maxo = NULL; struct optname *maxoname = NULL; |