From 6c6498b797c84653c04ef0a9fc31d52af159fdf2 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Wed, 14 Jun 2017 13:35:06 -0400 Subject: [PATCH] Eliminate magic return value. --- actions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions.c b/actions.c index 2b9973a..d0608f6 100644 --- a/actions.c +++ b/actions.c @@ -849,7 +849,7 @@ static int say(void) int wd=VOCAB(WD1,-1); if (wd == 62 || wd == 65 || wd == 71 || wd == 2025 || wd == 2034) { WD2=0; - return(2630); + return GO_LOOKUP; } RSPEAK(258); return GO_CLEAROBJ; -- 2.31.1