diff options
author | dgp <dgp@users.sourceforge.net> | 2004-10-07 00:14:21 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-10-07 00:14:21 (GMT) |
commit | a9197abf6da5d9cd058ca2c0fa091b4fbf02b848 (patch) | |
tree | 5c239e10514af4c12a6cfbd2680e56e96c5675b9 /win | |
parent | bee4adb127d757cf306d1317b48b5610b0f18296 (diff) | |
download | tcl-a9197abf6da5d9cd058ca2c0fa091b4fbf02b848.zip tcl-a9197abf6da5d9cd058ca2c0fa091b4fbf02b848.tar.gz tcl-a9197abf6da5d9cd058ca2c0fa091b4fbf02b848.tar.bz2 |
typo fix
Diffstat (limited to 'win')
-rw-r--r-- | win/tclWinReg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinReg.c b/win/tclWinReg.c index ca1e48e..9b6aec3 100644 --- a/win/tclWinReg.c +++ b/win/tclWinReg.c @@ -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: tclWinReg.c,v 1.30 2004/10/06 17:09:27 dgp Exp $ + * RCS: @(#) $Id: tclWinReg.c,v 1.31 2004/10/07 00:14:21 dgp Exp $ */ #include "tclInt.h" @@ -555,7 +555,7 @@ DeleteValue( result = (*regWinProcs->regDeleteValueProc)(key, Tcl_DStringValue(&ds)); Tcl_DStringFree(&ds); if (result != ERROR_SUCCESS) { - Tcl_AppendResult("unable to delete value \"", + Tcl_AppendResult(interp, "unable to delete value \"", Tcl_GetString(valueNameObj), "\" from key \"", Tcl_GetString(keyNameObj), "\": ", NULL); AppendSystemError(interp, result); |