summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--generic/tk.h3
-rw-r--r--generic/tkInt.h4
3 files changed, 9 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 5ae81d7..609dfb5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2000-08-03 Eric Melski <ericm@ajubasolutions.com>
+ * generic/tkInt.h: Removed Tk_AfterCmd function prototype; the
+ function does not exist (since 7.4p3).
+
+ * generic/tk.h: Removed Tk_AfterCmd => Tcl_AfterCmd #define;
+ nothing in the core uses it, and Tcl_AfterCmd doesn't exist
+ anymore anyway.
+
* generic/tkInt.h: Replace Tk_BindCmd prototype with
Tk_BindObjCmd prototype.
diff --git a/generic/tk.h b/generic/tk.h
index d833b25..29105e0 100644
--- a/generic/tk.h
+++ b/generic/tk.h
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tk.h,v 1.45 2000/06/03 08:58:15 hobbs Exp $
+ * RCS: @(#) $Id: tk.h,v 1.46 2000/08/03 21:14:30 ericm Exp $
*/
#ifndef _TK
@@ -1298,7 +1298,6 @@ EXTERN void Tk_CreateOldPhotoImageFormat _ANSI_ARGS_((
/* Additional stuff that has moved to Tcl: */
-#define Tk_AfterCmd Tcl_AfterCmd
#define Tk_EventuallyFree Tcl_EventuallyFree
#define Tk_FreeProc Tcl_FreeProc
#define Tk_Preserve Tcl_Preserve
diff --git a/generic/tkInt.h b/generic/tkInt.h
index 5e5bd99..8b67693 100644
--- a/generic/tkInt.h
+++ b/generic/tkInt.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: tkInt.h,v 1.29 2000/08/03 21:02:19 ericm Exp $
+ * RCS: $Id: tkInt.h,v 1.30 2000/08/03 21:14:30 ericm Exp $
*/
#ifndef _TKINT
@@ -887,8 +887,6 @@ extern int tkSendSerial;
* to the outside world:
*/
-EXTERN int Tk_AfterCmd _ANSI_ARGS_((ClientData clientData,
- Tcl_Interp *interp, int argc, char **argv));
EXTERN int Tk_BellObjCmd _ANSI_ARGS_((ClientData clientData,
Tcl_Interp *interp, int objc,
Tcl_Obj *CONST objv[]));