]> granicus.if.org Git - nethack/commit
another batch of formatting
authorPatR <rankin@nethack.org>
Wed, 4 Nov 2015 02:28:53 +0000 (18:28 -0800)
committerPatR <rankin@nethack.org>
Wed, 4 Nov 2015 02:28:53 +0000 (18:28 -0800)
commit2ddc361adf2ae52e61f45f74c42c731b3c46c700
treedde8ea4c7d069ca6e98664c4794fe2f1e2e52bb3
parent37771f779e9431cc93a59e9e8ee71d367bcbd8c2
another batch of formatting

Same sort of stuff as before:  some continuation lines with operator
followed by end of line comment (only a few files with those still to
go...), plus tab replaced by spaces in comments, excess parenthesis
removal for return statements, and force function name to be in column
one in function definitions:
  type name(args) /* comment */
  argtype args;
  {
to
  /* comment */
  type
  name(args)
  argtype args;
  {
I've been spotting those by eye rather than rexexp, so probably missed
some.
src/dogmove.c
src/hack.c
src/lock.c
src/mhitm.c
src/mkmaze.c
src/mondata.c
src/monmove.c
src/mthrowu.c
src/polyself.c
src/trap.c