Hi… I am well aware that this diff view is very suboptimal. It will be fixed when the refactored server comes along!
Add an auto-indent script
/forge /version.go /vendor /source.tar.gz
*.c.BAK
#!/bin/sh
set -eu
if [ x"$(indent --version)" != x'FreeBSD indent 2.0' ]
then
	printf 'indent(1) version mismatch\n' >&2
	exit 1
fi
find . -name '*.c' -exec indent '{}' ';'