diff options
author | kjnash <k.j.nash@usa.net> | 2022-08-31 14:28:57 (GMT) |
---|---|---|
committer | kjnash <k.j.nash@usa.net> | 2022-08-31 14:28:57 (GMT) |
commit | 19f8c3bb6b2aa8d571a7534b588ddacfb49952d3 (patch) | |
tree | 5051f34456c20c798d30e7741fae52575927fd7a /unix/tclLoadDl.c | |
parent | d9b5be0959a8ee2b81ba519ff3d4c70b2da9a6ce (diff) | |
parent | ff1e919a1bae9ff88ab6dbc094b18cfadedfe8af (diff) | |
download | tcl-19f8c3bb6b2aa8d571a7534b588ddacfb49952d3.zip tcl-19f8c3bb6b2aa8d571a7534b588ddacfb49952d3.tar.gz tcl-19f8c3bb6b2aa8d571a7534b588ddacfb49952d3.tar.bz2 |
Merge old 8.7 674a6ad0472c7
Diffstat (limited to 'unix/tclLoadDl.c')
-rw-r--r-- | unix/tclLoadDl.c | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/unix/tclLoadDl.c b/unix/tclLoadDl.c index 07fd30b..2a09037 100644 --- a/unix/tclLoadDl.c +++ b/unix/tclLoadDl.c @@ -260,34 +260,6 @@ UnloadFile( } /* - *---------------------------------------------------------------------- - * - * TclGuessPackageName -- - * - * If the "load" command is invoked without providing a package name, - * this procedure is invoked to try to figure it out. - * - * Results: - * Always returns 0 to indicate that we couldn't figure out a package - * name; generic code will then try to guess the package from the file - * name. A return value of 1 would have meant that we figured out the - * package name and put it in bufPtr. - * - * Side effects: - * None. - * - *---------------------------------------------------------------------- - */ - -int -TclGuessPackageName( - TCL_UNUSED(const char *) /*fileName*/, - TCL_UNUSED(Tcl_DString *)) -{ - return 0; -} - -/* * Local Variables: * mode: c * c-basic-offset: 4 |