diff options
author | B. Watson <urchlay@slackware.uk> | 2024-12-18 05:50:06 -0500 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2024-12-18 05:50:06 -0500 |
commit | 0b59672d55379f824dd592b7a5c854d9a21a2c12 (patch) | |
tree | b9f721060e858893975bba3c216076175535140a | |
parent | c205a7ea2a7171b61dae4ac51a3a251cceb1dde1 (diff) | |
download | uxd-0b59672d55379f824dd592b7a5c854d9a21a2c12.tar.gz |
blank before -i output, clarify "characters" means valid ones.
-rw-r--r-- | uxd.1 | 2 | ||||
-rw-r--r-- | uxd.c | 4 | ||||
-rw-r--r-- | uxd.rst | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -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 @@ -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); @@ -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 ================ |