summaryrefslogtreecommitdiffstats
path: root/contrib/less/ttyin.c
diff options
context:
space:
mode:
authordelphij <delphij@FreeBSD.org>2007-06-04 01:42:54 +0000
committerdelphij <delphij@FreeBSD.org>2007-06-04 01:42:54 +0000
commit9b5d103b5b51a6fea5caf2c8b1fc678d65a357c9 (patch)
treef7d1bd15b558b3590d7bb4d4e31ef8833e0a1171 /contrib/less/ttyin.c
parent05dd7cf6267b7b4d66cfc8e51b6d7e47d0eba220 (diff)
parent7672cb6e48e2ed472cbd72caaa0eb155608a644d (diff)
downloadFreeBSD-src-9b5d103b5b51a6fea5caf2c8b1fc678d65a357c9.zip
FreeBSD-src-9b5d103b5b51a6fea5caf2c8b1fc678d65a357c9.tar.gz
This commit was generated by cvs2svn to compensate for changes in r170256,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib/less/ttyin.c')
-rw-r--r--contrib/less/ttyin.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/contrib/less/ttyin.c b/contrib/less/ttyin.c
index ca500f9..0cb427b 100644
--- a/contrib/less/ttyin.c
+++ b/contrib/less/ttyin.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 1984-2004 Mark Nudelman
+ * Copyright (C) 1984-2007 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.
@@ -102,8 +102,6 @@ getchr()
{
char c;
int result;
- int hex_in = 0;
- int hex_value = 0;
do
{
@@ -137,6 +135,9 @@ getchr()
#endif
#if 0 /* allow entering arbitrary hex chars for testing */
/* ctrl-A followed by two hex chars makes a byte */
+ {
+ int hex_in = 0;
+ int hex_value = 0;
if (c == CONTROL('A'))
{
hex_in = 2;
@@ -162,6 +163,7 @@ getchr()
}
c = hex_value;
}
+ }
#endif
/*
* Various parts of the program cannot handle
OpenPOWER on IntegriCloud