[svn:parrot] r45578 - branches/stringnull/include/parrot

plobsing at svn.parrot.org plobsing at svn.parrot.org
Mon Apr 12 03:21:23 UTC 2010


Author: plobsing
Date: Mon Apr 12 03:21:22 2010
New Revision: 45578
URL: https://trac.parrot.org/parrot/changeset/45578

Log:
define STRINGNULL when CATCH_NULL is disabled

Modified:
   branches/stringnull/include/parrot/interpreter.h

Modified: branches/stringnull/include/parrot/interpreter.h
==============================================================================
--- branches/stringnull/include/parrot/interpreter.h	Mon Apr 12 03:10:56 2010	(r45577)
+++ branches/stringnull/include/parrot/interpreter.h	Mon Apr 12 03:21:22 2010	(r45578)
@@ -347,7 +347,7 @@
 #  define STRING_IS_NULL(s) ((s) == STRINGNULL || (s) == NULL)
 #else
 #  define PMCNULL ((PMC *)NULL)
-#  define PMCNULL ((PMC *)NULL)
+#  define STRINGNULL ((STRING *)NULL)
 #  define PMC_IS_NULL(pmc)       ((pmc) == NULL)
 #  define STRING_IS_NULL(string) ((string) == NULL)
 #endif /* PARROT_CATCH_NULL */


More information about the parrot-commits mailing list