From fd57b3b5bdf15fe7f8b861c2559c905269f9ac15 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Wed, 5 Jul 2017 02:55:51 -0400 Subject: [PATCH] Fix dropped stitch in last commit. --- misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc.c b/misc.c index a793026..5b1068e 100644 --- a/misc.c +++ b/misc.c @@ -532,7 +532,7 @@ long get_vocab_id(const char* word) // Check for the reservoir magic word. if (strcasecmp(word, game.zzword) == 0) - return (PART + 2000); // FIXME: replace with a proper hash + return ACTION_WORD(PART); return (WORD_NOT_FOUND); } -- 2.31.1