From 30452c1876294c98c5b1fcbf9478ff1c1697aeae Mon Sep 17 00:00:00 2001 From: Rick L Bird Date: Sat, 14 May 2011 13:04:34 -0400 Subject: [PATCH] PennMUSH 1.8.3p12 Author: talvo@talvo.com Date: Wed Jan 6 16:33:17 2010 +0000 locate() ignores spaces in 3rd arg, helpfile tweaks Fixes #180 --- src/fundb.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/fundb.c b/src/fundb.c index 0477824..86e49e6 100644 --- a/src/fundb.c +++ b/src/fundb.c @@ -1972,6 +1972,8 @@ FUNCTION(fun_locate) case 'X': ambig_ok = 1; /* okay to pick last match */ break; + case ' ': /* skip over spaces */ + break; default: notify_format(executor, T("I don't understand switch '%c'."), *p); break; -- 2.30.2