diff options
author | des <des@FreeBSD.org> | 2002-05-23 00:38:07 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2002-05-23 00:38:07 +0000 |
commit | bc5da2aaa33d76771cd47cf90371acbb01d74278 (patch) | |
tree | f1a45d72dce61b7b2a2e4fab1552ab7912563e61 /games/hack/hack.makemon.c | |
parent | b4f31d6da41b4104cde3503e1ddd2658e8443493 (diff) | |
download | FreeBSD-src-bc5da2aaa33d76771cd47cf90371acbb01d74278.zip FreeBSD-src-bc5da2aaa33d76771cd47cf90371acbb01d74278.tar.gz |
Comment out extra tokens after #else and #endif.
Diffstat (limited to 'games/hack/hack.makemon.c')
-rw-r--r-- | games/hack/hack.makemon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/hack/hack.makemon.c b/games/hack/hack.makemon.c index 64e1ecf..54cf307 100644 --- a/games/hack/hack.makemon.c +++ b/games/hack/hack.makemon.c @@ -89,7 +89,7 @@ gotmon: #ifndef NOWORM if(ptr->mlet == 'w' && getwn(mtmp)) initworm(mtmp); -#endif NOWORM +#endif /* NOWORM */ if(anything) if(ptr->mlet == 'O' || ptr->mlet == 'k') { coord enexto(); @@ -165,7 +165,7 @@ struct monst *mtmp; #ifndef NOWORM if(ch == 'w' && mtmp->mx) return; /* do not relocate worms */ -#endif NOWORM +#endif /* NOWORM */ do { tx = rn1(COLNO-3,2); ty = rn2(ROWNO); |