diff options
author | hobbs <hobbs> | 2004-10-05 01:26:09 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2004-10-05 01:26:09 (GMT) |
commit | bdbbd44f5ecfdef44242a059886d3ee31a840af3 (patch) | |
tree | 6fcd2c267e54c7505fd79612b8f41ec6c7cd7e53 /generic/tkUndo.c | |
parent | 0ad6f30a4743fdc26a62d4c0c8d677519f85b8c7 (diff) | |
download | tk-bdbbd44f5ecfdef44242a059886d3ee31a840af3.zip tk-bdbbd44f5ecfdef44242a059886d3ee31a840af3.tar.gz tk-bdbbd44f5ecfdef44242a059886d3ee31a840af3.tar.bz2 |
fix init warnings
Diffstat (limited to 'generic/tkUndo.c')
-rw-r--r-- | generic/tkUndo.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/generic/tkUndo.c b/generic/tkUndo.c index 881bf28..0ddbdc5 100644 --- a/generic/tkUndo.c +++ b/generic/tkUndo.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: tkUndo.c,v 1.5 2004/09/10 12:13:42 vincentdarley Exp $ + * RCS: @(#) $Id: tkUndo.c,v 1.6 2004/10/05 01:26:10 hobbs Exp $ */ #include "tkUndo.h" @@ -642,21 +642,21 @@ TkUndoApply(stack) *---------------------------------------------------------------------- */ -static int +static int EvaluateActionList(interp, action) Tcl_Interp *interp; /* Interpreter to evaluate the action in. */ TkUndoSubAtom *action; /* Head of linked list of action steps * to perform. */ { - int result; - + int result = TCL_OK; + while (action != NULL) { if (action->funcPtr != NULL) { - result = (*action->funcPtr)(interp, action->clientData, + result = (*action->funcPtr)(interp, action->clientData, action->action); } else if (action->command != NULL) { Tcl_Obj *cmdNameObj, *evalObj; - + cmdNameObj = Tcl_NewObj(); evalObj = Tcl_NewObj(); Tcl_IncrRefCount(evalObj); |