diff options
author | redman <redman> | 1999-08-02 17:45:33 (GMT) |
---|---|---|
committer | redman <redman> | 1999-08-02 17:45:33 (GMT) |
commit | 28cb778fa903f381fb65fe996eb2b51268977123 (patch) | |
tree | 4a9bbeb221aaaa7eb6a3c3030bd6ded637df64f3 /generic/tclStubInit.c | |
parent | 82389cfbf44c58aa0eacc14452ff199223e1cb99 (diff) | |
download | tcl-28cb778fa903f381fb65fe996eb2b51268977123.zip tcl-28cb778fa903f381fb65fe996eb2b51268977123.tar.gz tcl-28cb778fa903f381fb65fe996eb2b51268977123.tar.bz2 |
* generic/tcl.h:
* generic/tcl.decls:
* generic/tclDecls.h:
* generic/tclInt.h:
* generic/tclInt.decls:
* generic/tclIntDecls.h:
* generic/tclRegexp.h:
* generic/tclStubInit.c: Move some exported public and internal
functions to the stub tables. Removed functions that are in the
stub tables (from this and previous changes) from the original
header files.
Diffstat (limited to 'generic/tclStubInit.c')
-rw-r--r-- | generic/tclStubInit.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index 4dfa544..9c1cf74 100644 --- a/generic/tclStubInit.c +++ b/generic/tclStubInit.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: tclStubInit.c,v 1.24 1999/08/01 20:44:12 hobbs Exp $ + * RCS: @(#) $Id: tclStubInit.c,v 1.25 1999/08/02 17:45:38 redman Exp $ */ #include "tclInt.h" @@ -231,6 +231,7 @@ TclIntStubs tclIntStubs = { TclGetLibraryPath, /* 153 */ TclTestChannelCmd, /* 154 */ TclTestChannelEventCmd, /* 155 */ + TclRegError, /* 156 */ }; TclIntPlatStubs tclIntPlatStubs = { @@ -779,6 +780,7 @@ TclStubs tclStubs = { Tcl_AppendUnicodeToObj, /* 384 */ Tcl_RegExpMatchObj, /* 385 */ Tcl_SetNotifier, /* 386 */ + Tcl_RegExpMatchObj, /* 387 */ }; /* !END!: Do not edit above this line. */ |