diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2013-10-20 18:44:22 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2013-10-20 18:44:22 (GMT) |
commit | c82e0deccaa9e752ec6ba8c53fe81d2a410ce529 (patch) | |
tree | a54217a116100c7326fa1745091bea13b3727a0b /generic/tclOO.h | |
parent | ed5a6c598b93838fa631c454cc0bb1af031d3c88 (diff) | |
parent | ff83c9993b14e1a40c0003bbda71dbbf2fe79a98 (diff) | |
download | tcl-c82e0deccaa9e752ec6ba8c53fe81d2a410ce529.zip tcl-c82e0deccaa9e752ec6ba8c53fe81d2a410ce529.tar.gz tcl-c82e0deccaa9e752ec6ba8c53fe81d2a410ce529.tar.bz2 |
merge trunk
Diffstat (limited to 'generic/tclOO.h')
-rw-r--r-- | generic/tclOO.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/generic/tclOO.h b/generic/tclOO.h index 41be168..a6e8a22 100644 --- a/generic/tclOO.h +++ b/generic/tclOO.h @@ -37,13 +37,12 @@ extern "C" { #endif -#if (defined(USE_TCLOO_STUBS) || defined(USE_TCL_STUBS)) extern const char *TclOOInitializeStubs( Tcl_Interp *, const char *version); #define Tcl_OOInitStubs(interp) \ TclOOInitializeStubs((interp), TCLOO_VERSION) -#else -#define Tcl_OOInitStubs(interp) (TCLOO_PATCHLEVEL) +#ifndef USE_TCL_STUBS +# define TclOOInitializeStubs(interp, version) (TCLOO_PATCHLEVEL) #endif /* |