[From nobody Tue Jun  9 21:08:25 2026
Subject: clean files of trailing whitespace

  Trailing whitespace is so unnecessary, that its presence may be removed
before files containing it are distributed.

  Some programs have a tool to point out its presence, like

gcc

  with option &quot;-Wtrailing-whitespace&quot;

git
  with option &quot;apply --whitespace=...&quot;

  and in &quot;.git/config&quot;

[core]
	whitespace=...

grep

  with option -e ' $'

less

  with command &quot;/ $&quot;

mandoc -T lint

  default action
]