summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2005-08-23 23:04:42 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2005-08-23 23:04:42 (GMT)
commit188e67ee2b08d7869fe3e6c48532f8d7f5578c57 (patch)
treeab9e2230c7ea0b35ab9b0cd97f9ee4e7b0b3d49f
parent5e02c0866c025bb53b351b38b6abef70444c4775 (diff)
downloadtk-188e67ee2b08d7869fe3e6c48532f8d7f5578c57.zip
tk-188e67ee2b08d7869fe3e6c48532f8d7f5578c57.tar.gz
tk-188e67ee2b08d7869fe3e6c48532f8d7f5578c57.tar.bz2
Punctuation fix in error message.
-rw-r--r--ChangeLog31
-rw-r--r--tests/text.test4
2 files changed, 18 insertions, 17 deletions
diff --git a/ChangeLog b/ChangeLog
index e3c93bb..4c6ae7c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-08-24 Donal K. Fellows <dkf@users.sf.net>
+
+ * tests/text.test (text-8.18): Fix punctuation of error message to
+ match good practice (actual message already fixed). [Bug 1267484]
+
2005-08-23 Jeff Hobbs <jeffh@ActiveState.com>
* macosx/tkMacOSXDialog.c: make dialogs ignore -initialfile "" and
@@ -5,29 +10,25 @@
2005-08-23 Mo DeJong <mdejong@users.sourceforge.net>
- * win/tkWin32Dll.c (DllMain): Replace old asm SEH
- approach with Kenny's new SEH implementation.
- [Tcl bug 1235544]
+ * win/tkWin32Dll.c (DllMain): Replace old asm SEH approach with
+ Kenny's new SEH implementation. [Tcl bug 1235544]
2005-08-23 Mo DeJong <mdejong@users.sourceforge.net>
* unix/Makefile.in: Subst BUILD_TCLSH and TCL_EXE.
* unix/configure: Regen.
- * unix/configure.in: Update minimum autoconf version
- to 2.59. Invoke SC_PROG_TCLSH and SC_BUILD_TCLSH.
+ * unix/configure.in: Update minimum autoconf version to 2.59. Invoke
+ SC_PROG_TCLSH and SC_BUILD_TCLSH.
* unix/tcl.m4 (SC_PROG_TCLSH, SC_BUILD_TCLSH):
* win/Makefile.in: Subst BUILD_TCLSH and TCL_EXE.
* win/configure: Regen.
- * win/configure.in: Update minimum autoconf version
- to 2.59. Invoke SC_BUILD_TCLSH.
- * win/tcl.m4 (SC_PROG_TCLSH, SC_BUILD_TCLSH):
- Split confused search for tclsh on PATH and
- build and install locations into two macros.
- SC_PROG_TCLSH searches just the PATH.
- SC_BUILD_TCLSH determines the name of the tclsh
- executable in the Tcl build directory.
- [Tcl bug 1160114]
- [Tcl patch 1244153]
+ * win/configure.in: Update minimum autoconf version to 2.59. Invoke
+ SC_BUILD_TCLSH.
+ * win/tcl.m4 (SC_PROG_TCLSH, SC_BUILD_TCLSH): Split confused
+ search for tclsh on PATH and build and install locations into two
+ macros. SC_PROG_TCLSH searches just the PATH. SC_BUILD_TCLSH
+ determines the name of the tclsh executable in the Tcl build
+ directory. [Tcl bug 1160114] [Tcl patch 1244153]
2005-08-22 Daniel Steffen <das@users.sourceforge.net>
diff --git a/tests/text.test b/tests/text.test
index 306dee4..e25e71b 100644
--- a/tests/text.test
+++ b/tests/text.test
@@ -6,7 +6,7 @@
# Copyright (c) 1998-1999 by Scriptics Corporation.
# All rights reserved.
#
-# RCS: @(#) $Id: text.test,v 1.38 2005/04/04 21:59:00 vincentdarley Exp $
+# RCS: @(#) $Id: text.test,v 1.39 2005/08/23 23:04:42 dkf Exp $
package require tcltest 2.1
eval tcltest::configure $argv
@@ -330,7 +330,7 @@ test text-8.17 {TextWidgetCmd procedure, "replace" option} {
} {1 {wrong # args: should be ".t replace index1 index2 chars ?tagList chars tagList ...?"}}
test text-8.18 {TextWidgetCmd procedure, "replace" option} {
list [catch {.t replace 3.1 2.3 foo} err] $err
-} {1 {Index "2.3" before "3.1" in the text.}}
+} {1 {Index "2.3" before "3.1" in the text}}
test text-8.19 {TextWidgetCmd procedure, "replace" option} {
list [catch {.t replace 2.1 2.3 foo} err] $err
} {0 {}}