Trim trailing white space from source code

Normally, git's pre-commit hook protects us from them.  However, when
expected test output contains trailing white space, we have to bypass
commit hooks.  Unwanted space can then slip in if you don't pay
attention.  I obviously didn't; clean up.

The previous commit should reduce the need for such hook suppression.

Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
Markus Armbruster 2014-01-05 13:04:05 +01:00
parent 37ff3774ec
commit 00883256db
3 changed files with 3 additions and 3 deletions

View file

@ -750,7 +750,7 @@ edit_unit(struct empobj *unit, char *key, char *p,
coord newx, newy; coord newx, newy;
union empobj_storage newunit; union empobj_storage newunit;
char newgroup; char newgroup;
switch (toupper(*key)) { switch (toupper(*key)) {
case 'U': case 'U':
if (arg < 0) if (arg < 0)

View file

@ -11,7 +11,7 @@ srcdir="$1"
# #
# Currently expected to work only with thread package LWP, because: # Currently expected to work only with thread package LWP, because:
# #
# - Thread scheduling is reliably deterministic only with LWP # - Thread scheduling is reliably deterministic only with LWP
# - Shell builtin kill appears not to do the job in MinGW # - Shell builtin kill appears not to do the job in MinGW
# - The Windows server tries to run as service when -d isn't # - The Windows server tries to run as service when -d isn't

View file

@ -11,7 +11,7 @@ srcdir="$1"
# #
# Currently expected to work only with thread package LWP, because: # Currently expected to work only with thread package LWP, because:
# #
# - Thread scheduling is reliably deterministic only with LWP # - Thread scheduling is reliably deterministic only with LWP
# - Shell builtin kill appears not to do the job in MinGW # - Shell builtin kill appears not to do the job in MinGW
# - The Windows server tries to run as service when -d isn't # - The Windows server tries to run as service when -d isn't