diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2007-04-11 17:55:46 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2007-04-11 17:55:46 (GMT) |
commit | e35cdc987705bc9904dfbc30078392ce7e1af7ae (patch) | |
tree | 0db259915bef95b0e629f478acc9e0fb288d92ba | |
parent | df9a5d0effa8f6496703bbc7d67100e9a1d0890b (diff) | |
download | tcl-e35cdc987705bc9904dfbc30078392ce7e1af7ae.zip tcl-e35cdc987705bc9904dfbc30078392ce7e1af7ae.tar.gz tcl-e35cdc987705bc9904dfbc30078392ce7e1af7ae.tar.bz2 |
removed stray '//'
-rw-r--r-- | generic/tclExecute.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c index 639f80f..b296e5c 100644 --- a/generic/tclExecute.c +++ b/generic/tclExecute.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: tclExecute.c,v 1.274 2007/04/11 17:35:32 msofer Exp $ + * RCS: @(#) $Id: tclExecute.c,v 1.275 2007/04/11 17:55:46 msofer Exp $ */ #include "tclInt.h" @@ -653,7 +653,7 @@ TclStackAlloc( * Reserve the space in the exec stack, and store the data for freeing. */ - eePtr->tosPtr += numWords;// + eePtr->tosPtr += numWords; *(eePtr->tosPtr-1) = (Tcl_Obj *) stackRefCountPtr; *(eePtr->tosPtr) = (Tcl_Obj *) INT2PTR(numWords); |