summaryrefslogtreecommitdiffstats
path: root/generic/ChangeLog
diff options
context:
space:
mode:
authorstanton <stanton>1998-11-24 21:56:01 (GMT)
committerstanton <stanton>1998-11-24 21:56:01 (GMT)
commit159c2988058c79f38a3d820dbb5cea3f8b5abc34 (patch)
tree84cca780b9e6747d4a45d37a5e90b94548984b12 /generic/ChangeLog
parent9a335d2e41e9519c7a5f9bfc9dd1cffab8550a04 (diff)
downloadtcl-159c2988058c79f38a3d820dbb5cea3f8b5abc34.zip
tcl-159c2988058c79f38a3d820dbb5cea3f8b5abc34.tar.gz
tcl-159c2988058c79f38a3d820dbb5cea3f8b5abc34.tar.bz2
moved ChangeLog entries to top level
Diffstat (limited to 'generic/ChangeLog')
-rw-r--r--generic/ChangeLog60
1 files changed, 0 insertions, 60 deletions
diff --git a/generic/ChangeLog b/generic/ChangeLog
deleted file mode 100644
index b084823..0000000
--- a/generic/ChangeLog
+++ /dev/null
@@ -1,60 +0,0 @@
-1998-11-23 <stanton@GASPODE>
-
- * regexec.c: more performance tuning from Henry Spencer.
-
-1998-11-17 <stanton@GASPODE>
-
- * tclScan.c: moved "scan" implementation out of tclCmdMZ.c and
- added Unicode support. This required a complete reimplementation
- of the command to avoid using scanf(), which isn't Unicode aware.
- Two new features were added in the process: %n to return the
- current number of characters consumed, and XPG3-style %n$ argument
- order specifiers similar to those provided by the "format"
- command. [Bug: 833]
-
- * tclAlloc.c: changed so allocated memory is always 8-byte aligned
- to improve memory performance and to ensure that it will work on
- systems that don't like accessing 4-byte aligned values
- (e.g. Solaris and HP-UX). [Bug: 834]
-
-1998-11-06 <stanton@GASPODE>
-
- * tclVar.c (TclGetIndexedScalar): Fixed bug 796, var name was
- getting lost before being passed to CallTraces.
-
-1998-10-21 <stanton@GASPODE>
-
- * added "encoding" command
-
- * Moved internal regexp declarations from tclInt.h to tclRegexp.h
-
- * integrated regexp updates from Henry Spencer
-
-1998-10-15 <stanton@GASPODE>
-
- * tclUtf.c: added Unicode character table support
-
- * tclInt.h: added TclUniCharIsWordChar
-
- * tclCmdMZ.c (Tcl_StringObjCmd): added "totitle" subcommand,
- changed "wordend" and "wordstart" to properly handle Unicode word
- characters and connector punctuation
-
-1998-10-05 <stanton@GASPODE>
-
- * tclCompile.c (TclCompileScript): changed to avoid modifying the
- input string in place because name lookup operations could have
- arbitrary side effects
-
- * tclInterp.c: added guard against deleting current interpreter
-
- * tclFileName.c: added warnings around code that modifies strings
- in place
-
- * tclExecute.c: fixed off-by-one copying error, fixed merge bugs
-
- * tclEvent.c: changed so USE_TCLALLOC is tested for value instead
- of definition
-
- * tclCompCmds.c: replaced SCCS strings, added warnings around code
- that modifies strings in place