In article <[EMAIL PROTECTED]>,
 "Aaron Ardiri" <[EMAIL PROTECTED]> wrote:

> now, is this whole proposition specific to codewarrior? :) 

The purpose I need it for is, but I see no reason the change couldn't be 
made to the base code. It provides utility for everyone who is 
interested in organizing their code a bit more.

Of course, projects using .ranything files wouldn't be so great. But I 
think once pilrc is ready the conventions will arise, like possibly 
searchform.rf for a file that describes only the form associated with 
searchform.c and searchform.h.

I *think* this is a two line change (including comment). I've already 
made it to my copy. I'm checking to see if I broke anything, but I don't 
really see how that's possible. This is pretty clean code. :)

pilrc.c:
          // RCP files only with .rcp extension
          else if (FSzEqI(pchExt, "rcp"))
to:
          // RCP files only with any .r* extension
          else if ((pchExt[0] == 'R') || (pchExt[0] == 'r'))

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/

Reply via email to