summaryrefslogtreecommitdiffstats
path: root/generic/tkEntry.c
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2008-10-09 15:17:44 (GMT)
committerdgp@users.sourceforge.net <dgp>2008-10-09 15:17:44 (GMT)
commit8852d892d8b87f5ea912ac89ba9b16fdd2b2af29 (patch)
treeb52748ff8bae22bda3dfd71517ee546dcdccdf1c /generic/tkEntry.c
parent7948114a00cbb067d9fd922efbce1010bec9813e (diff)
downloadtk-8852d892d8b87f5ea912ac89ba9b16fdd2b2af29.zip
tk-8852d892d8b87f5ea912ac89ba9b16fdd2b2af29.tar.gz
tk-8852d892d8b87f5ea912ac89ba9b16fdd2b2af29.tar.bz2
* tests/canvText.test: Backport test updates in light of the
2008-10-05 commit. * generic/tkEntry.c: Fix missing space constructing the scroll command.
Diffstat (limited to 'generic/tkEntry.c')
-rw-r--r--generic/tkEntry.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tkEntry.c b/generic/tkEntry.c
index 3ba727f..3694375 100644
--- a/generic/tkEntry.c
+++ b/generic/tkEntry.c
@@ -14,7 +14,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkEntry.c,v 1.47.2.1 2008/10/05 11:34:46 dkf Exp $
+ * RCS: @(#) $Id: tkEntry.c,v 1.47.2.2 2008/10/09 15:17:44 dgp Exp $
*/
#include "tkInt.h"
@@ -2944,8 +2944,8 @@ EntryUpdateScrollbar(
EntryVisibleRange(entryPtr, &first, &last);
Tcl_PrintDouble(NULL, first, firstStr);
Tcl_PrintDouble(NULL, last, lastStr);
- code = Tcl_VarEval(interp, entryPtr->scrollCmd, firstStr, " ", lastStr,
- NULL);
+ code = Tcl_VarEval(interp, entryPtr->scrollCmd, " ", firstStr, " ",
+ lastStr, NULL);
if (code != TCL_OK) {
Tcl_AddErrorInfo(interp,
"\n (horizontal scrolling command executed by ");