summaryrefslogtreecommitdiffstats
path: root/generic/tkEntry.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2008-10-09 15:17:44 (GMT)
committerdgp <dgp@users.sourceforge.net>2008-10-09 15:17:44 (GMT)
commitd4dd7c92ae8e2060999250bd2402fc5814d5b2d7 (patch)
treeb52748ff8bae22bda3dfd71517ee546dcdccdf1c /generic/tkEntry.c
parent199d4675fda94dffe00bafa804ea9f5e38f0891b (diff)
downloadtk-d4dd7c92ae8e2060999250bd2402fc5814d5b2d7.zip
tk-d4dd7c92ae8e2060999250bd2402fc5814d5b2d7.tar.gz
tk-d4dd7c92ae8e2060999250bd2402fc5814d5b2d7.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 ");