[1350] in Coldmud discussion meeting

root meeting help first first in chain previous in chain previous next next in chain last in chain last

Re: [COLD] FIX: $english_lib:indef_article(), ColdCore 3.0a9.02

daemon@ATHENA.MIT.EDU (Fri Aug 29 01:35:08 1997 )

To: "Luther, Clay" <clay@selsius.com>
cc: "ColdStuff Mailing List (E-mail)" <coldstuff@cold.org>
In-reply-to: Your message of "Thu, 28 Aug 1997 22:25:03 CDT."
             <D17232971415D11196C700600819851547E1@raphaelo.paradise.selsius.com> 
Date: Thu, 28 Aug 1997 22:27:31 -0700
From: Brad Roberts <braddr@puremagic.com>

> @program $english_lib.vowel_exception() +access=pub
>   arg word;
>   var prefix, word1;
>   
>   word1 = split(word, "\s+")[1];

I'd use: word1 = word.word(1);

>   return match_regexp(word1, vowel_exceptions) ? 1 : 0;
>   
>   // $#Edited: 28 Aug 97 22:19 $user_cle
>   // $#Edited: 28 Aug 97 22:21 $user_cle
>