Package: ncurses-bin Version: 6.5+20250216-1 Severity: minor Tags: patch * What led up to the situation?
Checking for defects with a new version test-[g|n]roff -mandoc -t -K utf8 -rF0 -rHY=0 -rCHECKSTYLE=10 -ww -z < "man page" [Use "groff -e ' $' -e '\\~$' <file>" to find obvious trailing spaces.] ["test-groff" is a script in the repository for "groff"; is not shipped] (local copy and "troff" slightly changed by me). [The fate of "test-nroff" was decided in groff bug #55941.] * What was the outcome of this action? troff:<stdin>:186: warning: trailing space in the line * What outcome did you expect instead? No output (no warnings). -.- General remarks and further material, if a diff-file exist, are in the attachments. -- System Information: Debian Release: trixie/sid APT prefers testing APT policy: (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 6.12.12-amd64 (SMP w/2 CPU threads; PREEMPT) Locale: LANG=is_IS.iso88591, LC_CTYPE=is_IS.iso88591 (charmap=ISO-8859-1), LANGUAGE not set Shell: /bin/sh linked to /usr/bin/dash Init: sysvinit (via /sbin/init) Versions of packages ncurses-bin depends on: ii libc6 2.40-7 ii libtinfo6 6.5+20250216-1 ncurses-bin recommends no packages. ncurses-bin suggests no packages. -- no debconf information
Input file is captoinfo.1 Output from "mandoc -T lint captoinfo.1": (shortened list) -.-. Output from "test-groff -mandoc -t -ww -z captoinfo.1": (shortened list) 1 trailing space in the line -.-. Wrong distance between sentences in the input file. Separate the sentences and subordinate clauses; each begins on a new line. See man-pages(7) ("Conventions for source file layout") and "info groff" ("Input Conventions"). The best procedure is to always start a new sentence on a new line, at least, if you are typing on a computer. Remember coding: Only one command ("sentence") on each (logical) line. E-mail: Easier to quote exactly the relevant lines. Generally: Easier to edit the sentence. Patches: Less unaffected text. Search for two adjacent words is easier, when they belong to the same line, and the same phrase. The amount of space between sentences in the output can then be controlled with the ".ss" request. Mark a final abbreviation point as such by suffixing it with "\&". Some sentences (etc.) do not begin on a new line. Split (sometimes) lines after a punctuation mark; before a conjunction. Lines with only one (or two) space(s) between sentences could be split, so latter sentences begin on a new line. Use #!/usr/bin/sh sed -e '/^\./n' \ -e 's/\([[:alpha:]]\)\. */\1.\n/g' $1 to split lines after a sentence period. Check result with the difference between the formatted outputs. See also the attachment "general.bugs" 225:Eric S. Raymond <e...@snark.thyrsus.com> 228:Thomas E. Dickey <dickey@invisible\-island.net> -.-. Section headings (.SH and .SS) do not need quoting their arguments. 84:.SS "Translations from Nonstandard Capabilities" -.-. Output from "test-groff -mandoc -t -K utf8 -rF0 -rHY=0 -rCHECKSTYLE=10 -ww -z ": troff:<stdin>:186: warning: trailing space in the line -.-. Additionally: When heading is wider than any data, use left (l) not centered (c) format for it. -.- Generally: Split (sometimes) lines after a punctuation mark; before a conjunction. -.- Tables: Put data, that are wider than the header in a centered last column, in a "T{\n...\nT}" block. Table headers, that are wider than any data in the corresponding column, do not need to be centered, so left adjustment (l, L) is sufficient.
--- captoinfo.1 2025-03-03 19:04:05.588986808 +0000 +++ captoinfo.1.new 2025-03-03 19:29:02.720998581 +0000 @@ -81,7 +81,7 @@ and .BR \-x . The \fB\-V\fP option reports the version of \fI\%ncurses\fP associated with this program and exits with a successful status. -.SS "Translations from Nonstandard Capabilities" +.SS Translations from Nonstandard Capabilities \fB\%captoinfo\fP translates some obsolete, nonstandard capabilities into standard \fI\%\%term\%info\fP capabilities. @@ -181,7 +181,7 @@ but which is incompatible with the SVr4 .PP .TS center; -cb cb +cb lb l l . IBM X/Open _ @@ -222,10 +222,10 @@ times instead. .PP NetBSD does not provide this application. .SH AUTHORS -Eric S. Raymond <e...@snark.thyrsus.com> +Eric S.\& Raymond <e...@snark.thyrsus.com> and .br -Thomas E. Dickey <dickey@invisible\-island.net> +Thomas E.\& Dickey <dickey@invisible\-island.net> .SH SEE ALSO \fB\%infocmp\fP(1), \fB\%tic\fP(1),
Any program (person), that produces man pages, should check the output for defects by using (both groff and nroff) [gn]roff -mandoc -t -ww -b -z -K utf8 <man page> The same goes for man pages that are used as an input. For a style guide use mandoc -T lint -.- Any "autogenerator" should check its products with the above mentioned 'groff', 'mandoc', and additionally with 'nroff ...'. It should also check its input files for too long (> 80) lines. This is just a simple quality control measure. The "autogenerator" may have to be corrected to get a better man page, the source file may, and any additional file may. Common defects: Not removing trailing spaces (in in- and output). The reason for these trailing spaces should be found and eliminated. "git" has a "tool" to point out whitespace, see for example "git-apply(1)" and git-config(1)") Not beginning each input sentence on a new line. Line length and patch size should thus be reduced. The script "reportbug" uses 'quoted-printable' encoding when a line is longer than 1024 characters in an 'ascii' file. See man-pages(7), item "semantic newline". -.- The difference between the formatted output of the original and patched file can be seen with: nroff -mandoc <file1> > <out1> nroff -mandoc <file2> > <out2> diff -d -u <out1> <out2> and for groff, using \"printf '%s\n%s\n' '.kern 0' '.ss 12 0' | groff -mandoc -Z - \" instead of 'nroff -mandoc' Add the option '-t', if the file contains a table. Read the output from 'diff -d -u ...' with 'less -R' or similar. -.-. If 'man' (man-db) is used to check the manual for warnings, the following must be set: The option \"-warnings=w\" The environmental variable: export MAN_KEEP_STDERR=yes (or any non-empty value) or (produce only warnings): export MANROFFOPT=\"-ww -b -z\" export MAN_KEEP_STDERR=yes (or any non-empty value) -.-