diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2005-07-28 17:20:41 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2005-07-28 17:20:41 (GMT) |
commit | 88c441da5934cca7cd566d26c8e93d866d6aef86 (patch) | |
tree | 7059b3cb8a224771967b690334e48ddcf7e05040 /generic/tkTextDisp.c | |
parent | f633e0397e300b485da9de349f79ba5aed44a5f9 (diff) | |
download | tk-88c441da5934cca7cd566d26c8e93d866d6aef86.zip tk-88c441da5934cca7cd566d26c8e93d866d6aef86.tar.gz tk-88c441da5934cca7cd566d26c8e93d866d6aef86.tar.bz2 |
Remove unwanted tab from error info trace accidentally inserted during cleanup
Fixes [Bug 1246936]
Diffstat (limited to 'generic/tkTextDisp.c')
-rw-r--r-- | generic/tkTextDisp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkTextDisp.c b/generic/tkTextDisp.c index af07711..5289c94 100644 --- a/generic/tkTextDisp.c +++ b/generic/tkTextDisp.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: tkTextDisp.c,v 1.51 2005/07/25 23:56:54 dkf Exp $ + * RCS: @(#) $Id: tkTextDisp.c,v 1.52 2005/07/28 17:20:41 dkf Exp $ */ #include "tkPort.h" @@ -6178,7 +6178,7 @@ GetYView(interp, textPtr, report) code = Tcl_VarEval(interp, textPtr->yScrollCmd, buf1, buf2, NULL); if (code != TCL_OK) { Tcl_AddErrorInfo(interp, - "\n (vertical scrolling command executed by text)"); + "\n (vertical scrolling command executed by text)"); Tcl_BackgroundError(interp); } } |