From: Martin R. <ru...@us...> - 2010-04-26 15:55:38
|
Update of /cvsroot/foo/fooelk/include In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv13298/include Modified Files: misc.h Log Message: equiv to revision level r279 of original elk: Support for [] delimiters in addition to (), courtesy of Sanel Zukan. Index: misc.h =================================================================== RCS file: /cvsroot/foo/fooelk/include/misc.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** misc.h 26 Apr 2010 15:41:07 -0000 1.2 --- misc.h 26 Apr 2010 15:55:30 -0000 1.3 *************** *** 42,46 **** #define Whitespace(c) (c == ' ' || c == '\t' || c == '\014' || c == '\n' || c == '\r') ! #define Delimiter(c) (c == ';' || c == ')' || c == '(' || c == '"') --- 42,46 ---- #define Whitespace(c) (c == ' ' || c == '\t' || c == '\014' || c == '\n' || c == '\r') ! #define Delimiter(c) (c == ';' || c == ')' || c == '(' || c == '[' || c == ']' || c == '"') |