Revision: 9982 http://pure-data.svn.sourceforge.net/pure-data/?rev=9982&view=rev Author: zmoelnig Date: 2008-06-12 01:17:27 -0700 (Thu, 12 Jun 2008)
Log Message: ----------- changed verbose message to refer to the originating object
Modified Paths: -------------- trunk/externals/zexy/src/matchbox.c
Modified: trunk/externals/zexy/src/matchbox.c =================================================================== --- trunk/externals/zexy/src/matchbox.c 2008-06-11 13:57:53 UTC (rev 9981) +++ trunk/externals/zexy/src/matchbox.c 2008-06-12 08:17:27 UTC (rev 9982) @@ -194,7 +194,7 @@ } case ']' : case '}' : - z_verbose(1, "Spurious %c in pattern ".../%s/..."",pattern[0], theWholePattern); + z_verbose(1, "[matchbox]: spurious %c in OSC-pattern ".../%s/..."",pattern[0], theWholePattern); return FALSE; case '[' : return OSC_MatchBrackets (pattern,test, theWholePattern); @@ -225,7 +225,7 @@ const char *p = pattern;
if (pattern[1] == 0) { - z_verbose(1, "Unterminated [ in pattern ".../%s/..."", theWholePattern); + z_verbose(1, "[matchbox]: unterminated [ in OSC-pattern ".../%s/..."", theWholePattern); return FALSE; }
@@ -236,7 +236,7 @@
while (*p != ']') { if (*p == 0) { - z_verbose(1, "Unterminated [ in pattern ".../%s/..."", theWholePattern); + z_verbose(1, "[matchbox]: unterminated [ in OSC-pattern ".../%s/..."", theWholePattern); return FALSE; } if (p[1] == '-' && p[2] != 0) { @@ -261,7 +261,7 @@
while (*p != ']') { if (*p == 0) { - z_verbose(1, "Unterminated [ in pattern ".../%s/..."", theWholePattern); + z_verbose(1, "[matchbox]: unterminated [ in OSC-pattern ".../%s/..."", theWholePattern); return FALSE; } p++; @@ -276,7 +276,7 @@
for(restOfPattern = pattern; *restOfPattern != '}'; restOfPattern++) { if (*restOfPattern == 0) { - z_verbose(1, "Unterminated { in pattern ".../%s/..."", theWholePattern); + z_verbose(1, "[matchbox]: unterminated { in OSC-pattern ".../%s/..."", theWholePattern); return FALSE; } } @@ -551,7 +551,7 @@ /* 1st match, whether we already have this entry */ if(matchlistlist(0, x->x_lists, argc, argv, MATCHBOX_EXACT, FALSE)) { /* already there, skip the rest */ - z_verbose(1, "this list is already in the buffer!, skipping..."); + z_verbose(1, "[matchbox]: refusing to add already existing list to buffer..."); return; }
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.