diff options
author | ericm <ericm> | 2000-08-03 21:02:19 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-08-03 21:02:19 (GMT) |
commit | 028fd3679535d4b97a8f3fa248a61e97249441a5 (patch) | |
tree | 5af873be4a2bf0f9e0eef21003893de3571d64bf /generic/tkWindow.c | |
parent | 0cdb0677540aa8995226f52ec82b9037920b6d29 (diff) | |
download | tk-028fd3679535d4b97a8f3fa248a61e97249441a5.zip tk-028fd3679535d4b97a8f3fa248a61e97249441a5.tar.gz tk-028fd3679535d4b97a8f3fa248a61e97249441a5.tar.bz2 |
* generic/tkInt.h: Replace Tk_BindCmd prototype with
Tk_BindObjCmd prototype.
* generic/tkWindow.c: Updated "bind" command entry to use
Tcl_Obj'ified command.
* generic/tkCmds.c (Tk_BindObjCmd): Tcl_Obj'ified [bind] command.
Diffstat (limited to 'generic/tkWindow.c')
-rw-r--r-- | generic/tkWindow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkWindow.c b/generic/tkWindow.c index 7712570..f03f946 100644 --- a/generic/tkWindow.c +++ b/generic/tkWindow.c @@ -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: tkWindow.c,v 1.21 2000/08/03 20:36:16 ericm Exp $ + * RCS: @(#) $Id: tkWindow.c,v 1.22 2000/08/03 21:02:20 ericm Exp $ */ #include "tkPort.h" @@ -98,7 +98,7 @@ static TkCmd commands[] = { */ {"bell", NULL, Tk_BellObjCmd, 0, 1}, - {"bind", Tk_BindCmd, NULL, 1, 1}, + {"bind", NULL, Tk_BindObjCmd, 1, 1}, {"bindtags", NULL, Tk_BindtagsObjCmd, 1, 1}, {"clipboard", NULL, Tk_ClipboardObjCmd, 0, 1}, {"destroy", NULL, Tk_DestroyObjCmd, 1, 1}, |