From 9084aebe112dd1deacc6f5f535309bc229694acb Mon Sep 17 00:00:00 2001 From: "nethack.rankin" Date: Wed, 13 Mar 2002 07:40:47 +0000 Subject: [PATCH] split long line A source line being 190 characters wide is rather excessive. --- src/dungeon.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/dungeon.c b/src/dungeon.c index b6782df8f..6e7b448b5 100644 --- a/src/dungeon.c +++ b/src/dungeon.c @@ -380,7 +380,10 @@ insert_branch(new_branch, extract_first) new_branch->next = (branch *) 0; /* Convert the branch into a unique number so we can sort them. */ -#define branch_val(bp) ((((long)(bp)->end1.dnum * (MAXLEVEL+1) + (long)(bp)->end1.dlevel) * (MAXDUNGEON+1) * (MAXLEVEL+1)) + ((long)(bp)->end2.dnum * (MAXLEVEL+1) + (long)(bp)->end2.dlevel)) +#define branch_val(bp) \ + ((((long)(bp)->end1.dnum * (MAXLEVEL+1) + \ + (long)(bp)->end1.dlevel) * (MAXDUNGEON+1) * (MAXLEVEL+1)) + \ + ((long)(bp)->end2.dnum * (MAXLEVEL+1) + (long)(bp)->end2.dlevel)) /* * Insert the new branch into the correct place in the branch list. @@ -664,7 +667,7 @@ init_dungeons() /* initialize the "dungeon" structs */ /* we'd better clear the screen now, since when error messages come from * check_version() they will be printed using pline(), which doesn't * mix with the raw messages that might be already on the screen - */ + */ if (iflags.window_inited) clear_nhwindow(WIN_MAP); if (!check_version(&vers_info, DUNGEON_FILE, TRUE)) panic("Dungeon description not valid.");