Greg Stein wrote: > On Apr 24, 2012 11:51 AM, <julianf...@apache.org> wrote: >> /** Handy macro for testing string equality. >> + * EXPR and/or EXPECTED_EXPR may be NULL. >> */ >... may be NULL, indicating failure.
No, I mean NULL is now a valid value to expect and test for. I changed the doc string to: /** Handy macro for testing string equality. * * EXPR and/or EXPECTED_EXPR may be NULL which compares equal to NULL and * not equal to any non-NULL string. */ in r1330135. - Julian