diff options
author | hobbs <hobbs> | 2000-01-24 02:29:57 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-01-24 02:29:57 (GMT) |
commit | 5c9fad7cc43d58cfd041aa40602c94693debe602 (patch) | |
tree | b692e597cc955c3e8638ce2fed09953390788370 /generic/tclInt.h | |
parent | e75bb1f59bc6a1d44daa865b8a15416f8a7a9175 (diff) | |
download | tcl-5c9fad7cc43d58cfd041aa40602c94693debe602.zip tcl-5c9fad7cc43d58cfd041aa40602c94693debe602.tar.gz tcl-5c9fad7cc43d58cfd041aa40602c94693debe602.tar.bz2 |
* generic/tclInt.h:
* generic/tcl.decls: moved Tcl_ProcObjCmd to stubs table [Bug: 3827]
and removed 'register' from stub definition of
Tcl_AppendUnicodeToObj [Bug: 4038]
* generic/tclFileName.c: improved guessing of path separator
for the Mac. (Darley)
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 92f8985..4b2176a 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclInt.h,v 1.39 1999/12/12 22:46:42 hobbs Exp $ + * RCS: @(#) $Id: tclInt.h,v 1.40 2000/01/24 02:29:58 hobbs Exp $ */ #ifndef _TCLINT @@ -1947,8 +1947,6 @@ EXTERN int Tcl_PackageObjCmd _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])); EXTERN int Tcl_PidObjCmd _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])); -EXTERN int Tcl_ProcObjCmd _ANSI_ARGS_((ClientData clientData, - Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])); EXTERN int Tcl_PutsObjCmd _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[])); EXTERN int Tcl_PwdObjCmd _ANSI_ARGS_((ClientData clientData, |