diff options
| author | Miguel Sofer <miguel.sofer@gmail.com> | 2008-07-14 01:27:25 (GMT) |
|---|---|---|
| committer | Miguel Sofer <miguel.sofer@gmail.com> | 2008-07-14 01:27:25 (GMT) |
| commit | 7ec7e025289cb84d539abd8f96852fc527f9bae1 (patch) | |
| tree | 891580f761a58710cad4ad3d72784c70a59f190a | |
| parent | b55819f09f00a162702ab15e707ff135637316d4 (diff) | |
| download | tcl-7ec7e025289cb84d539abd8f96852fc527f9bae1.zip tcl-7ec7e025289cb84d539abd8f96852fc527f9bae1.tar.gz tcl-7ec7e025289cb84d539abd8f96852fc527f9bae1.tar.bz2 | |
* generic/tclVar.c: fix error message
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | generic/tclVar.c | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -1,5 +1,7 @@ 2008-07-14 Miguel Sofer <msofer@users.sf.net> + * generic/tclVar.c: fix error message + * generic/tclParse.c: * tests/parse.test: remove unnecessary numLevel management [Bug 2017583] diff --git a/generic/tclVar.c b/generic/tclVar.c index 6279064..8670c24 100644 --- a/generic/tclVar.c +++ b/generic/tclVar.c @@ -16,7 +16,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclVar.c,v 1.163 2008/06/06 19:46:37 andreas_kupries Exp $ + * RCS: @(#) $Id: tclVar.c,v 1.164 2008/07/14 01:27:25 msofer Exp $ */ #include "tclInt.h" @@ -3945,7 +3945,7 @@ Tcl_VariableObjCmd( Tcl_Obj *varNamePtr, *tailPtr; if (objc < 2) { - Tcl_WrongNumArgs(interp, 1, objv, "?name value...? name ?value?"); + Tcl_WrongNumArgs(interp, 1, objv, "?name value ...? name ?value?"); return TCL_ERROR; } |
