summaryrefslogtreecommitdiffstats
path: root/generic/tclOOMethod.c
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2008-07-18 23:29:41 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2008-07-18 23:29:41 (GMT)
commit05ee62d96f55adfce2725b9746b6c8b0557989ee (patch)
tree280786ed54f598938301797f6f922caec6fa26b5 /generic/tclOOMethod.c
parent7c31170f9b9f73628665a5656daddd8002c771f7 (diff)
downloadtcl-05ee62d96f55adfce2725b9746b6c8b0557989ee.zip
tcl-05ee62d96f55adfce2725b9746b6c8b0557989ee.tar.gz
tcl-05ee62d96f55adfce2725b9746b6c8b0557989ee.tar.bz2
new TclNRAddCallback macro for internal use instead of the public
Tcl_NRAddCallback
Diffstat (limited to 'generic/tclOOMethod.c')
-rw-r--r--generic/tclOOMethod.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclOOMethod.c b/generic/tclOOMethod.c
index 7ef07e2..3afe314 100644
--- a/generic/tclOOMethod.c
+++ b/generic/tclOOMethod.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclOOMethod.c,v 1.7 2008/07/18 13:46:46 msofer Exp $
+ * RCS: @(#) $Id: tclOOMethod.c,v 1.8 2008/07/18 23:29:44 msofer Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -682,7 +682,7 @@ InvokeProcedureMethod(
* Now invoke the body of the method.
*/
- Tcl_NRAddCallback(interp, FinalizePMCall, pmPtr, context, fdPtr, NULL);
+ TclNRAddCallback(interp, FinalizePMCall, pmPtr, context, fdPtr, NULL);
return TclNRInterpProcCore(interp, fdPtr->nameObj,
Tcl_ObjectContextSkippedArgs(context), fdPtr->errProc);
}