From b465fd7d2b2b02085bc201ee8036c7a7e9b31baf Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Fri, 14 Nov 2008 13:44:47 +0100 Subject: [PATCH] luaa: rename luaA_deprecate() Signed-off-by: Julien Danjou --- luaa.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luaa.h b/luaa.h index 0d61fd3a5..469847d24 100644 --- a/luaa.h +++ b/luaa.h @@ -35,7 +35,7 @@ /** Type for Lua function */ typedef int luaA_ref; -#define deprecate(L, repl) \ +#define luaA_deprecate(L, repl) \ luaA_warn(L, "%s: This function is deprecated and will be removed, see %s", \ __FUNCTION__, repl)