[1348] 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 00:02:22 1997 )

From: "Luther, Clay" <clay@selsius.com>
To: "ColdStuff Mailing List (E-mail)" <coldstuff@cold.org>
Date: Thu, 28 Aug 1997 22:55:50 -0500

It appears that the mailing list consumed some of the patch listing:

I will try again below:


| @program $english_lib.vowel_exception() +access=pub
|  arg word;
|   var prefix, word1;
|   
|   word1 = split(word, "\s+")[1];
|   return match_regexp(word1, vowel_exceptions) ? 1 : 0;
|   
| .



| @program $english_lib.nonvowel_exception() +access=pub
|   arg word;
|   var prefix, word1;
|   
|   word1 = split(word, "\s+")[1];
|   return match_regexp(word1, nonvowel_exceptions) ? 1 : 0;
| . 

---
Clay Luther
clay@selsius.com


> -----Original Message-----
> From:	Luther, Clay [SMTP:clay@selsius.com]
> Sent:	Thursday, August 28, 1997 10:25 PM
> To:	ColdStuff Mailing List (E-mail)
> Subject:	[COLD] FIX: $english_lib:indef_article(), ColdCore
> 3.0a9.02
> 
> Here is a fix for the small bug in ColdCore 3.0a9.02
> $english_lib:indef_article().
> 
> Problem Occurs:
> 
> This problem was found while trying to @rename an object.
>