aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2024-12-18 05:50:06 -0500
committerB. Watson <urchlay@slackware.uk>2024-12-18 05:50:06 -0500
commit0b59672d55379f824dd592b7a5c854d9a21a2c12 (patch)
treeb9f721060e858893975bba3c216076175535140a
parentc205a7ea2a7171b61dae4ac51a3a251cceb1dde1 (diff)
downloaduxd-0b59672d55379f824dd592b7a5c854d9a21a2c12.tar.gz
blank before -i output, clarify "characters" means valid ones.
-rw-r--r--uxd.12
-rw-r--r--uxd.c4
-rw-r--r--uxd.rst2
3 files changed, 4 insertions, 4 deletions
diff --git a/uxd.1 b/uxd.1
index 90b23a3..8110efb 100644
--- a/uxd.1
+++ b/uxd.1
@@ -301,7 +301,7 @@ as 2 or more bytes).
.UNINDENT
.sp
Each occurrence of any of the above will increment the "Bad
-Sequences" count, if the \fB\-i\fP option is used.
+sequences" count, if the \fB\-i\fP option is used.
.UNINDENT
.UNINDENT
.UNINDENT
diff --git a/uxd.c b/uxd.c
index d141c2e..f9ca29a 100644
--- a/uxd.c
+++ b/uxd.c
@@ -772,8 +772,8 @@ void seek_input(void) {
}
void print_info(void) {
- printf("Bytes: %ld\n", byte_count);
- printf("Characters: %ld\n", char_count);
+ printf("\nBytes: %ld\n", byte_count);
+ printf("Valid characters: %ld\n", char_count);
printf(" ASCII: %ld\n", ascii_count);
printf(" Multibyte: %ld\n", multi_count);
printf("Bad sequences: %ld\n", bad_count);
diff --git a/uxd.rst b/uxd.rst
index 1789efe..ddc3b9a 100644
--- a/uxd.rst
+++ b/uxd.rst
@@ -254,7 +254,7 @@ changed with the **-c** option (see above).
as 2 or more bytes).
Each occurrence of any of the above will increment the "Bad
- Sequences" count, if the **-i** option is used.
+ sequences" count, if the **-i** option is used.
TERMINAL SUPPORT
================