renamed RET???_UNSET -> RET???_NULL

This commit is contained in:
Thies C. Arntzen 2000-01-02 11:44:33 +00:00
parent 6570dc0e31
commit bc6811ec90

View File

@ -150,7 +150,7 @@ ZEND_API int zend_set_hash_symbol(zval *symbol, char *name, int name_length,
return_value->type = IS_BOOL; \
return_value->value.lval = b; \
}
#define RETVAL_UNSET() { \
#define RETVAL_NULL() { \
return_value->type = IS_UNSET; \
}
#define RETVAL_LONG(l) { \
@ -189,7 +189,7 @@ ZEND_API int zend_set_hash_symbol(zval *symbol, char *name, int name_length,
return; \
}
#define RETURN_UNSET() { \
#define RETURN_NULL() { \
return_value->type = IS_UNSET; \
return; \
}