From 7991d007ac82c77e1bbe50e285aed6b24d1eb68d Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Thu, 15 Nov 2018 14:03:20 -0500 Subject: [PATCH] Choose a less obscure label name. --- main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.c b/main.c index 70f1b9e..b131190 100644 --- a/main.c +++ b/main.c @@ -1041,7 +1041,7 @@ Lclearobj: game.oldobj = command.obj; command.obj = 0; -L2600: +Lcheckhint: checkhints(); /* If closing time, check for any objects being toted with @@ -1196,7 +1196,7 @@ Lookup: case GO_CLEAROBJ: goto Lclearobj; case GO_CHECKHINT: - goto L2600; + goto Lcheckhint; case GO_WORD2: #ifdef GDEBUG printf("Word shift\n"); @@ -1211,7 +1211,7 @@ Lookup: command.word[0].raw[0] = toupper(command.word[0].raw[0]); sspeak(DO_WHAT, command.word[0].raw); command.obj = 0; - goto L2600; + goto Lcheckhint; case GO_DWARFWAKE: /* Oh dear, he's disturbed the dwarves. */ rspeak(DWARVES_AWAKEN); -- 2.31.1