From: Rick L Bird Date: Sat, 14 May 2011 17:04:34 +0000 (-0400) Subject: PennMUSH 1.8.3p12 X-Git-Url: https://git.theari.com/?a=commitdiff_plain;h=30452c1876294c98c5b1fcbf9478ff1c1697aeae;p=cobramush.git 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 --- 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;