ChangeLog.1999
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:89k
源码类别:

通讯编程

开发平台:

Visual C++

  1. 1999-12-22  Jeff Hobbs  <hobbs@scriptics.com>
  2. * changes: updated changes file
  3. * tools/tclSplash.bmp: updated to show 8.3
  4. 1999-12-21  Jeff Hobbs  <hobbs@scriptics.com>
  5. * README:
  6. * generic/tcl.h:
  7. * mac/README:
  8. * unix/configure.in:
  9. * tools/tcl.wse.in:
  10. * win/README.binary:
  11. * win/configure.in: updated to patch level 8.3b1
  12. * unix/Makefile.in: added -srcdir=... for 'make html'
  13. * doc/Hash.3: fixed reference to ckfree [Bug: 3912]
  14. * doc/RegExp.3: fixed calling params for Tcl_RegExecFromObj
  15. * doc/open.n: fixed minor formatting errors
  16. * doc/string.n: fixed minor formatting errors
  17. * doc/lsort.n: added -unique docs
  18. * tests/cmdIL.test:
  19. * generic/tclCmdIL.c: added -unique option to lsort
  20. * generic/tclThreadTest.c: changed thread ids to longs [Bug: 3902]
  21. * mac/tclMacOSA.c: fixed applescript for I18N [Bug: 3644]
  22. * win/mkd.bat:
  23. * win/rmd.bat: removed necessity of tag.txt [Bug: 3874]
  24. * win/tclWinThrd.c: changed CreateThread to _beginthreadex and
  25. ExitThread to _endthreadex
  26. 1999-12-12  Jeff Hobbs  <hobbs@scriptics.com>
  27. * doc/glob.n:
  28. * tests/fileName.test:
  29. * generic/tclInt.decls:
  30. * generic/tclInt.h:
  31. * generic/tclIntDecls.h:
  32. * generic/tclStubInit.c:
  33. * generic/tclEncoding.c:
  34. * generic/tclFileName.c:
  35. * mac/tclMacFile.c:
  36. * unix/tclUnixFile.c:
  37. * win/tclWinFile.c: enhanced the glob command with the new options
  38. -types -path -directory and -join.  Deprecated TclpMatchFiles with
  39. TclpMatchFilesTypes, extended TclGlob and TclDoGlob and added
  40. GlobTypeData structure. [Bug: 2363]
  41. 1999-12-10  Jeff Hobbs  <hobbs@scriptics.com>
  42. * tests/var.test:
  43. * generic/tclCompile.c: fixed problem where setting to {} array
  44. would intermittently not work. (Fontaine) [Bug: 3339]
  45. * generic/tclCmdMZ.c:
  46. * generic/tclExecute.c: optimized INST_TRY_CVT_TO_NUMERIC to
  47. recognize boolean objects. (Spjuth) [Bug: 2815]
  48. * tests/info.test:
  49. * tests/parseOld.test:
  50. * generic/tclCmdAH.c:
  51. * generic/tclProc.c: changed Tcl_UplevelObjCmd (uplevel) and
  52. Tcl_EvalObjCmd (eval) to use TCL_EVAL_DIRECT in the single arg
  53. case as well, to take advantage of potential pure list input
  54. optimization.  This means that it won't get byte compiled though,
  55. which should be acceptable.
  56. * generic/tclBasic.c: made Tcl_EvalObjEx pure list object aware in
  57. the TCL_EVAL_DIRECT case for efficiency.
  58. * generic/tclUtil.c: made Tcl_ConcatObj pure list object aware,
  59. and return a list object in that case [Bug: 2098 2257]
  60. * generic/tclMain.c: changed Tcl_Main to not constantly reuse the
  61. commandPtr object (interactive case) as it could be shared. (Fellows)
  62. * unix/configure.in:
  63. * unix/tcl.m4:
  64. * unix/tclUnixPipe.c: removed checking for compatible vfork
  65. function and use of the vfork function.  Modern VM systems rarely
  66. suffer any performance degradation when fork is used, and it
  67. solves multiple problems with vfork.  Users that still want vfork
  68. can add -Dfork=vfork to the compile flags. [Bug: 942 2228 1312]
  69. 1999-12-09  Jeff Hobbs  <hobbs@scriptics.com>
  70. * win/aclocal.m4: made it just include tcl.m4
  71. * doc/exec.n:
  72. * doc/open.n:
  73. * win/tclWin32Dll.c:
  74. * win/tclWinChan.c:
  75. * win/tclWinFCmd.c:
  76. * win/tclWinInit.c:
  77. * win/tclWinPipe.c:
  78. * win/tclWinSock.c: removed all code that supported Win32s.  It
  79. was no longer officially supported, and likely didn't work anyway.
  80. * win/makefile.vc: removed 16 bit stuff, cleaned up.
  81. * win/tcl16.rc:
  82. * win/tclWin16.c:
  83. * win/winDumpExts.c: these files have been removed from the
  84. source tree (no longer necessary to build)
  85. 1999-12-07  Jeff Hobbs  <hobbs@scriptics.com>
  86. * tests/io.test: removed 'knownBug' tests that were for
  87. unsupported0, which is now fcopy (that already has tests)
  88. * mac/tclMacPort.h: added utime.h include
  89. * generic/tclDate.c:
  90. * unix/Makefile.in: fixed make gendate to swap const with CONST
  91. so it uses the Tcl defined CONST type [Bug: 3521]
  92. * generic/tclIO.c: removed panic that could occur in FlushChannel
  93. when a "blocking" channel would receive EAGAIN, instead treating
  94. it the same as non-blocking. [Bug: 3773]
  95. * generic/tclUtil.c: fixed Tcl_ScanCountedElement to not step
  96. beyond the end of the counted string [Bug: 3336]
  97. 1999-12-03  Jeff Hobbs  <hobbs@scriptics.com>
  98. * doc/load.n: added note about NT's buggy handling of './' with
  99. LoadLibrary
  100. * library/http2.1/http.tcl: fixed error handling in http::Event
  101. [Bug: 3752]
  102. * tests/env.test: removed knownBug limitation from working test
  103. * tests/all.tcl: ensured that ::tcltest::testsDirectory would be
  104. set to an absolute path
  105. * tests/expr-old.test:
  106. * tests/parseExpr.test:
  107. * tests/string.test:
  108. * generic/tclGet.c:
  109. * generic/tclInt.h:
  110. * generic/tclObj.c:
  111. * generic/tclParseExpr.c:
  112. * generic/tclUtil.c:
  113. * generic/tclExecute.c: added TclCheckBadOctal routine to enhance
  114. error message checking for when users use invalid octal numbers
  115. (like 08), as well as replumbed the Expr*Funcs with a new
  116. VerifyExprObjType to simplify type handling. [Bug: 2467]
  117. * tests/expr.test:
  118. * generic/tclCompile.c: fixed 'bad code length' error for
  119. 'expr + {[incr]}' case, with new test case [Bug: 3736]
  120. and seg fault on 'expr + {[error]}' (different cause) that
  121. was caused by a correct optimization that didn't correctly
  122. track how it was modifying the source string in the opt.
  123. The optimization was removed, which means that:
  124. expr 1 + {[string length abc]}
  125. will be not be compiled inline as before, but this should be
  126. written:
  127. expr {1 + [string length abc]}
  128. which will be compiled inline for speed.  This prevents
  129. expr 1 + {[mindless error]}
  130. from seg faulting, and only affects optimizations for
  131. degenerate cases [Bug: 3737]
  132. 1999-12-01  Scott Redman <redman@scriptics.com>
  133. * generic/tcl.decls :
  134. * generic/tclMain.c :
  135. * unix/tclAppInit.c: 
  136. * win/tclAppInit.c: Added two new internal functions,
  137. TclSetStartupScriptFileName() and TclGetStartupScriptFileName()
  138. and added hooks into the main() code for supporting TclPro and
  139. other "big" shells more easily without requiring a copy of the
  140. main() code.
  141. * generic/tclEncoding.c:
  142. * generic/tclEvent.c:  Moved encoding-related startup code from
  143. tclEvent.c into the more appropriate tclEncoding.c.
  144. 1999-11-30  Jeff Hobbs  <hobbs@scriptics.com>
  145. * generic/tclIO.c: fix from Kupries for Tcl_UnstackChannel that
  146. correctly handles resetting translation and encoding.
  147. * generic/tclLoad.c: #def'd out the unloading of DLLs at finalize
  148. time for Unix in TclFinalizeLoad. [Bug: 2560 3373]  Should be
  149. parametrized to allow for user to specify unload or not.
  150. * win/tclWinTime.c: fixed handling of %Z on NT for time zones
  151. that don't have DST.
  152. 1999-11-29  Jeff Hobbs  <hobbs@scriptics.com>
  153. * library/dde1.1/pkgIndex.tcl:
  154. * library/reg1.0/pkgIndex.tcl: added supported for debugged
  155. versions of the libraries
  156. * unix/tclUnixPipe.c: fixed PipeBlockModeProc to properly set
  157. isNonBlocking flag on pipe. [Bug: 1356 710]
  158. removed spurious fcntl call from PipeBlockModeProc
  159. * tests/scan.test:
  160. * generic/tclScan.c: fixed scan where %[..] didn't match anything
  161. and added test case [Bug: 3700]
  162. 1999-11-24  Jeff Hobbs  <hobbs@scriptics.com>
  163. * doc/open.n:
  164. * win/tclWinSerial.c: adopted patch from Schroedter to handle
  165. fconfigure $sock -lasterror on Windows. [RFE: 3368]
  166. * generic/tclCmdIL.c: made SORTMODE_INTEGER work with Longs
  167. [Bug: 3652]
  168. 1999-11-23  Scott Stanton  <stanton@scriptics.com>
  169. * library/tcltest1.0/tcltest.tcl: Fixed bug where tcltest output
  170. went to stdout instead of the specified output file in some
  171. cases.
  172. 1999-11-19  Jeff Hobbs  <hobbs@scriptics.com>
  173. * generic/tclProc.c: backed out change from 1999-11-18 as it
  174. could affect return string from upvar as well.
  175. * tools/tcl.wse.in: added tcltest1.0 library to distribution list
  176. * doc/http.n:
  177. * library/http2.1/http.tcl:
  178. * library/http2.1/pkgIndex.tcl: updated http package to 2.2
  179. 1999-11-18  Jeff Hobbs  <hobbs@scriptics.com>
  180. * unix/tcl.m4: added defined for _THREAD_SAFE in --enable-threads
  181. case; added check for pthread_mutex_init in libc; in AIX case,
  182. with --enable-threads ${CC}_r is used; fixed flags when using gcc
  183. on SCO
  184. * generic/tclProc.c: corrected error reporting for default case
  185. at the global level for uplevel command.
  186. * generic/tclIOSock.c: changed int to size_t type for len
  187. in TclSockMinimumBuffers.
  188. * generic/tclCkalloc.c: fixed Tcl_DbCkfree to return a value
  189. on NULL input. [Bug: 3400]
  190. * generic/tclStringObj.c: fixed support for passing in negative
  191. length to Tcl_SetUnicodeObj, et al handling routines. [Bug: 3380]
  192. * doc/scan.n:
  193. * tests/scan.test:
  194. * generic/tclScan.c: finished support for inline scan by
  195. supporting XPG identifiers.
  196. * doc/http.n:
  197. * library/http2.1/http.tcl: added register and unregister
  198. commands to http:: package (better support for tls/SSL),
  199. as well as -type argument to http::geturl. [RFE: 2617]
  200. * generic/tclBasic.c: removed extra decr of numLevels in
  201. Tcl_EvalObjEx that could cause seg fault. (mjansen@wendt.de)
  202. * generic/tclEvent.c: fixed possible lack of MutexUnlock in
  203. Tcl_DeleteExitHandler [Bug: 3545]
  204. * unix/tcl.m4: Added better pthreads library check and inclusion
  205. of _THREAD_SAFE in --enable-threads case
  206. Added support for gcc config on SCO
  207. * doc/glob.n: added note about ..../ glob behavior on Win9*
  208. * doc/tcltest.n: fixed minor example errors [Bug: 3551]
  209. 1999-11-17 Brent Welch <welch@scriptics.com>
  210. * library/http2.1/http.tcl: Correctly fixed the -timeout
  211. problem mentioned in the 10-29 change.  Also added error
  212. handling for failed writes on the socket during the protocol.
  213. 1999-11-09  Jeff Hobbs  <hobbs@scriptics.com>
  214. * doc/open.n: corrected docs for 'a' open mode.
  215. * generic/tclIOUtil.c: changed Tcl_Alloc to ckalloc
  216. * generic/tclInt.h:
  217. * generic/tclObj.c: rolled back changes from 1999-10-29
  218. Purify noted new leaks with that code
  219. * generic/tclParse.c: added code in Tcl_ParseBraces to test for
  220. possible unbalanced open brace in a comment
  221. * library/init.tcl: removed the installed binary directory from
  222. the auto_path variable
  223. * tools/tcl.wse.in: updated to 8.3a1, fixed install of twind.tcl
  224. and koi8-r.enc files
  225. * unix/tcl.m4: added recognition of pthreads library for AIX
  226. 1999-10-29  Brent Welch <welch@scriptics.com>
  227. * generic/tclInt.h: Modified the TclNewObj and TclDecrRefCount
  228. in two ways.  First, in the case of TCL_THREADS, we do not use
  229. the special Tcl_Obj allocator because that is a source of 
  230. lock contention.  Second, general code cleanup to eliminate
  231. duplicated code. In particular, TclDecrRefCount now uses
  232. TclFreeObj instead of duplicating that code, so it is now
  233. identical to Tcl_DecrRefCount.
  234. * generic/tclObj.c: Changed Tcl_NewObj so it uses the
  235. TclNewObj macro instead of duplicating the code.  Adjusted
  236. TclFreeObj so it understands the TCL_THREADS case described
  237. above.
  238. * library/http2.1/http.tcl: Fixed a bug in the handling of
  239. the state(status) variable when the -timeout flag is specified.
  240. Previously it was possible to leave the status undefined
  241. instead of empty, which caused errors in http::status
  242. 1999-10-28  Jeff Hobbs  <hobbs@scriptics.com>
  243. * unix/aclocal.m4: made it just include tcl.m4
  244. * library/tcltest1.0/tcltest.tcl: updated makeFile to return
  245. full pathname of file created
  246. * generic/tclStringObj.c: fixed Tcl_AppendStringsToObjVA so it only
  247. iterates once over the va_list (avoiding a memcpy of it,
  248. which is not portable).
  249. * generic/tclEnv.c: fixed possible ABR error in environ array
  250. * tests/scan.test:
  251. * generic/tclScan.c: added support for use of inline scan,
  252. XPG3 currently not included
  253. * tests/incr.test:
  254. * tests/set.test:
  255. * generic/tclCompCmds.c: fixed improper bytecode handling of
  256. 'eval {set array($unknownvar) 5}' (also for incr) [Bug: 3184]
  257. * win/tclWinTest.c: added testvolumetype command, as atime is
  258. completely ignored for Windows FAT file systems
  259. * win/tclWinPort.h: added sys/utime.h to includes
  260. * unix/tclUnixPort.h: added utime.h to includes
  261. * doc/file.n:
  262. * tests/cmdAH.test:
  263. * generic/tclCmdAH.c: added time arguments to atime and mtime
  264. file command methods (support 'touch' functionality)
  265. 1999-10-20  Jeff Hobbs  <hobbs@scriptics.com>
  266. * unix/tclUnixNotfy.c: fixed event/io threading problems by
  267. making triggerPipe non-blocking [Bug: 2792]
  268. * library/tcltest1.0/tcltest.tcl:
  269. * generic/tclThreadTest.c: fixed mem leaks in threads
  270. * generic/tclResult.c: fixed Tcl_AppendResultVA so it only
  271. iterates once over the va_list (avoiding a memcpy of it,
  272. which is not portable).
  273. * generic/regc_color.c: fixed mem leak and assertion, from HS
  274. * generic/tclCompile.c: removed savedChar trick that appeared to
  275. be causing a segv when the literal table was released
  276. * tests/string.test:
  277. * generic/tclCmdMZ.c: fixed [string index] to return ByteArrayObj
  278. when indexing into one (test case string-5.16) [Bug: 2871]
  279. * library/http2.1/http.tcl: protected gets with catch [Bug: 2665]
  280. 1999-10-19  Jennifer Hom  <jenn@scriptics.com>
  281. * tests/tcltest.test:
  282. * doc/tcltest.n:
  283. * library/tcltest1.0/tcltest.tcl: Removed the extra return at the
  284. end of the tcltest.tcl file, added version information about tcl.
  285. Applied patches sent in by Andreas Kupries to add helper procs for
  286. debug output, add 3 new flags (-testsdir, -load, -loadfile), and
  287. internally refactors common code for dealing with paths into
  288. separate procedures. [Bug: 2838, 2842]
  289. Merged code from core-8-2-1 branch that changes the checks for the
  290. value of tcl_interactive to also incorporate a check for the
  291. existence of the variable.
  292. * tests/autoMkindex.test:
  293. * tests/pkgMkIndex.test: Explicitly cd to
  294. ::tcltest::testsDirectory at the beginning of the test run
  295. * tests/basic.test: Use version information defined in tcltest
  296. instead of hardcoded version number
  297. * tests/socket.test: package require tcltest before attempting to
  298. use variable defined in tcltest namespace
  299. * tests/unixInit.test: 
  300. * tests/unixNotfy.test: Added explicit exits needed to avoid
  301. problems when the tests area run in wish.
  302. 1999-10-12  Jim Ingham  <jingham@scriptics.com>
  303. * mac/tclMacLoad.c: Stupid bug - we converted the filename to
  304. external, but used the unconverted version.
  305. * mac/tclMacFCmd.c: Fix a merge error in the bug fix for [Bug: 2869]
  306. 1999-10-12  Jeff Hobbs  <hobbs@scriptics.com>
  307. * generic/regc_color.c:
  308. * generic/regc_cvec.c:
  309. * generic/regc_lex.c:
  310. * generic/regc_locale.c:
  311. * generic/regcomp.c:
  312. * generic/regcustom.h:
  313. * generic/regerrs.h:
  314. * generic/regex.h:
  315. * generic/regexec.c:
  316. * generic/regguts.h:
  317. * generic/tclRegexp.c:
  318. * generic/tclTest.c:
  319. * tests/reg.test: updated to Henry Spencer's new regexp engine
  320. (mid-Sept 99).  Should greatly reduce stack space reqs.
  321. * library/tcltest1.0/pkgIndex.tcl: fixed procs in pkgIndex.tcl file
  322. * generic/tclEnv.c: fixed mem leak with putenv and DStrings
  323. * doc/Encoding.3: corrected docs
  324. * tests/basic.test: updated test cases for 8.3
  325. * tests/encoding.test: fixed test case that change system
  326. encoding to a double-byte one (this causes a bogus mem read
  327. error for purify)
  328. * unix/Makefile.in: purify has to use -best-effort to instrument
  329. * unix/tclAppInit.c: identified potential mem leak when compiling
  330. tcltest (not critical)
  331. * unix/tclUnixPipe.c: fixed mem leak in TclpCreateProcess when
  332. doing alloc between vfork and execvp.
  333. * unix/tclUnixTest.c: fixed mem leak in findexecutable test command
  334. 1999-10-05  Jeff Hobbs  <hobbs@scriptics.com>
  335. * {win,mac,unix,tools,}/README:
  336. * win/README.binary:
  337. * win/makefile.vc:
  338. * {win,unix}/configure.in:
  339. * generic/tcl.h:
  340. * library/init.tcl: updated to 8.3a1 from 8.2.0.
  341. * library/http2.1/http.tcl: fixed possible use of global c var.
  342. * win/tclWinReg.c: fixed registry command to properly 'get'
  343. HKEY_PERFORMANCE_DATA root key data.  Needs more work.
  344. * generic/tclNamesp.c:
  345. * generic/tclVar.c:
  346. * generic/tclCmdIL.c: fixed comment typos
  347. * mac/tclMacFCmd.c: fixed filename stuff to support UTF-8 [Bug: 2869]
  348. * win/tclWinSerial.c: changed SerialSetOptionProc to return
  349. TCL_OK by default. (patch from Rolf Schroedter)
  350. 1999-09-21  Jennifer Hom  <jenn@scriptics.com>
  351. * library/tcltest1.0/tcltest.tcl: Applied patches sent in by
  352. Andreas Kupries to fix typos in comments and ::tcltest::grep,
  353. fix hook redefinition problems, and change "string compare" to
  354. "string equal." [Bug: 2836, 2837, 2839, 2840]
  355. 1999-09-20  Jeff Hobbs  <hobbs@scriptics.com>
  356. * tests/env.test:
  357. * unix/Makefile.in: added support for AIX LIBPATH env var [Bug: 2793]
  358. removed second definition of INCLUDE_INSTALL_DIR (the one that
  359. referenced @includedir@) [Bug: 2805]
  360. * unix/dltest/Makefile.in: added -lc to LIBS [Bug: 2794]
  361. 1999-09-16  Jeff Hobbs  <hobbs@scriptics.com>
  362. * tests/timer.test: changed after delay in timer test 6.29 from
  363. 1 to 10. [Bug: 2796]
  364. * tests/pkg.test:
  365. * generic/tclPkg.c: fixed package version check to disallow 1.2..3
  366. [Bug: 2539]
  367. * unix/Makefile.in: fixed gendate target - this never worked
  368. since RCS was intro'd.
  369. * generic/tclGetDate.y: updated to reflect previous changes
  370. to tclDate.c (leap year calc) and added CEST and UCT time zone
  371. recognition.  Fixed 4 missing UCHAR() casts. [Bug: 2717, 954,
  372. 1245, 1249]
  373. * generic/tclCkalloc.c: changed Tcl_DumpActiveMemory to really
  374. dump to stderr and close it [Bug: 725] and changed Tcl_Ckrealloc
  375. and Tcl_Ckfree to not bomb when NULL was passed in [Bug: 1719]
  376. and changed Tcl_Alloc, et al to not panic when a alloc request
  377. for zero came through and NULL was returned (valid on AIX, Tru64)
  378. [Bug: 2795, etc]
  379. * tests/clock.test:
  380. * doc/clock.n:
  381. * generic/tclClock.c: added -milliseconds switch to clock clicks
  382. to guarantee that the return value of clicks is in the millisecs
  383. granularity [Bug: 2682, 1332]
  384. 1999-09-15  Jeff Hobbs  <hobbs@scriptics.com>
  385. * generic/tclIOCmd.c: fixed potential core dump in conjunction
  386. with stacked channels with result obj manipulation in
  387. Tcl_ReadChars [Bug: 2623]
  388. * tests/format.test:
  389. * generic/tclCmdAH.c: fixed translation of %0#s in format [Bug: 2605]
  390. * doc/msgcat.n: fixed \ bug in example [Bug: 2548]
  391. * unix/tcl.m4:
  392. * unix/aclocal.m4: added fix for FreeBSD-[1-2] recognition
  393. [Bug: 2070] and fix for IRIX SHLIB_LB_LIBS. [Bug: 2610]
  394. * doc/array.n:
  395. * tests/var.test:
  396. * tests/set.test:
  397. * generic/tclVar.c: added an array unset operation, with docs
  398. and tests.  Variation of [Bug: 1775].  Added fix in TclArraySet
  399. to check when trying to set in a non-existent namespace. [Bug: 2613]
  400. 1999-09-14  Jeff Hobbs  <hobbs@scriptics.com>
  401. * tests/linsert.test:
  402. * doc/linsert.n:
  403. * generic/tclCmdIL.c: fixed end-int interpretation of linsert
  404. to correctly calculate value for end, added test and docs [Bug: 2693]
  405. * doc/regexp.n:
  406. * doc/regsub.n:
  407. * tests/regexp.test:
  408. * generic/tclCmdMZ.c: add -start switch to regexp and regsub
  409. with docs and tests
  410. * doc/switch.n: added proper use of comments to example.
  411. * generic/tclCmdMZ.c: changed switch to complain when an error
  412. occurs that seems to be due to a misplaced comment.
  413. * generic/tclCmdMZ.c: fixed illegal ref for [0-9] substitutions
  414. in regsub [Bug: 2723]
  415. * generic/tclCmdMZ.c: changed [string equal] to return an Int
  416. type object (was a Boolean)
  417. 1999-09-01  Jennifer Hom  <jenn@scriptics.com>
  418. * library/tcltest1.0/tcltest.tcl: Process command-line arguments
  419. only ::tcltest doesn't have a child namespace (requires that
  420. command-line args are processed in that namespace)
  421. 1999-09-01  Jeff Hobbs  <hobbs@scriptics.com>
  422. * generic/tclParseExpr.c: changed '"' to '"' to make FreeBSD
  423. happy [Bug: 2625]
  424. * generic/tclProc.c: moved static buf to better location and
  425. changed static msg that would overflow in ProcessProcResultCode
  426. [Bug: 2483] and added Tcl_DStringFree to Tcl_ProcObjCmd.
  427. Also reworked size of static buffers.
  428. * tests/stringObj.test: added test 9.11
  429. * generic/tclStringObj.c: changed Tcl_AppendObjToObj to
  430. properly handle the 1-byte dest and mixed src case where
  431. both had had Unicode string len checks made on them.  [Bug: 2678]
  432. * unix/aclocal.m4:
  433. * unix/tcl.m4: adjusted fix from 8-21 to add -bnoentry to the
  434. AIX-* case and readjusted the range
  435. 1999-08-31  Jennifer Hom  <jenn@scriptics.com>
  436. * library/tcltest1.0/tcltest.tcl:
  437. * doc/tcltest.n:
  438. * tests/README: Modified testConstraints variable so that it isn't
  439. unset every time ::tcltest::initConstraints is called and cleaned up
  440. documentation in the README file and the man page.
  441. 1999-08-27  Jennifer Hom  <jenn@scriptics.com>
  442. * tests/env.test:
  443. * tests/exec.test:
  444. * tests/io.test:
  445. * tests/event.test:
  446. * tests/tcltest.test: Added 'exit' calls to scripts that the tests 
  447. themselves write, and removed accidental checkin of knownBugThreaded
  448. constraints for Solaris and Linux.
  449. * library/tcltest1.0/tcltest.tcl:  Modified tcltest so that
  450. variables are only initialized to their default values if they did
  451. not previously exist. 
  452. 1999-08-26  Jennifer Hom  <jenn@scriptics.com>
  453. * tests/tcltest.test:
  454. * library/tcltest1.0/tcltest.tcl:  Added a -args flag that sets a
  455. variable named ::tcltest::parameters based on whatever's being
  456. sent in as the argument to the -args flag. 
  457. 1999-08-23  Jennifer Hom  <jenn@scriptics.com>
  458. * tests/tcltest.test: Added additional tests for -tmpdir, marked
  459. all tests that use exec as unixOrPc.
  460. * tests/encoding.test:
  461. * tests/interp.test: 
  462. * tests/macFCmd.test:
  463. * tests/parseOld.test:
  464. * tests/regexp.test: Applied patches from Jim Ingham to add
  465. encoding to a Mac only interp test, change an error message in
  466. macFCmd.tet, put a comment in parseOld.test, fix tests using the
  467. testencoding path command, and put unixOrPc constraints on tests
  468. that use exec. 
  469. 1999-08-21  Jeff Hobbs  <hobbs@scriptics.com>
  470. * unix/aclocal.m4: Changed AIX-4.[2-9] check to AIX-4.[1-9]
  471. [Bug: 1909]
  472. 1999-08-20  Jeff Hobbs  <hobbs@scriptics.com>
  473. * generic/tclPosixStr.c: fixed typo [Bug: 2592]
  474. * doc/*: fixed various nroff bugs in man pages [Bug: 2503 2588]
  475. 1999-08-19  Jeff Hobbs  <hobbs@scriptics.com>
  476. * win/README.binary: fixed version info and some typos [Bug: 2561]
  477. * doc/interp.n: updated list of commands available in a safe
  478. interpreter [Bug: 2526]
  479. * generic/tclIO.c: changed Tcl_GetChannelNames* to use style guide
  480. headers (pleases HP cc)
  481. 1999-08-18  Jeff Hobbs  <hobbs@scriptics.com>
  482. * doc/Eval.3: fixed doc on input args [Bug: 2114]
  483. * doc/OpenFileChnl.3:
  484. * doc/file.n:
  485. * tests/cmdAH.test:
  486. * tclIO.c:
  487. * tclCmdAH.c: added "file channels ?pattern?" tcl command, with
  488. associated Tcl_GetChannelNames and Tcl_GetChannelNamesEx public
  489. C APIs (added to tcl.decls as well), with docs and tests.
  490. * tests/expr.test:
  491. * generic/tclCompile.c: add TCL_TOKEN_VARIABLE to the part types
  492. that cause differed compilation for exprs, to correct the expr
  493. double-evaluation problem for vars.  Added test cases.
  494. Related to [Bug: 732]
  495. * unix/Makefile.in: changed the dependency structure so that
  496. install-* is dependent on * (ie - install-binaries is dependent
  497. on binaries).
  498. * library/auto.tcl:
  499. * library/init.tcl:
  500. * library/ldAout.tcl:
  501. * library/package.tcl:
  502. * library/safe.tcl:
  503. * library/word.tcl:
  504. * library/http2.1/http.tcl:
  505. * library/msgcat1.0/msgcat.tcl: updated libraries to better
  506. Tcl style guide (no more string comparisons with == or !=, spacing
  507. changes).
  508. 1999-08-05  Jim Ingham  <jingham@cygnus.com>
  509. * mac/tclMacProjects.sea.hqx: Rearrange the projects so that the build
  510. directory is separate from the sources.  Much more convenient!
  511. 1999-08-13  Scott Redman <redman@scriptics.com>
  512. * /: 8.2.0 tagged for final release
  513. 1999-08-12  Scott Stanton  <stanton@scriptics.com>
  514. * win/Makefile.in: Added COMPILE_DEBUG_FLAGS macro to make it
  515. easier to turn on compiler tracing.
  516. * tests/parse.test: 
  517. * generic/tclParse.c: Fixed bug in Tcl_EvalEx where the termOffset
  518. was not being updated in cases where the evaluation returned a non
  519. TCL_OK error code. [Bug: 2535]
  520. 1999-08-12  Scott Redman  <redman@scriptics.com>
  521. * win/tclWinSerial.c: Applied patch from Petteri Kettunen to
  522. remove compiler warning.
  523. 1999-08-10  Scott Redman  <redman@scriptics.com>
  524. * generic/tclAlloc.c:
  525. * generic/tclCmdIL.c:
  526. * generic/tclIO.c:
  527. * generic/tclThread.c:
  528. * win/tclWinThrd.c:
  529. * unix/tclUnixThrd.c: Fixed Brent's changes so that they work on
  530. Windows (and he fixed the bug in the Unix thread implementation).
  531. 1999-08-09  Brent Welch  <welch@scriptics.com>
  532.         
  533. * generic/tcl.decls:
  534. * generic/tclAlloc.c:
  535. * generic/tclCkalloc.c:
  536. * generic/tclCmdIL.c:
  537. * generic/tclDecls.h: 
  538. * generic/tclIO.c:
  539. * generic/tclInt.decls:
  540. * generic/tclIntDecls.h:
  541. * generic/tclStubInit.c:
  542. * generic/tclVar.c:
  543. * mac/tclMacThrd.c:
  544. * unix/tclUnixThrd.c:
  545. * win/tclWinThrd.c: Added use of Tcl_GetAllocMutex to tclAlloc.c
  546. and tclCkalloc.c so they can be linked against alternate thread
  547. packages. Added Tcl_GetChannelNames to tclIO.c. Added
  548. TclVarTraceExists hook so "info exists" triggers read traces
  549. exactly like it did in Tcl 7.6. Stubs table changes to reflect new
  550. internal and external APIs.
  551. 1999-08-09  Jeff Hobbs  <hobbs@scriptics.com>
  552. * tests/string.test: added largest_int proc to adapt for >32 bit
  553. machines and int overflow testing.
  554. * tests/tcltest.test: fixed minor error in 8.2 result (from dgp)
  555. * doc/Object.3: clarified Tcl_DecrRefCount docs [Bug: 1952]
  556. * doc/array.n: clarified array pattern docs [Bug: 1330]
  557. * doc/clock.n: fixed clock docs [Bug: 693]
  558. * doc/lindex.n: clarified to account for new end-int behavior.
  559. * doc/string.n: fixed formatting errors [Bug: 2188 2189]
  560. * doc/tclvars.n: fixed doc error [Bug: 2042]
  561. * library/init.tcl: fixed path handling in auto_execok (it could
  562. miss including the normal path on some Windows machines) [Bug: 1276]
  563. 1999-08-05  Jeff Hobbs  <hobbs@scriptics.com>
  564. * doc/tclvars.n: Made it clear that tcl_pkgPath was not set
  565. for Windows (already mentioned in init.tcl) [Bug: 2455]
  566. * generic/tclLiteral.c: fixed reference to bytes that might
  567. not be null terminated (using objPtr->bytes, which is) [Bug: 2496]
  568. * library/http2.1/http.tcl: Made use of "i" in init section use
  569. local var and start at 0 (was 1). [Bug: 2502]
  570. 1999-08-04  Scott Stanton  <stanton@scriptics.com>
  571. * tests/reg.test: Added test for REG_EXPECT bug fixed by Henry's
  572. patch.
  573. * generic/regc_nfa.c: 
  574. * generic/regcomp.c: 
  575. * generic/rege_dfa.c:
  576. * generic/regexec.c: 
  577. * generic/regguts.h: Applied patches supplied by Henry Spencer to
  578. greatly enhance the performance of certain classes of regular
  579. expressions. [Bug: 2440, 2447]
  580. 1999-08-03  Scott Redman  <redman@scriptics.com>
  581. * win/tclWinInt.h: Remove function declarations in header that was
  582. moved to tclInt.decls file in previous changes.
  583. 1999-08-02  Scott Redman  <redman@scriptics.com>
  584. * unix/configure.in:
  585. * win/configure.in: Change beta level to b2.
  586. * generic/tcl.h:
  587. * generic/tcl.decls:
  588. * generic/tclDecls.h:
  589. * generic/tclInt.h:
  590. * generic/tclInt.decls:
  591. * generic/tclIntDecls.h:
  592. * generic/tclRegexp.h:
  593. * generic/tclStubInit.c: Move some exported public and internal
  594. functions to the stub tables.  Removed functions that are in the
  595. stub tables (from this and previous changes) from the original
  596. header files.
  597. 1999-08-01  Scott Redman  <redman@scriptics.com>
  598. * win/tclWinSock.c: Added comment block to SocketThread()
  599. function.  Added code to avoid calling TerminateThread(), but
  600. instead to send a message to the socket event window to tell it to
  601. terminate its thread.
  602. 1999-07-30  Jennifer Hom  <jenn@scriptics.com>
  603. * tests/tcltest.test:
  604. * library/tcltest1.0/tcltest.tcl: Exit with non-zero status if
  605. there were problems with the way the test suite was started
  606. (e.g. wrong # arguments).  
  607. 1999-07-30  Jeff Hobbs  <hobbs@scriptics.com>
  608. * generic/tclInt.decls: added declaractions necessary for the
  609. Tcl test code to work wth stubs [Bug: 2445]
  610. 1999-07-30    <redman@scriptics.com>
  611. * win/tclWinPipe.c:
  612. * win/Makefile.in: Fixing launching of 16-bit apps on Win9x from
  613. wish.  The command line was primed with tclpip82.dll, but it was
  614. ignored.  Fixed that, then fixed the gmake makefile to build
  615. tclpip82.dll as an executable.
  616. * win/tclWinSock.c: Applied small patch to get thread-specific
  617. data after initializing the socket driver.
  618. * unix/tclUnixThrd.c: Applied patch to fix threads on Irix 6.5.
  619. Patch from James Dennett.  [Bug: 2450]
  620. * tests/info.test: Enable test for tclParse.c change (info
  621. complete).
  622. 1999-07-30    <hobbs@scriptics.com>
  623. * tclIO.c: added fix for Kupries' trf patch [Bug: 2386]
  624. * tclParse.c: fixed bug in info complete regarding nested square
  625. brackets [Bug: 2382, 2466]
  626. 1999-07-29    <redman@scriptics.com>
  627. * win/tclWinChan.c: Allow tcl to open CON and NUL, even for std
  628. channels.  Checking for bad/unusable std channels was moved to Tk
  629. since its only purpose was to check whether to use the Tk Console
  630. Window for the std channels.  [Bug: 2393 2392 2209 2458]
  631. * unix/mkLinks.tcl: Applied patch to avoid linking pack.n to
  632. pack-old.n.  Patch from Don Porter. [Bug: 2469]
  633. * doc/Encoding.n: Applied patch to fix typo in .SH NAME line.
  634. Patch from Don Porter.  [Bug: 2451]
  635. * win/tclWinSock.c:  Free Win32 Event handles when destroying
  636. the socket helper thread.
  637. 1999-07-28    <jenn@scriptics.com>
  638. * tests/tcltest.test:
  639. * library/tcltest1.0/tcltest.tcl: Fixed the condition under which
  640. ::tcltest::PrintError had an infinite loop problem and added a
  641. test case for it.  Added an optional argument to
  642. ::tcltest::getMatchingFiles telling it where to search for test
  643. files. 
  644. 1999-07-27    <redman@scriptics.com>
  645. * tools/tclSplash.bmp:  Updated Windows installer bitmap
  646. to ready Tcl/Tk Version 8.2.
  647. 1999-07-26    <redman@scriptics.com>
  648. * tests/tcltest.test:  Need to close the new core file, there
  649. seems to be a hang in threaded WinNT if the file isn't closed.
  650. Open issue, need to fix that hang.
  651. * tests/httpold.test:  Add time delay in response from Http server
  652. so that test cases can properly detect timeout conditions with
  653. threads enabled on multi-CPU WinNT.
  654. * tests/winFCmd.test:  Test case winFcmd-1.33 was looking for
  655. c:windows, which may not exist.  Instead, create a new directory
  656. on c: and use it for the test.
  657. * win/tclWinConsole.c:
  658. * win/tclWinPipe.c:
  659. * win/tclWinSock.c:  Fix terminating helper threads by holding any
  660. mutexes from the primary thread while waiting for the helper
  661. thread to terminate.  Without these changes, the test suite hangs
  662. on WinNT with 2 CPUs and threads enabled.  Open issue, seems to be
  663. a sporadic hang on dual CPU systems still (very rare).
  664. 1999-07-26  Jennifer Hom  <jenn@scriptics.com>
  665. * tests/tcltest.test:
  666. * library/tcltest1.0/tcltest.tcl:
  667. * doc/tcltest.n: Cleaned up code in ::tcltest::PrintError, revised
  668. documentation, and added tests for the tcltest package.
  669. 1999-07-23    <redman@scriptics.com>
  670. * tests/info.test:
  671. * generic/tclParse.c:  Removed patch for info command, breaks test
  672. cases on Unix.  Patch was bad and needs to be redone
  673. properly. [Bug: 2382]
  674. 1999-07-22    <redman@scriptics.com>
  675. * Changed version to 8.2b2.
  676. * win/tclWinSock.c: Fixed hang with threads enabled, fixed
  677. semaphores with threads disabled.
  678. * win/safe.test: Fixed safe-6.3 with threads enabled.
  679. * win/Makefile.in:  Fixed calling of tcltest to fix safe.test
  680. failures due to path TCL_LIBRARY path.
  681. * win/tclWinPort.h: Block out include of sys/*.h in order to
  682. build extensions with MetroWerks compiler for Win32. [Bug: 2385]
  683. * generic/tclCmdMZ.c:
  684. * generic/tclIO.c: Fix ANSI-style prototypes based on patch from
  685. Ulrich Ring.  [Bug: 2391]
  686. * unix/Makefile.in: Need to make install-sh executable before
  687. calling (with chmod +x).  [Bug: 2413]
  688. * tests/var.test:
  689. * generic/tclVar.c:  Fixed bug that caused a seg. fault when using
  690. "array set a(b) {}", which is a bad array name anyway.  Now the
  691. "array set" command will return an error in this case.  Added test
  692. case and fixed existing test. [Bug: 2427]
  693. 1999-07-21    <redman@scriptics.com>
  694. * tests/info.test:
  695. * generic/tclParse.c:  Applied patch to fix "info complete"
  696. for the string {[a [b]}.  Patch from Peter Spjuth. [Bug: 2382]
  697. * doc/Utf.3:
  698. * generic/tcl.decls:
  699. * generic/tclDecls.h:
  700. * generic/tclUtf.c: Changed function declarations in
  701. non-platform-specific public APIs to use "unsigned long" instead of
  702. "size_t", which may not be defined on certain compilers (rather
  703. than include sys/types.h, which may not exist).
  704. * unix/Makefile.in: Added the Windows configure script to the
  705. distribution file list, already shipping configure.in and the .m4
  706. files, but needed the configure script itself.
  707. * win/makefile.vc: Changed version number of DDE package in VC++
  708. makefile to use 1.1 instead of 1.0.
  709. * doc/open.n: Added documentation of \.comX notation for opening
  710. serial ports on Windows (alternative to comX:).
  711. * tests/ioCmd.test:
  712. * doc/open.n:
  713. * win/tclWinSerial.c: Applied patch from Rolf Schroedter to add
  714. -pollinterval option to fconfigure to modify the maxblocktime used
  715. in the fileevent polling. Added documentation and fixed the test
  716. case as well.
  717. * win/tclWinSock.c: Modified 8.1.0 version of the Win32 socket
  718. driver to move the handling of the socket event window in a
  719. separate thread.  It also turned out that Win95 & Win98 were, in
  720. some cases, getting multiple FD_ACCEPTs but only handling one.
  721. Added a count for the FD_ACCEPT to take care of this.  Tested on
  722. NT4 SP3, NT4 SP4, Win95, and Win98.
  723. [Bug: 2178 2256 2259 2329 2323 2355]
  724. 1999-07-21    <jpeek@scriptics.com>
  725. * README: Small tweaks to clean up typos and wording.
  726. 1999-07-20  Melissa Hirschl  <hershey@matisse.scriptics.com>
  727. * generic/tclInitScript.h: 
  728. * unix/tclUnixInit.c: merged code with 8.0.5.  We now use an
  729. intermediate global tcl var "tclDefaultLibrary" to keep the
  730. "tcl_library" var from being set by the default value in the
  731. Makefile.  Also fixed a bug in which caused the value of
  732. TCL_LIBRARY env var to be ignored.
  733. * unix/tclWinInit.c: just updated some comments.
  734. 1999-07-19  Melissa Hirschl  <hershey@matisse.scriptics.com>
  735. * library/http2.1/http.tcl: updated -useragent text to say version
  736. 2.1.
  737. 1999-07-16    <redman@scriptics.com>
  738. * generic/tcl.decls:
  739. * generic/tclDecls.h:
  740. * generic/tclStubInit.c:  Add Tcl_SetNotifier to stub table.
  741. [Bug: 2364]
  742. * unix/aclocal.m4:
  743. * unix/tcl.m4:  Add check for Alpha/Linux to correct the IEEE
  744. floating flag to the compiler, should be -mieee.  Patch from Don
  745. Porter.
  746. * tools/tcl.hpj.in: Change version number of .cnt file referenced
  747. in .HPJ file.
  748. 1999-07-15    <redman@scriptics.com>
  749. * tools/tcl.wse.in: Fixed naming of target files for Windows.
  750. 1999-07-14    <jpeek@scriptics.com>
  751. * doc/re_syntax.n: Deleted sentence as suggested by Scott S.
  752. 1999-07-12    <jpeek@scriptics.com>
  753. * doc/re_syntax.n: Removed two notes to myself (oops), cleaned
  754. up wording, fixed changebars, made two examples easier to read.
  755. 1999-07-11    <redman@scriptics.com>
  756. * win/makefile.vc: Since the makefile.vc should continue to work
  757. while we're working out bugs/issues in the new TEA-style
  758. autoconf/configure/gmake build mechanism for Windows, the version
  759. numbers of the Tcl libraries need to remain in sync.  Modified the
  760. version numbers in the makefile to reflect the change to 8.2b1.
  761. 1999-07-09    <redman@scriptics.com>
  762. * win/configure.in: Eval DLLSUFFIX, LIBSUFFIX, and EXESUFFIX in
  763. the configure script so that substitutions get expanded before
  764. being placed in the Makefile.  The "d" portion for debug libraries
  765. and DLLs was not being set properly.
  766. 1999-07-08    <stanton@scriptics.com>
  767. * tests/string.test: 
  768. * generic/tclCmdMZ.c: Fixed bug in string range bounds checking
  769. code.
  770. 1999-07-08  Jennifer Hom  <jenn@scriptics.com>
  771. * doc/tcltest.n:
  772. * library/tcltest1.0/tcltest.tcl: Removed -asidefromdir and
  773. -relateddir flags, removed unused ::tcltest::dotests proc, cleaned
  774. up implementation of core file checking, and fixed the code that
  775. checks for 1-letter flag abbreviations.
  776. 1999-07-08    <stanton@scriptics.com>
  777. * win/Makefile.in: Added tcltest target so runtest works
  778. properly.  Added missing names to the clean/distclean targets.
  779. * tests/reg.test: 
  780. * generic/rege_dfa.c: Applied fix supplied by Henry Spencer for
  781. bug in DFA state caching under lookahead conditions.  [Bug: 2318]
  782. 1999-07-07    <stanton@scriptics.com>
  783. * doc/fconfigure.n: Clarified default buffering behavior for the
  784. standard channels. [Bug: 2335]
  785. 1999-07-06    <redman@scriptics.com>
  786. * win/tclWinSerial.c:  New implementation of serial port driver
  787. from Rolf Shroedter (Rolf.Schroedter@dlr.de) that allows more than
  788. one byte to be read from the port.  Implemented using polling
  789. instead of threads, there is a max. 10ms latency between checking the
  790. port for file events.  [Bug: 1980 2217]
  791. 1999-07-06    <welch@scriptics.com>
  792. * library/http2.0/http.tcl: Fixed the -timeout option so it
  793. handles timeouts that occur during connection attempts to
  794. hosts that are down (the only case that really matters!)
  795. 1999-07-03    <welch@scriptics.com>
  796. * doc/ChnlStack.3:
  797. * generic/tcl.decls:
  798. * generic/tclIO.c: Added a new variant of the "Trf patch"
  799. from Andreas Kupres that adds new C APIs Tcl_StackChannel,
  800. Tcl_UnstackChannel, and Tcl_GetStackedChannel.
  801. 1999-07-03    <welch@scriptics.com>
  802. * generic/tclNotify.c:
  803. * unix/tclUnixNotfy.c:
  804. * unix/tclXtTest.c:
  805. * unix/tclXtNotify.c:
  806. * win/tclWinNotify.c:
  807. * mac/tclMacNotify.c: Added Tcl_SetNotifier and the associated
  808. hook points in the notifiers to be able to replace the notifier
  809. calls at runtime  The Xt notifier and test program use this hook.
  810. 1999-07-03    <welch@scriptics.com>
  811. * generic/tclParse.c: Changed parsing of variable names to
  812. allow empty array names.  Now "$(foo)" is a variable reference!
  813. Previous you had to use something like $::(foo), which is slower.
  814. This change is requested by Jean-Luc Fontaine for his STOOOP
  815. package.
  816. 1999-07-01    <redman@scriptics.com>
  817. * generic/tclCmdAH.c:
  818. * generic/tclFCmd.c: Call TclStat instead of TclpStat in order to
  819. allow Tcl_Stat hooks to work properly.
  820. 1999-06-29  Jennifer Hom  <jenn@scriptics.com>
  821. * library/tcltest1.0/pkgIndex.tcl:
  822. * library/tcltest1.0/tcltest.tcl:
  823. * doc/tcltest.n:
  824. * tests/all.tcl: Added -preservecore, -limitconstraints, -help,
  825. -file, -notfile, -relateddir and -asidefromdir flags to the
  826. tcltest package along with exported proc
  827. ::tcltest::getMatchingFiles.  The documentation was modified to
  828. match and all.tcl was modified to use the new functionality
  829. instead of implementing -file itself. 
  830. 1999-06-28    <redman@scriptics.com>
  831. * generic/tclIndexObj.c:
  832. * doc/GetIndex.3:
  833. * tests/binary.test:
  834. * tests/winDde.test: Applied patch from Peter Hardie (with
  835. changes) to fix problem with Tcl_GetIndexFromObj() when the key
  836. being passed is the empty string.  It used to match "" and return
  837. TCL_OK, but it should have returned TCL_ERROR instead.  Added test
  838. case to "binary" and "dde" commands to check the behavior.  Added
  839. documentation note as well.
  840. 1999-06-26    <redman@scriptics.com>
  841. * win/tclWinDde.c: Applied patch from Peter Hardie to add poke
  842. command to dde.  Also rev'd version of dde package to 1.1.
  843. [Bug: 1738]
  844. 1999-06-25  Jennifer Hom  <jenn@scriptics.com>
  845. * unix/Makefile.in:
  846. * win/Makefile.in:
  847. * library/tcltest1.0/pkgIndex.tcl:
  848. * library/tcltest1.0/tcltest.tcl:
  849. * library/tcltest1.0: Added initial implementation of the Tcl test
  850. harness package.  This package was based on the defs.tcl file that
  851. was part of the tests directory. Reversed the way that tests were
  852. evaluated to fix a problem with false passes.
  853. * doc/tcltest.n: Added documentation for the tcltest package.
  854. * tests/README:
  855. * tests/defs.tcl:
  856. * tests/all.tcl: Modified all test files (tests/*.test) and
  857. all.tcl to use the new tcltest package and removed references to
  858. the defs.tcl file. Modified the README file to point to the man
  859. page for tcltest. 
  860. 1999-06-25    <stanton@scriptics.com>
  861. * tests/reg.test: 
  862. * generic/regexec.c: Fixed bugs in non-greedy quantifiers.
  863. 1999-06-23    <jpeek@scriptics.com>
  864. * doc/re_syntax.n:
  865. * doc/switch.n:
  866. * doc/lsearch.n:
  867. * doc/RegExp.3:
  868. * doc/regexp.n:
  869. * doc/regsub.n: Moved information about syntax of 8.1 regular
  870. expressions from regexp(n) manpage into new re_syntax(n) page.
  871. Added pointers from other manpages to new re_syntax(n) page.
  872. 1999-06-23    <stanton@scriptics.com>
  873. * unix/Makefile.in: Changed install-doc to install-man.
  874. * tools/uniParse.tcl: 
  875. * tools/uniClass.tcl: 
  876. * tools/README: 
  877. * tests/string.test: 
  878. * generic/regc_locale.c: 
  879. * generic/tclUniData.c: 
  880. * generic/tclUtf.c: 
  881. * doc/string.n: Updated Unicode character tables to reflect latest
  882. Unicode 2.1 data.  Also rationalized "regexp" and "string is"
  883. definitions of character classes.
  884. 1999-06-21    <stanton@scriptics.com>
  885. * unix/tclUnixThrd.c (TclpThreadCreate): Fixed memory leak where
  886. thread attributes were not being released. [Bug: 2254]
  887. 1999-06-17    <stanton@scriptics.com>
  888. * tests/regexp.test: 
  889. * generic/tclCmdMZ.c: 
  890. * generic/tclCmdIL.c: Changed to use new regexp interfaces.  Added
  891. -expanded, -line, -linestop, and -lineanchor switches to regsub.
  892. * doc/RegExp.3: Documented the new regexp interfaces and
  893. the compile/execute flags.
  894. * generic/tclTest.c: 
  895. * generic/tclRegexp.h:
  896. * generic/tclRegexp.c: 
  897. * generic/tcl.h: 
  898. * generic/tcl.decls: Renamed Tcl_RegExpMatchObj to
  899. Tcl_RegExpExecObj and added a new Tcl_RegExpMatchObj that is
  900. equivalent to Tcl_RegExpMatch.  Added public macros for the regexp
  901. compile/execute flags.  Changed to store either an object pointer
  902. or a string pointer in the TclRegexp structure.  Changed to avoid
  903. adding a reference to the object or copying the string.
  904. * generic/regcomp.c: lint
  905. * tests/reg.test: 
  906. * generic/regex.h: 
  907. * generic/regc_lex.c: Added REG_BOSONLY flag to allow Expect to
  908. iterate through a string an only find matches that start at the
  909. current position within the string.
  910. 1999-06-16  <wart@scriptics.com>
  911. * unix/configure.in:
  912. * unix/Makefile.in:
  913. * unix/tcl.m4:
  914. * unix/aclocal.m4: Numerous build changes to make Tcl conform to the
  915. proposed TEA spec
  916. 1999-06-16  Melissa Hirschl  <hershey@matisse.scriptics.com>
  917. * generic/tclVar.c (Tcl_VariableObjCmd): fixed premature increment
  918. in loop that was causing out-of-bounds reads on array "varName".
  919. 1999-06-16    <stanton@scriptics.com>
  920. * tests/execute.test:
  921. * generic/tclExecute.c (TclExecuteByteCode): Fixed crash caused by
  922. a bug in INST_LOAD_SCALAR1 where the scalar index was read as
  923. a signed 1 byte value instead of unsigned.  [Bug: 2243]
  924. 1999-06-14  Melissa Hirschl  <hershey@matisse.scriptics.com>
  925. * doc/StringObj.3
  926. * test/stringObj.test
  927. * unix/Makefile.in
  928. * win/Makefile.in
  929. * win/makefile.vc
  930. * generic/tclStringObj.c:
  931. Merged String and Unicode object types.  Added new functions to
  932. the puplic API:  Tcl_NewUnicodeObj, Tcl_SetUnicodeObj,
  933. Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange,
  934. Tcl_AppendUnicodeToObj.
  935. 1999-06-09    <stanton@scriptics.com>
  936. * generic/tclUnicodeObj.c: Lots of cleanup and simplification.
  937. Fixed several memory bugs.  Added TclAppendUnicodeToObj.  
  938. * generic/tclInt.h: Added declarations for various Unicode string
  939. functions.  
  940. * generic/tclRegexp.c: 
  941. * generic/tclCmdMZ.c: Changed to use new Unicode string interfaces
  942. for better performance. 
  943. * generic/tclRegexp.h: 
  944. * generic/tclRegexp.c: 
  945. * generic/tcl.h: 
  946. * generic/tcl.decls: Added Tcl_RegExpMatchObj and
  947. Tcl_RegExpGetInfo calls to access lower level regexp API.  These
  948. features are needed by Expect.  This is a preliminary
  949. implementation pending final review and cleanup.
  950. * generic/tclCmdMZ.c:
  951. * tests/string.test: Fixed bug where string map failed on null
  952. strings.
  953. * generic/regexec.c: 
  954. * unix/tclUnixNotfy.c: lint
  955. * tools/genStubs.tcl: Changed to always write output in LF mode.
  956. 1999-06-08    <stanton@scriptics.com>
  957. * win/tclWinSock.c: Rolled back to the 8.1.0 implementation
  958. because of serious problems with the new driver.  Basically no
  959. incoming socket connections would be reported to a server port.
  960. The 8.1.1 code needs to be redesigned and fixed correctly.
  961. 1999-06-07  Melissa Hirschl  <hershey@matisse.scriptics.com>
  962. * tests/string.test: 
  963. * generic/tclVar.c (Tcl_SetVar2Ex):
  964. * generic/tclStringObj.c (Tcl_AppendObjToObj):
  965. * generic/tclCmdMZ.c (Tcl_StringObjCmd): optimized the string
  966. index, string length, string range, and append command in cases
  967. where the object's internal rep is a bytearray.  Objects with
  968. other internal reps are converted to have the new unicode internal
  969. rep.  
  970. * unix/Makefile.in: 
  971. * win/Makefile.in: 
  972. * win/Makefile.vc: 
  973. * tests/unicode.test: 
  974. * generic/tclInt.h:
  975. * generic/tclObj.c:
  976. * generic/tclUnicodeObj.c: added a new object type to store the
  977. unicode representation of a string.
  978. * generic/tclTestObj.c: added the objtype option to the testobj
  979. command.  This option returns the name of the type of internal rep
  980. an object has.
  981. 1999-06-04    <stanton@scriptics.com>
  982. * win/configure.in: 
  983. * win/Makefile.in: Windows build now handles static/dynamic
  984. debug/nodebug builds and supports the standard targets using
  985. Cygwin user tools plus GNU make and autoconf.
  986. 1999-06-03    <stanton@scriptics.com>
  987. * generic/tclCmdMZ.c (Tcl_StringObjCmd): 
  988. * tests/string.test: Fixed bug where string equal/compare -nocase
  989. reported wrong result on null strings. [Bug: 2138]
  990. 1999-06-02    <stanton@scriptics.com>
  991. * generic/tclUtf.c (Tcl_UtfNcasecmp): Fixed incorrect computation
  992. of relative ordering. [Bug: 2135]
  993. 1999-06-01    <stanton@scriptics.com>
  994. * unix/configure.in: Fixed various small configure.in patches
  995. submitted by Jan Nijtmans. [Bug: 2121]
  996. * tests/reg.test: 
  997. * generic/regc_color.c: 
  998. * generic/regc_cvec.c: 
  999. * generic/regc_lex.c: 
  1000. * generic/regc_locale.c: 
  1001. * generic/regc_nfa.c: 
  1002. * generic/regcomp.c: 
  1003. * generic/regcustom.h: 
  1004. * generic/rege_dfa.c: 
  1005. * generic/regerror.c: 
  1006. * generic/regerrs.h: 
  1007. * generic/regex.h: 
  1008. * generic/regexec.c: 
  1009. * generic/regfree.c: 
  1010. * generic/regfronts.c: 
  1011. * generic/regguts.h: 
  1012. * generic/tclCmdMZ.c: 
  1013. * generic/tclRegexp.c: 
  1014. * generic/tclRegexp.h: 
  1015. * generic/tclTest.c: Applied Henry Spencer's latest regexp patches
  1016. that fix an infinite loop bug and add support for testing whether
  1017. a string could match with additional input.  [Bug: 2117]
  1018. 1999-05-28    <stanton@scriptics.com>
  1019. * generic/tclObj.c: Changed to eliminate use of isupper/tolower in
  1020. favor of the Unicode versions.
  1021. * win/Makefile.in:
  1022. * win/configure.in: Added preliminary TEA implementation.
  1023. * win/tclWinDde.c: Fixed bug where dde calls were being passed an
  1024. invalid dde handle because Initialize had not been called.
  1025. [Bug: 2124]
  1026. 1999-05-26    <redman@scriptic.com>
  1027. * generic/tclThreadTest.c: Fixed race condition in testthread
  1028. code that showed up in the WinNT test suite intermittently.
  1029. * win/tclWinSock.c: Fixed a hang in the WinNT socket driver, wake
  1030. up the socket thread every 100ms to check for events on the
  1031. sockets that did not wake up the thread (race condition).
  1032. 1999-05-24    <stanton@scriptics.com>
  1033. * tools/genStubs.tcl: Changed to allow a list of platforms instead
  1034. of just one at a time.
  1035. * generic/tcl.decls: 
  1036. * generic/tclCmdMZ.c: 
  1037. * generic/tclDecls.h: 
  1038. * generic/tclInt.decls: 
  1039. * generic/tclIntDecls.h: 
  1040. * generic/tclPort.h: 
  1041. * generic/tclStubInit.c: 
  1042. * generic/tclStubLib.c: Various header file related changes and other
  1043. lint to try to get the Mac builds working.
  1044. 1999-05-21    <redman@scriptics.com>
  1045. * win/tclWinPipe.c: Fix bug when launching command.com on
  1046. Win95/98.  Need to wait for the procInfo.hProcess of the process that
  1047. was created, not the hProcess of the current process.  [Bug: 2105]
  1048. 1999-05-20    <redman@scriptics.com>
  1049. * library/init.tcl: Add the directory where the executable is, and
  1050. the ../lib directory relative to that, to the auto_path variable.
  1051. 1999-05-19    <stanton@scriptics.com>
  1052. Merged in various changes submitted by Jeff Hobbs:
  1053. * generic/tcl.decls: 
  1054. * generic/tclUtf.c: Added Tcl_UniCharIs* functions for control,
  1055. graph, print, and punct classes.
  1056. * generic/tclUtil.c:
  1057. * doc/StrMatch.3: Added Tcl_StringCaseMatch() implementation to
  1058. support case-insensitive globbing.
  1059. * doc/string.n: 
  1060. * unix/mkLinks: 
  1061. * tests/string.test: 
  1062. * generic/tclCmdMZ.c: Added additional character class tests,
  1063. added -nocase switch to "string match", changed string first/last
  1064. to use offsets.
  1065. 1999-05-19    <redman@scriptics.com>
  1066. * generic/tcl.h: Add extern "C" block around entire header file for
  1067. C++ compilers to fix linkage issues.  Submitted by Don Porter and
  1068. Paul Duffin.
  1069. * generic/tclRegexp.c: Fix bug when the regexp cache is empty
  1070. and an empty pattern is used in regexp ( such as {} or "" ).
  1071. 1999-05-18    <stanton@scriptics.com>
  1072. * win/tclWinChan.c: Modified initialization code to avoid
  1073. inherenting closed or invalid channels.  If the standard input is
  1074. anything other than a console, file, serial port, or pipe, then we
  1075. fall back to the standard Tk window console.
  1076. 1999-05-14    <stanton@scriptics.com>
  1077. * generic/tclCmdAH.c (Tcl_ForObjCmd): Fixed crash caused by
  1078. failure to reset the result before evaluating the test
  1079. expression. 
  1080. 1999-05-14    <surles@scriptics.com>
  1081. * generic/tclBasic.c (Tcl_CreateInterp): Added introspection
  1082. variable for threaded interps.  If the interp was compiled with
  1083. threads enabled, the tcl_platform(threaded) variable will exist.
  1084. 1999-05-14    <redman@scriptics.com>
  1085. * generic/tclDate.c: Applied patch to fix 100-year and 400-year
  1086. boundaries in leap year code, from Isaac Hollander.  [Bug: 2066]
  1087. 1999-05-13    <stanton@scriptics.com>
  1088. * unix/Makefile.in:
  1089. * unix/tclAppInit.c: Minor cleanup related to Xt notifier.
  1090. * unix/tclUnixInit.c (TclpSetInitialEncodings): Tcl now looks for
  1091. an encoding subfield in the LANG/LC_ALL variables in cases where
  1092. the locale is not found in the locale table.  Ensure that
  1093. setlocale() is called at least once so X11 will initialize
  1094. properly.  Also, forces the LC_NUMERIC locale to be "C" so numeric
  1095. processing in scripts is not affected by the current locale
  1096. setting. [Bug: 1989]
  1097. * generic/tclRegexp.c: Increased per-thread regexp cache to 30
  1098. slots.  This seems to be about the right number for larger
  1099. applications like exmh.  [Bug: 1063]
  1100. 1999-05-12    <stanton@scriptics.com>
  1101. * doc/tclsh.1: Updated references to rc script names to accurately
  1102. reflect the platform differences on Windows.
  1103. * tests/regexp.test: 
  1104. * generic/tclInt.h: 
  1105. * generic/tclBasic.c: 
  1106. * generic/tclRegexp.h:
  1107. * generic/tclRegexp.c: Replaced the per-interpreter regexp cache
  1108. with a per-thread cache.  Changed the Regexp object to take
  1109. advantage of this extra cache.  Added a reference count to the
  1110. TclRegexp type so regexps can be shared by multiple objects.
  1111. Removed the per-interp regexp cache from the interpreter.  Now
  1112. regexps can be used with no need for an interpreter. [Bug: 1063]
  1113. * win/tclWinInit.c (TclpSetVariables): Avoid calling GetUserName
  1114. if the value can be determined from the USERNAME environment
  1115. variable.  GetUserName is very slow.
  1116. 1999-05-07    <stanton@scriptics.com>
  1117. * win/winDumpExts.c: 
  1118. * win/makefile.vc: Removed incorrect patch. [Bug: 1998]
  1119. * generic/tcl.decls: Replaced const with CONST.
  1120. * generic/tclResult.c (Tcl_AppendResultVA): 
  1121. * generic/tclStringObj.c (Tcl_AppendStringsToObjVA): Fixed to copy
  1122. arglist using memcpy instead of assignment so it works properly on
  1123. OS/390. [Bug: 1997]
  1124. * generic/tclLoadNone.c: Updated to use current interfaces, added
  1125. TclpUnloadFile. [Bug: 2003]
  1126. * win/winDumpExts.c: 
  1127. * win/makefile.vc: Changed to emit library name in defs
  1128. file. [Bug: 1998]
  1129. * unix/configure.in: Added fix for OS/390. [Bug: 1976]
  1130. 1999-05-06    <stanton@scriptics.com>
  1131. * tests/string.test: 
  1132. * generic/tclCmdMZ.c: 
  1133. * doc/string.n: Fixed bug in string equal/compare code when using
  1134. -length option.  Cleaned up docs a bit more.
  1135. * tests/http.test: Unset "data" array before running tests to
  1136. avoid failures due to previous tests.
  1137. * doc/string.n: 
  1138. * tests/cmdIL.test: 
  1139. * tests/cmdMZ.test: 
  1140. * tests/error.test: 
  1141. * tests/ioCmd.test: 
  1142. * tests/lindex.test: 
  1143. * tests/linsert.test: 
  1144. * tests/lrange.test: 
  1145. * tests/lreplace.test: 
  1146. * tests/string.test: 
  1147. * tests/cmdIL.test: 
  1148. * generic/tclUtil.c: 
  1149. * generic/tclCmdMZ.c: Replaced "string icompare/iequal" with
  1150. -nocase and -length switches to "string compare/equal".  Added a
  1151. -nocase option to "string map".  Changed index syntax to allow
  1152. integer or end?-integer? instead of a full expression.  This is
  1153. much simpler with safeTcl scripts since it avoids double
  1154. substitution issues.
  1155. * doc/Utf.3: 
  1156. * generic/tclStubInit.c: 
  1157. * generic/tclDecls.h: 
  1158. * generic/tclUtf.c:
  1159. * generic/tcl.decls: Added Tcl_UtfNcmp and Tcl_UtfNcasecmp.
  1160. 1999-05-05    <stanton@scriptics.com>
  1161. * win/makefile.vc: Added encoding directory to install-libraries
  1162. target.
  1163. 1999-05-03    <stanton@scriptics.com>
  1164. * doc/string.n: 
  1165. * tests/cmdMZ.test: 
  1166. * tests/string.test: 
  1167. * generic/tclCmdMZ.c (Tcl_StringObjCmd): Changed "string length"
  1168. to avoid regenerating the string rep of a ByteArray object.
  1169. * tests/cmdIL.test: 
  1170. * tests/cmdMZ.test: 
  1171. * tests/error.test: 
  1172. * tests/lindex.test:
  1173. * tests/linsert.test: 
  1174. * tests/lrange.test: 
  1175. * tests/lreplace.test: 
  1176. * tests/string.test: 
  1177. * generic/tclCmdMZ.c (Tcl_StringObjCmd): 
  1178. * generic/tclUtil.c (TclGetIntForIndex): Applied Jeff Hobbs's
  1179. string patch which includes the following changes [Bug: 1845]:
  1180.     - string compare now takes optional length arg (for strncmp
  1181. behavior)
  1182.                             
  1183.             - added string equal (just a few lines of code blended
  1184.                 in with string compare)
  1185.             
  1186.             - added string icompare/iequal for case-insensitive comparisons
  1187.             
  1188.             - string index's index can now be ?end[+-]?expression
  1189.                 I made this change in the private TclGetIntForIndex,
  1190.                 which means that the list commands also benefit, as
  1191.                 well as string range, et al.
  1192.             
  1193.             - added [string repeat string count]
  1194.                 Repeats given string  number of times
  1195.             
  1196.             - added string replace, string equiv to lreplace
  1197.               (quasi opposite of string range):
  1198.                         string replace first last ?string?
  1199.                 Example of use, replacing end of string with ...
  1200.                 should the string be more than 16 chars long:
  1201.                         string replace $string 16 end "..."
  1202.                 This just returns the string len < 16, so it
  1203.                 will only affect the long strings.
  1204.             
  1205.             - added optional first and last args to string to*
  1206.                 This allows you to just affect certain regions of
  1207.                 a string with the command (like just capping the
  1208.                 first letter).  I found the original totitle to
  1209.                 be too draconian to be useful.
  1210.             
  1211.             - added [string map charMap string]
  1212.                 where charMap is a {from to from to} list that equates to
  1213.                 what one might get from [array get].  Each  and 
  1214.                 can be multiple chars (or none at all).  For Tcl/CGI users,
  1215.                 this is a MAJOR speed booster.
  1216. * generic/tclParse.c (Tcl_ParseCommand): Changed to avoid
  1217. modifying eval'ed strings that are already null terminated.
  1218. [Bug: 1793] 
  1219. * tests/binary.test: 
  1220. * generic/tclBinary.c (DupByteArrayInternalRep): Fixed bug where
  1221. type was not being set in duplicated object. [Bug: 1975, 2047]
  1222. 1999-04-30    <stanton@scriptics.com>
  1223. * Changed version to 8.1.1.
  1224. 1999-04-30    <stanton@scriptics.com>
  1225. * Merged changes from 8.1.0 branch:
  1226. * generic/tclParse.c: Fixed memory leak in CommandComplete.
  1227. * generic/tclPlatDecls.h: 
  1228. * generic/tclIntPlatDecls.h: 
  1229. * generic/tclIntDecls.h: 
  1230. * generic/tclDecls.h: 
  1231. * tools/genStubs.tcl: Added 'extern "C" {}' block around the stub
  1232. table pointer declaration so the stub library can be used from
  1233. C++. [Bug: 1934]
  1234. * Lots of documentation and other release engineering fixes.
  1235. 1999-04-28    <stanton@scriptics.com>
  1236. * mac/tclMacResource.c: 
  1237. * generic/tclListObj.c: 
  1238. * generic/tclObj.c: 
  1239. * generic/tclStringObj.c: Changed to avoid freeing the string
  1240. representation before freeing the internal rep.  This helps with
  1241. debugging since the string rep will still be valid when the free
  1242. proc is invoked.
  1243. 1999-04-27    <stanton@scriptics.com>
  1244. * generic/tclLiteral.c (TclHideLiteral): Fixed so hidden literals
  1245. get duplicated to avoid accidental sharing in the global object
  1246. table. 
  1247. 1999-04-23    <stanton@scriptics.com>
  1248. * generic/tclStubInit.c: 
  1249. * tools/genStubs.tcl: Changed to avoid the need for forward
  1250. declarations in stub initializers.
  1251. 1999-04-23    <stanton@scriptics.com>
  1252. * library/encoding/koi8-r.enc:
  1253. * tools/encoding/koi8-r.txt: Added support for the koi8-r Cyrillic
  1254. encoding. [Bug: 1771]
  1255. 1999-04-22    <stanton@scriptics.com>
  1256. * win/tclWinFCmd.c:
  1257. * win/tclWin32Dll.c: Changed uses of "try" to "__try", since that
  1258. is the actual keyword.  This eliminates the need for some -D flags
  1259. from the makefile.
  1260. * generic/tclPort.h: Added include of tcl.h since it defines
  1261. various Windows macros that are needed before deciding which
  1262. platform porting file to use.
  1263. * generic/tclEvent.c: lint
  1264. * win/tclWinInit.c (TclpInitPlatform): Added call to TclWinInit
  1265. when building a static library since DllMain will not be invoked.
  1266. This could break old code that explicitly called TclWinInit, but
  1267. should be simpler in the long run.
  1268. 1999-04-22  Scott Stanton  <stanton@scriptics.com>
  1269. * generic/tclInt.h: 
  1270. * generic/tclInt.decls: 
  1271. * generic/tclCompile.c: Added TclSetByteCodeFromAny that takes a
  1272. hook procedure to invoke after compilation but before the byte
  1273. codes are emitted.  This makes it possible to do postprocessing on
  1274. the compiled byte codes before the ByteCode is generated.
  1275. * generic/tclLiteral.c: Added TclHideLiteral and TclAddLiteralObj
  1276. to make it possible to create local unshared literal objects.
  1277. * win/tclWinInit.c:
  1278. * unix/tclUnixInit.c: Changed initial search path to match that
  1279. found used by tcl_findLibrary.
  1280. 1999-04-22    <redman@scriptics.com>
  1281. * win/tclWinPort.h:
  1282. * win/tclWinSock.c: Added code to use WinSock 2.0 API on NT to
  1283. avoid creating a window to handle sockets.  API not available on
  1284. Win95 and needs to be fixed on Win98, until then continue to use
  1285. the older (window-based) scheme on those two OSes.
  1286. 1999-04-15    <stanton@scriptics.com>
  1287. * Merged 8.1 back into the main trunk
  1288. 1999-04-13    <stanton@scriptics.com>
  1289. * library/encoding/gb2312.enc:
  1290. * library/encoding/euc-cn.enc:
  1291. * tools/encoding/gb2312.txt:
  1292. * tools/encoding/cp950.txt:
  1293. * tools/encoding/Makefile: Restored the double byte definition of
  1294. GB2312 and added the EUC-CN encoding.  EUC-CN is a variant of
  1295. GB2312 that shifts the characters into bytes with the high bit set
  1296. and includes ASCII as a subset. [Bug: 632]
  1297. 1999-04-13    <redman@scriptics.com>
  1298. * win/tclWinSock.c: Apply patch to allow write access to a socket
  1299. if FD_WRITE is sent but FD_CONNECT is not.  Some strange problem
  1300. with either Win32 or a socket driver.  [Bug: 1664 1776]
  1301. 1999-04-09    <redman@scriptics.com>
  1302. * unix/tclUnixNotfy.c: Fixed notifier deadlock situation when the
  1303. pipe used to talk back notifier thread is filled with data.  When
  1304. calling the write() function to feed data down that pipe, unlock
  1305. the notifierMutex to allow the notifier to wake up again.  Found
  1306. as a result of the focus.test for Tk hanging. [Bug: 1700]
  1307. 1999-04-06    <stanton@scriptics.com>
  1308. * tests/unixNotfy.test: Fixed hang in tests when built with thread
  1309. support. 
  1310. * tests/httpold.test: Fixed broken test that didn't wait long
  1311. enough for events to arrive.
  1312. * tests/unixInit.test: Fixed race condition in test.
  1313. * tests/unixInit.test: 
  1314. * tests/fileName.test: Minor test nits.
  1315. * unix/tclUnixInit.c (TclpSetInitialEncodings): Fixed bad initial
  1316. encoding string.
  1317. 1999-04-06    <surles@scriptics.com>
  1318. * generic/tclVar.c: 
  1319. * generic/tclEnv.c: Moved the "array set" C level code into a
  1320. common routine (TclArraySet).  The TclSetupEnv routine now uses
  1321. this API to create an env array w/ no elements.
  1322. * generic/tclEnv.c:
  1323. * generic/tclWinInit.h:
  1324. * generic/tclUnixInit.h:
  1325. * generic/tclInt.h: Made the Env module I18N compliant.  Changed the
  1326. FindVariable routine to TclpFindVariable, that now does a case
  1327. insensitive string comparison on Windows, and not on UNIX. [Bug:
  1328. 1299, 1500]
  1329. 1999-04-05    <stanton@scriptics.com>
  1330. * tests/io.test: Minor test cleanup.
  1331. * generic/tclEncoding.c (Tcl_CreateEncoding): Minor lint to make
  1332. it easier to compile on Digital-unix. [Bug: 1659]
  1333. * unix/configure.in: 
  1334. * unix/tclUnixPort.h: Applied patch for OS/390 to handle lack of
  1335. sys/param.h. [Bug: 1725]
  1336. * unix/configure.in: Fixed BSD/OS 4.* configuration to support
  1337. shared libraries properly. [Bug: 1730]
  1338. 1999-04-05    <redman@scriptics.com>
  1339. * win/tclWinDde.c: decrease timeout value for DDE calls to 30k
  1340. [Bug: 1639]
  1341. * generic/tcl.decls:
  1342. * generic/tcl.h:
  1343. * generic/tclDecls.h:
  1344. * generic/tclInt.decls:
  1345. * generic/tclInt.h:
  1346. * generic/tclIntDecls.h:
  1347. * generic/tclStubInit.c:
  1348. * generic/tclUtil.c: Added more functions to the Tcl stubs table,
  1349. including all Tcl_ functions not already in it (except Cmd
  1350. functions) and Tcl_GetCwd() and Tcl_Chdir() (new functions).
  1351. * tests/safe.test:
  1352. * doc/safe.n:
  1353. * generic/tclBasic.c:
  1354. * library/safe.tcl: The encoding command is not safe as-is, so
  1355. create a safe alias to mask out the "encoding system <name>" but
  1356. allow all other uses including "encoding system". Added test cases
  1357. and updated the man page for Safe Tcl.
  1358. 1999-04-05    <stanton@scriptics.com>
  1359. * tests/winTime.test: 
  1360. * win/tclWinTime.c: Fixed crash in clock command that occurred
  1361. when manipulating negative time values in timezones east of
  1362. GMT. [Bug: 1142, 1458]
  1363. * tests/platform.test: 
  1364. * tests/fileName.test: Fixed broken tests.
  1365. * generic/tclFileName.c: Moved global regexps into thread local
  1366. storage.
  1367. * tests/socket.test: Changed so tests don't reuse sockets,
  1368. since Windows is slow to release sockets.
  1369. * win/tclWinConsole.c: 
  1370. * win/tclWinPipe.c: 
  1371. * win/tclWinSerial.c: Fixed race condition where background
  1372. threads were terminated while they still held a lock in the
  1373. notifier. 
  1374. 1999-04-02    <stanton@scriptics.com>
  1375. * tests/http.test: Fixed bad test initialization code.
  1376. * generic/tclThreadTest.c (ThreadExitProc): Fixed bug where static
  1377. memory was being returned instead of a dynamically allocated
  1378. result in error cases.
  1379. 1999-04-02    <redman@scriptics.com>
  1380. * doc/dde.n:
  1381. * tools/tcl.wse.in:
  1382. * win/makefile.vc:
  1383. * win/pkgIndex.tcl:
  1384. * win/tclWinDde.c:  Add new DDE package, code removed from Tk now
  1385. separated into its own package.  Changed DDE-based send code into
  1386. "dde eval" command.  Can be loaded into tclsh (not just wish).
  1387. Windows only.
  1388. 1999-04-02    <stanton@scriptics.com>
  1389. * tests/expr.test: 
  1390. * tests/for-old.test: 
  1391. * tests/for.test: 
  1392. * tests/foreach.test: 
  1393. * tests/format.test: 
  1394. * tests/httpold.test: 
  1395. * tests/if.test: 
  1396. * tests/init.test: 
  1397. * tests/interp.test: 
  1398. * tests/while.test:  Added some tests for known bugs (marked with
  1399. knownBug constraint), and cleaned up a few bad tests.
  1400. * generic/regc_locale.c: 
  1401. * generic/regcustom.h: 
  1402. * generic/tcl.decls: 
  1403. * generic/tclCmdIL.c: 
  1404. * generic/tclCmdMZ.c: 
  1405. * generic/tclInt.h: 
  1406. * generic/tclRegexp.c: 
  1407. * generic/tclScan.c: 
  1408. * generic/tclTest.c:
  1409. * generic/tclUtf.c: 
  1410. * win/tclWinFCmd.c: 
  1411. * win/tclWinFile.c: Made various Unicode utility functions
  1412. public. The following functions were made public and added to the
  1413. stubs table: 
  1414. Tcl_UtfToUniCharDString, Tcl_UniCharToUtfDString,
  1415. Tcl_UniCharLen, Tcl_UniCharNcmp, Tcl_UniCharIsAlnum,
  1416. Tcl_UniCharIsAlpha, Tcl_UniCharIsDigit, Tcl_UniCharIsLower,
  1417. Tcl_UniCharIsSpace, Tcl_UniCharIsUpper, Tcl_UniCharIsWordChar
  1418. 1999-04-01    <stanton@scriptics.com>
  1419. * tests/registry.test: 
  1420. * win/tclWinReg.c: Internationalized the registry code.  It now
  1421. uses Unicode interfaces on NT. [Bug: 1197]
  1422. * tests/parse.test: 
  1423. * generic/tclParse.c: Fixed crash due to multiple frees in parser
  1424. during error cleanup when parsing commands with more tokens than
  1425. will fit in the static area of the parse structure. [Bug: 1681]
  1426. * generic/tclInt.h: Removed duplicate declarations.
  1427. * generic/tclInt.decls: 
  1428. * generic/tcl.decls: Added Tcl_WinUtfToTChar and Tcl_WinTCharToUtf
  1429. to the tclPlat table.
  1430. 1999-04-01    <redman@scriptics.com>
  1431. * generic/tcl.decls:
  1432. * generic/tcl.h:
  1433. * generic/tclBasic.c:
  1434. * generic/tclDecls.h:
  1435. * generic/StubInit.c:
  1436. * tools/genStubs.tcl:
  1437. * unix/Makefile.in:
  1438. * win/makefile.vc: Applied patch from Jan Nijtmans to fix Ultrix
  1439. multiple symbol definition problem.  Now, even Tcl includes a copy
  1440. of the Tcl stub library.  Also fixed TCL_MEM_DEBUG mode (for Tk).
  1441. 1999-03-31    <redman@scriptics.com>
  1442. * win/tclWinConsole.c: WinNT has a bug when reading a single
  1443. character from the console.  Rewrote the code for the console to
  1444. read an entire line at a time using the reader thread.
  1445. 1999-03-30    <stanton@scriptics.com>
  1446. * unix/Makefile.in: Removed trailing backslash that broke the
  1447. "depend" target.
  1448. * unix/tclUnixInit.c (TclpSetInitialEncodings): Changed to avoid
  1449. calling setlocale().  We now look directly at env(LANG) and
  1450. env(LC_CTYPE) instead. [Bug: 1636]
  1451. * generic/tclFileName.c: 
  1452. * generic/tclDecls.h: 
  1453. * generic/tcl.decls: Removed CONST from Tcl_JoinPath and
  1454. Tcl_TranslateFileName because it changes the signature of
  1455. Tcl_JoinPath in an incompatible manner.
  1456. * generic/tclInt.h: 
  1457. * generic/tclLoad.c (TclFinalizeLoad): 
  1458. * generic/tclEvent.c (Tcl_Finalize): Defer unloading of loadable
  1459. modules until all exit handlers have been invoked.
  1460. [Bug: 998, 1273, 1573, 1593]
  1461. 1999-03-29    <stanton@scriptics.com>
  1462. * generic/tclFileName.c: 
  1463. * generic/tclDecls.h: 
  1464. * generic/tcl.decls: Added CONST to Tcl_JoinPath and
  1465. Tcl_TranslateFileName.
  1466. 1999-03-29    <redman@scriptics.com>
  1467. * tools/genStubs.tcl:
  1468. * unix/configure.in:
  1469. * unix/Makefile.in:
  1470. * win/makefile.vc:
  1471. * generic/tcl.h:
  1472. * generic/tclBasic.c:
  1473. * generic/tclDecls.h:
  1474. * generic/tclIntDecls.h:
  1475. * generic/tclPlatDecls.h:
  1476. * generic/tclIntPlatDecls.h: Removed the stub functions and
  1477. changed the stub macros to just use the name without params. Pass
  1478. &tclStubs into the interp (don't use tclStubsPtr because of
  1479. collisions with the stubs on Solaris).
  1480. 1999-03-27    <redman@scriptics.com>
  1481. * win/makefile.bc: Removed makefile for Borland compiler, no
  1482. longer supported.
  1483. 1999-03-26    <redman@scriptics.com>
  1484. * win/tclWinSerial.c:
  1485. * win/tclWinConsole.c:
  1486. * win/tclWinPipe.c: Don't close the Win32 handle for a channel if
  1487. it's a stdio handle (GetStdHandle()) during shutdown of a thread
  1488. to prevent it from destroying the stdio of other threads.
  1489. 1999-03-26    <suresh@scriptics.com>
  1490. * unix/configure.in
  1491. --nameble-shared is now the default and build Tcl as a shared
  1492. library; specify --disable-shared to build a static Tcl library
  1493. and shell.
  1494. 1999-03-25    <stanton@scriptics.com>
  1495. * tests/interp.test: 
  1496. * generic/tclInterp.c (AliasObjCmd): Changed so aliases are
  1497. invoked at current scope in the target interpreter instead of at
  1498. the global scope.  This was an incompatibility introduced in 8.1
  1499. that is being removed. [Bug: 1153, 1556]
  1500. * library/encoding/big5.enc:
  1501. * library/encoding/gb2312.enc:
  1502. * tools/encoding/big5.enc:
  1503. * tools/encoding/gb2312.enc: Added ASCII to big5 and gb2312
  1504. encodings. [Bug: 632]
  1505. * generic/tclPkg.c (Tcl_PkgRequireEx): Fixed broken clientData
  1506. initialization in package code.
  1507. * unix/Makefile.in (dist): Added tcl.decls and tclInt.decls to
  1508. source distribution. [Bug: 1571]
  1509. * doc/Thread.3: Updated documentation of Tcl_MutexLock to indicate
  1510. that the recursive locking behavior is undefined.  On Windows, it
  1511. does not block, on Unix it deadlocks. [Bug: 1275]
  1512. 1999-03-24    <stanton@scriptics.com>
  1513. * tests/execute.test: 
  1514. * generic/tclExecute.c (TclExecuteByteCode): Fixed expression code
  1515. that incorrectly returned floating point values for integers if
  1516. the internal rep happened to be a double.  Now we check to see if
  1517. the object has a string rep that looks like an integer before
  1518. using the double internal rep. [Bug: 1516]
  1519. 1999-03-24    <redman@scriptics.com>
  1520. * generic/tclAlloc.c:
  1521. * generic/tclEncoding.c:
  1522. * generic/tclProc.c:
  1523. * unix/tclUnixTime.c:
  1524. * win/tclWinSerial.c: Fixed compilation warnings/errors for VC++
  1525. 5.0 and 6.0 and HP-UX native compiler without -Aa or -Ae. 
  1526. [Bug: 1323 1518 1324 1583 1585 1586]
  1527. * win/tclWinSock.c: Make sockets thread-safe on Windows. The
  1528. current implementation uses windows to handle events on the
  1529. socket, one for each thread (thread local storage). Previously,
  1530. there was only one window shared between threads, which didn't
  1531. work. [Bug: 1326]
  1532. 1999-03-23    <stanton@scriptics.com>
  1533. * tools/tcl.wse: Fixed file association to look in the right place
  1534. for the wish icon. [Bug: 1544]
  1535. * tests/winNotify.test: 
  1536. * tests/ioCmd.test: 
  1537. * tests/event.test: Changed to use new style conditionals.
  1538. * tests/encoding.test: Fixed nonportable test.
  1539. * unix/dltest/configure.in: 
  1540. * unix/dltest/Makefile.in: Added missing DBGX macros. [Bug: 1564]
  1541. * tests/winNotify.test: 
  1542. * mac/tclMacNotify.c: 
  1543. * win/tclWinNotify.c: 
  1544. * unix/tclUnixNotfy.c:
  1545. * generic/tclNotify.c: Added a new Tcl_ServiceModeHook interface
  1546. that is invoked whenever the service mode changes.  This is needed
  1547. to allow the Windows notifier to create a communication window the
  1548. first time Tcl is about to enter an external modal event loop
  1549. instead of at startup time.  This will avoid the various problems
  1550. that people have been seeing where the system hangs when tclsh
  1551. is running outside of the event loop. [Bug: 783]
  1552. * generic/tclInt.h: 
  1553. * generic/tcl.decls: Renamed TclpAlertNotifier back to
  1554. Tcl_AlertNotifier since it is part of the public notifier driver
  1555. API.
  1556. 1999-03-23    <redman@scriptics.com>
  1557. * win/tclWinSerial.c: Fixed problem with fileevent on the serial
  1558. port and nonblocking mode.  Gets no longer hangs, fileevents fire
  1559. whenever there is any character data on the port.
  1560. * tests/winConsole.test:
  1561. * win/tclWinConsole.c: Fixed problem with fileevents and gets from
  1562. a console stdin.  Previously, fileevents were firing before an
  1563. entire line was available for reading, which meant that when you
  1564. did a gets or read, it blocked (even in nonblocking mode). Now, it
  1565. should work the same as Unix: fileevents fire when an entire line
  1566. is ready, and gets and read do not block in non-blocking mode.
  1567. Added an interactive test case to check for this.
  1568. 1999-03-22    <stanton@scriptics.com>
  1569. * tests/reg.test: 
  1570. * generic/regc_color.c: Applied regexp bug fix from Henry Spencer.
  1571. 1999-03-19    <redman@scriptics.com>
  1572. * generic/tclCmdIL.c: Fixed the initialization of an array so that
  1573.   the Sun 5.0 C compiler wouldn't complain.
  1574. * unix/configure.in: Added support for --enable-64bit.  For now,
  1575.   this is only supported on Solaris 7 64bit (SunOS 5.7) using the Sun 
  1576. compiler (not gcc).
  1577. 1999-03-18    <stanton@scriptics.com>
  1578. * win/tclWinChan.c (TclpOpenFileChannel, Tcl_MakeFileChannel):
  1579. Changed to only test for console or comm handles when the type is
  1580. FILE_TYPE_CHAR to avoid useless tests on simple files.  Also
  1581. reordered tests so consoles are tested first as this is more
  1582. common.
  1583. * win/makefile.vc: Regularized usage of mkd and rmd and rm.
  1584. * library/encoding/shiftjis.enc: 
  1585. * tools/encoding/shiftjis.txt: Missing/incorrect characters in
  1586. shift-jis table. [Bug: 1008, 1526]
  1587. * generic/tclInt.decls:
  1588. * generic/tcl.decls: Eliminated use of "string" and "list" from
  1589. argument lists to avoid conflicts with C++ STL. [Bug: 1181]
  1590. * win/tclWinFile.c (TclpMatchFiles): Changed to ignore the
  1591. FS_CASE_IS_PRESERVED bit and always return exactly what we get
  1592. from the system.
  1593. 1999-03-17    <stanton@GASPODE>
  1594. * win/README.binary: 
  1595. * win/README: 
  1596. * unix/configure.in: 
  1597. * generic/tcl.h: 
  1598. * README: Updated version to 8.1b3.
  1599. 1999-03-14    <stanton@GASPODE>
  1600. * win/tclWinConsole.c: 
  1601. * win/tclWinPipe.c: 
  1602. * win/tclWinSerial.c: Changed so channel drivers wait for the
  1603. reader/writer threads to exit before returning during a close
  1604. operation.  This ensures that the main thread is the last thread
  1605. to exit, so the process return value is set properly.
  1606. * generic/tclIntDecls.h: 
  1607. * generic/tclIntPlatDecls.h: 
  1608. * generic/tclIntPlatStubs.c: 
  1609. * generic/tclIntStubs.c: 
  1610. * generic/tclPlatDecls.h: 
  1611. * generic/tclPlatStubs.c: 
  1612. * generic/tclStubInit.c: 
  1613. * generic/tclStubs.c: Fixed bad eol characters.
  1614. * generic/tclInt.decls: Changed "const" to "CONST" in
  1615. declarations for better portability.
  1616. * generic/tcl.decls: Renamed panic and panicVA to Tcl_Panic and
  1617. Tcl_PanicVA in the stub files.
  1618. * generic/tclInterp.c (Tcl_MakeSafe): Remove tcl_platform(user)
  1619. from safe interps.
  1620. 1999-03-11    <stanton@GASPODE>
  1621. * unix/Makefile.in:
  1622. * unix/configure.in: Include compat files in the stub library in
  1623. addition to the main library.  Compat files are now built for
  1624. dynamic use in all cases.
  1625. * generic/tcl.h: Changed magic number so it doesn't match the plus
  1626. patch, at Jan's request.
  1627. * unix/tclConfig.sh.in:
  1628. * unix/dltest/Makefile.in:
  1629. * unix/dltest/configure.in:
  1630. * unix/dltest/pkga.c:
  1631. * unix/dltest/pkgb.c:
  1632. * unix/dltest/pkgc.c:
  1633. * unix/dltest/pkgd.c:
  1634. * unix/dltest/pkge.c:
  1635. * unix/dltest/pkgf.c: Changed package tests to build against the
  1636. stubs library.
  1637. 1999-03-10    <stanton@GASPODE>
  1638. * generic/tcl.h: 
  1639. * generic/tcl.decls: Changed Tcl_ReleaseType from an enum to
  1640. macros so it can be used in .rc files.
  1641. Added Tcl_GetString.
  1642. * mac/tclMacNotify.c:
  1643. * generic/tclNotify.c:
  1644. * generic/tclInt.h: 
  1645. * win/tclWinNotify.c: 
  1646. * generic/tcl.h: Renamed Tcl_AlertNotifier to TclpAlertNotifier.
  1647. * generic/tclInt.decls: Added TclWinAddProcess to make it possible
  1648. for expect to use Tcl_WaitForPid().  This patch is from Gordon
  1649. Chaffee. 
  1650. * mac/tclMacPort.h: 
  1651. * win/tclWinInit.c: 
  1652. * unix/tclUnixPort.h: 
  1653. * generic/tclAsync.c: Added TclpAsyncMark to fix bug in async
  1654. handling on Windows where async events don't wake up the event
  1655. loop.  This patch comes from Gordon Chaffee.
  1656. * generic/tcl.decls: Fixed declarations of reserved slots.
  1657. 1999-03-10    <redman@scriptic.com>
  1658. * generic/tclCompile.h: Ensure that the ByteCode struct is binary
  1659. compatible with the version in 8.0.6.
  1660. * generic/tcl.h:
  1661. * generic/tclBasic.c: Add Tcl_GetVersion() function to the public
  1662. C API to allow programs to check the version number of the Tcl
  1663. library at runtime.  Also added an enum to clarify the release
  1664. level (alpha, beta, final).
  1665. 1999-03-09    <stanton@GASPODE>
  1666. * Integrated changes from Tcl 8.0 including:
  1667. stubs mechanism
  1668. configure patches from Jan Nijtmans
  1669. rename of panic to Tcl_Panic
  1670. 1999-03-08    <lfb@scriptics.com>
  1671. * win/tclWin32Dll.c: Removed Dll instance from thread-local
  1672. storage.
  1673. 1999-03-08    <stanton@GASPODE>
  1674. * generic/tcl.h: Moved Tcl_Mutex, etc. macros above the inclusion
  1675. of tclDecls.h to avoid macro conflicts.
  1676. * generic/tclInt.h:
  1677. * generic/regc_color.c: 
  1678. * generic/regcomp.c:
  1679. * generic/tclCmdIL.c:
  1680. * generic/tclCmdAH.c:
  1681. * generic/tclIOCmd.c:
  1682. * generic/tclParse.c:
  1683. * generic/tclStringObj.c:
  1684. * unix/tclUnixNotfy.c: Cleaned up various compiler warnings,
  1685. eliminated UCHAR bugs.
  1686. * unix/tclUnixNotfy.c:
  1687. * unix/tclUnixThrd.c:
  1688. * generic/tclThreadTest.c:
  1689. * mac/tclMacThrd.c: Changed TclpCondition*() to Tcl_Condition*().
  1690. * INTEGRATED PATCHES FROM 8.0.6:
  1691. * generic/tcl.decls:
  1692. * generic/tcl.h:
  1693. * generic/tclBasic.c: 
  1694. * generic/tclDecls.h:
  1695. * generic/tclInt.decls:
  1696. * generic/tclInt.h: 
  1697. * generic/tclIntDecls.h:
  1698. * generic/tclIntPlatDecls.h:
  1699. * generic/tclIntPlatStubs.c:
  1700. * generic/tclIntStubs.c:
  1701. * generic/tclPlatDecls.h:
  1702. * generic/tclPlatStubs.c:
  1703. * generic/tclStubInit.c:
  1704. * generic/tclStubLib.c:
  1705. * generic/tclStubs.c:
  1706. * tools/genStubs.tcl:
  1707. * unix/configure.in:
  1708. * unix/Makefile.in:
  1709. * unix/tclConfig.sh.in:
  1710. * win/makefile.vc:  
  1711. * win/tclWinPort.h: Added Tcl stubs implementation.  There are
  1712. now two new macros USE_TCL_STUBS and USE_TCL_STUB_PROCS that
  1713. enable use of stubs and disable stub macros respectively.  All of
  1714. the public and private function declarations from tcl.h and
  1715. tclInt.h have moved into the *.decls files and the *Stubs.c and
  1716. *Decls.h files are generated using the genStubs.tcl script.
  1717. * unix/Makefile.in:
  1718. * unix/configure.in: 
  1719. * unix/ldAix: Enhanced AIX shared library support.
  1720. * win/tclWinSock.c: Removed a bunch of extraneous PASCAL FAR
  1721. attributes from internal functions.
  1722. * win/tclWinReg.c: Changed registry package to use stubs mechanism
  1723. so it no longer depends on the specific version of Tcl.
  1724. * doc/AddErrInfo.3: 
  1725. * doc/Eval.3: 
  1726. * doc/PkgRequire.3: 
  1727. * doc/SetResult.3: 
  1728. * doc/StringObj.3: 
  1729. * generic/tcl.h:
  1730. * generic/tclBasic.c: 
  1731. * generic/tclPanic.c:
  1732. * generic/tclStringObj.c:
  1733. * generic/tclUtil.c:
  1734. * unix/mkLinks: Added va_list versions of all VARARGS
  1735. functions so they can be invoked from the stub functions.
  1736. * doc/package.n: 
  1737. * doc/PkgRequire.3: 
  1738. * generic/tclPkg.c: Added Tcl_PkgProvideEx, Tcl_RequireEx,
  1739. Tcl_PresentEx, and Tcl_PkgPresent.  Added "package present"
  1740. command.
  1741. * generic/tclFileName.c: 
  1742. * mac/tclMacFile.c: 
  1743. * mac/tclMacShLib.exp: 
  1744. * unix/tclUnixFile.c: 
  1745. * win/tclWinFile.c: Changed so TclGetUserHome is defined on
  1746. all platforms, even though it is currently a noop on mac and
  1747. windows, and renamed it to TclpGetUserHome.
  1748. * generic/tclPanic.c:
  1749. * generic/panic.c: Renamed panic to Tcl_Panic.
  1750. 1999-02-25    <redman@scriptics.com>
  1751. * win/makefile.vc: Added tclWinConsole.c and tclWinSerial.c
  1752. * win/tclWinConsole.c: New code to properly deal with fileevents
  1753. and nonblocking mode on consoles.
  1754. * win/tclWinSerial.c: New code to properly deal with fileevents
  1755. and nonblocking mode on serial ports.
  1756. * win/tclWinPipe.c: 
  1757. * win/tclWinPort.h: Exported functions to allow creation of pipe
  1758. channels from tclWinChan.c
  1759. * win/tclWinChan.c: Check the type of a channel, including for the
  1760. standard (stdin/stdout/stderr), and use the correct channel type
  1761. to create the channel (file, serial, console, or pipe).
  1762. 1999-02-11    <stanton@GASPODE>
  1763. * README: 
  1764. * generic/tcl.h: 
  1765. * win/README.binary: 
  1766. * win/README: 
  1767. * unix/configure.in: 
  1768. * mac/README: Updated version numbers to 8.1b2.
  1769. 1999-02-10    <stanton@GASPODE>
  1770. * library/auto.tcl: Fixed auto_mkindex so it handles .tbc files.
  1771. Did some general cleanup to handle bad eval statements that didn't
  1772. use "list".
  1773. * unix/mkLinks:
  1774. * doc/SetVar.3:
  1775. * generic/tcl.h:
  1776. * generic/tclVar.c: Restored Tcl_ObjGetVar2 and Tcl_ObjSetVar2
  1777. from 8.0. Renamed Tcl_Get/SetObjVar2 to Tcl_GetVar2Ex and
  1778. Tcl_SetVar2Ex.
  1779. 1999-02-10    <stanton@GASPODE>
  1780. INTEGRATED PATCHES FROM 8.0.5b2: 
  1781. * test/winPipe.test: Changed to remove echoArgs.tcl temporary file
  1782. when done.
  1783. * tests/cmdAH.test:
  1784. * generic/tclFileName.c (TclGetExtension): Changed behavior so the
  1785. split happens at the last period in the name instead of the first
  1786. period of the last run of periods.  So, "foo..o" is split into
  1787. "foo." and ".o" now. [Bug: 1126]
  1788. * win/makefile.vc: Added better support for paths with spaces in
  1789. the name. Added .lib and support .dlls to the install-binaries
  1790. target.  Added generate of a pkgIndex.tcl script to the
  1791. install-libraries target.
  1792. * win/tclAppInit.c: 
  1793. * unix/tclAppInit.c: 
  1794. * mac/tclMacAppInit.c: 
  1795. * generic/tclTest.c: Changed some EXTERN declarations to extern
  1796. since they are not defining exported interfaces.  This avoids
  1797. generating useless declspec() attributes and makes the windows
  1798. makefile simpler.
  1799. * generic/tcl.h: Moved Tcl_AppInit declaration to end and cleared
  1800. out TCL_STORAGE_CLASS so it is not declared with a declspec().
  1801. * tests/interp.test:
  1802. * generic/tclInterp.c (DeleteAlias): Changed to use
  1803. Tcl_DeleteCommandFromToken so we handle renames properly. This
  1804. avoids senseless panic. [Bug: 736]
  1805. * unix/tclUnixChan.c: 
  1806. * win/tclWinSock.c: 
  1807. * doc/socket.n: Applied Gordon Chaffee's patch to handle failures
  1808. during asynchronous socket connection operations.  This adds a new
  1809. "-error" fconfgure option to socket channels. [Bug: 893]
  1810. * generic/tclProc.c:
  1811. * generic/tclNamesp.c:
  1812. * generic/tclInt.h: 
  1813. * generic/tclCmdIL.c: 
  1814. * generic/tclBasic.c: 
  1815. * generic/tclVar.c: Applied patch from Viktor Dukhovni to
  1816. rationalize TCL_LEAVE_ERR_MSG behavior when creating variables.
  1817. * generic/tclVar.c: Fixed bug in namespace tail computation.
  1818. Fixed bug where upvar could resurrect a namespace variable whose
  1819. namespace had been deleted.
  1820. * generic/tclCompile.c (TclCompileExprCmd): Eliminated yet another
  1821. bogus optimization in expression compilation.
  1822. * unix/configure.in: Added branch for BSD/OS-4* to shared library
  1823. case statement. [Bug: 975]
  1824. Fixed to correctly handle IRIX 6.5 n32 library support. [Bug: 1117]
  1825. * win/winDumpExts.c: Patched to be pickier about stripping
  1826. @'s. [Bug: 920]
  1827. * library/http2.0/http.tcl: Added catch around eof test in
  1828. CopyDone since the user may have already called http::reset.
  1829. [Bug: 1108] 
  1830. * unix/configure.in: Changed Linux and IRIX to set SHLIB_LIBS to
  1831. LIBS so shared libraries are linked with the system
  1832. libraries. [Bug: 1018]
  1833. * generic/tclCompile.c (CompileExprWord): Fixed exception stack
  1834. overflow bug caused by missing statement. [Bug: 928]
  1835. * generic/tclIOCmd.c: 
  1836. * generic/tclBasic.c: Objectified the "open" command. [Bug: 1113] 
  1837. * generic/tclPosixStr.c (Tcl_ErrnoId, Tcl_ErrnoMsg): When using
  1838. egcs, ENOTSUP and EOPNOTSUPP are the same, so now we handle that
  1839. case. [Bug: 1137]
  1840. * library/init.tcl: Various small changes requested by Jan Nijtmans.
  1841. - If the variable $tcl_library contains the empty string, this
  1842. empty string will be put in $auto_path. This is not useful at all,
  1843. it only slows down later package processing.
  1844. - If the variable tcl_pkgPath is not set, the "unset __dir"
  1845. fails. Thich makes init.tcl totally unusable. Better put a "catch"
  1846. around it. 
  1847. - In the function tcl_findLibraries, the "string match" function
  1848. only works correctly if $tcl_patchLevel is in one of the forms
  1849. "?.?a?", "?.?b?" or "?.?.?". Could a "regexp" be used instead,
  1850. then it allows anything to be appended to the patchLevel
  1851. string. And it is more efficient.
  1852. - The tclPkgSetup function assumes that if $type != "load" then
  1853. the type must be "source". This needn't be true. Some users want
  1854. to add their own setup types.
  1855. [RFE: 1138] [Bug: 978]
  1856. * win/tclWinReg.c: 
  1857. * doc/registry.n: Added support for HKEY_PERFORMANCE_DATA and
  1858. HKEY_DYN_DATA keys. [Bug: 1109]
  1859. * win/tclWinInit.c (TclPlatformInit): Added code to ensure
  1860. tcl_pkgPath is set to "" when no registry entry is found. [Bug: 978]
  1861. 1999-02-01    <stanton@GASPODE>
  1862. * generic/tclBasic.c:
  1863. * generic/tclCmdAH.c:
  1864. * generic/tclCmdIL.c:
  1865. * generic/tclCmdMZ.c:
  1866. * generic/tclExecute.c:
  1867. * generic/tclHistory.c:
  1868. * generic/tclIO.c:
  1869. * generic/tclIOUtil.c:
  1870. * generic/tclInterp.c:
  1871. * generic/tclMain.c:
  1872. * generic/tclNamesp.c:
  1873. * generic/tclParse.c:
  1874. * generic/tclProc.c:
  1875. * generic/tclTest.c:
  1876. * generic/tclTimer.c:
  1877. * generic/tcl.h: Made eval interfaces compatible with 8.0 by
  1878. renaming Tcl_EvalObj to Tcl_EvalObjEx, renaming Tcl_Eval2 to
  1879. Tcl_EvalEx and restoring Tcl_EvalObj and Tcl_GlobalEvalObj
  1880. interfaces so they match Tcl 8.0.
  1881. 1999-01-28    <stanton@GASPODE>
  1882. * Merged Tcl 8.0.5b1 changes.
  1883. * generic/tclUtil.c (Tcl_DStringSetLength): Changed so the buffer
  1884. overallocates in a manner similar to Tcl_DStringAppend.  This
  1885. should improve performance for TclUniCharToUtfDString.
  1886. 1998-12-11    === Tcl 8.1b1 Release ===
  1887. 1998-12-10    <stanton@GASPODE>
  1888. * Fixed lots of files that used TCL_THREAD instead of TCL_THREADS.
  1889. * generic/tclEncoding.c (Tcl_FreeEncoding): Moved most of the code
  1890. into a static FreeEncoding routine that does not grab the
  1891. encodingMutex to avoid deadlocks/races when called from other
  1892. routines that already have the mutex.
  1893. 1998-12-09    <stanton@GASPODE>
  1894. * library/msgcat1.0/msgcat.tcl: Fixed bad export list, fixed so
  1895. all locale strings are converted to lower case, including file
  1896. names.
  1897. * generic/regcomp.c (makescan): Fixed bug in longest match case
  1898. that caused anchored patterns to fail. [Bug: 897]
  1899. 1998-12-08    <stanton@GASPODE>
  1900. * library/msgcat1.0/msgcat.tcl: changed mc to invoke mcunknown in
  1901. the calling context, changed locale lookups to be case insensitive
  1902. 1998-12-07    <stanton@GASPODE>
  1903. * generic/tclAlloc.c (TclpRealloc): Fixed a memory allocation bug
  1904. where big blocks that were reallocated into a different heap
  1905. location were not being placed into the bigBlocks list. [Bug: 933]
  1906. * tests/msgcat.test: Added message catalog test suite.
  1907. * library/msgcat1.0/msgcat.tcl: minor bug fixes, integrated latest
  1908. changes from Mark Harrison.
  1909. 1998-12-04    <stanton@GASPODE>
  1910. * library/msgcat1.0/msgcat.tcl: Changed code to conform to Tcl
  1911. coding standards.  Changed to use file join for portability.
  1912. * library/msgcat1.0: Added initial implementaion of Tcl message
  1913. catalog package contributed by Mark Harrison.
  1914. 1998-12-03    <stanton@GASPODE>
  1915. * win/tclWinPipe.c (BuildCommandLine): Fixed bug that kept
  1916. arguments containing spaces from being properly quoted.
  1917. * tests/defs: Changed so auto_path is set to only contain the Tcl
  1918. library directory.  This keeps the tests from accidentally picking
  1919. up stuff in installed packages. 
  1920. * generic/tclUtil.c (Tcl_StringMatch): Changed to match 8.0
  1921. behavior in corner case where there is no closing bracket.
  1922. 1998-12-02    <stanton@GASPODE>
  1923. * win/tclWinPipe.c (TclpCreateCommandChannel): Changed
  1924. reader/writer threads to have THREAD_PRIORITY_HIGHEST so they will
  1925. have a chance to run whenever there is something to do.
  1926. * generic/tclIO.c (WriteBytes, WriteChars): Fixed so extraneous
  1927. flushes do not happen in line mode.
  1928. (TranslateOutputEOL): Made translation more efficient in line mode
  1929. and fixed a buffer overflow bug in CRLF translation. [Bug: 887]
  1930. 1998-12-02    <welch@SAGE>
  1931. * Updated patchlevel to 8.1b1
  1932. 1998-12-02    <stanton@GASPODE>
  1933. * generic/regc_color.c (subcolor): Added check for error case to
  1934. avoid an out of bounds array reference.
  1935. * generic/tclCmdAH.c (Tcl_EncodingObjCmd): Changed to avoid using
  1936. Tcl_DStringResult because it is not binary clean.
  1937. * generic/tclParse.c (Tcl_ParseCommand): Fixed bug in comment
  1938. parsing where a trailing comment looked like an incomplete
  1939. command. 
  1940. 1998-12-02    <welch@SAGE>
  1941. * Merged changes from 8.0.4, especially the new pkg_mkIndex
  1942. 1998-12-01    <stanton@GASPODE>
  1943. * generic/tclIO.c (Tcl_ReadChars): Added a call to UpdateInterest
  1944. so we don't block when there is data sitting in the buffers.
  1945. * generic/tclTest.c (TestevalobjvObjCmd): Updated for EvalObjv
  1946. change.
  1947. * tests/parse.test: Updated tests for EvalObjv change.
  1948. * generic/tclParse.c (EvalObjv, Tcl_EvalObjv): Changed
  1949. Tcl_EvalObjv interface to remove string and length arguments,
  1950. preserved original interface as EvalObjv for internal use.
  1951. * generic/tcl.h: Changed Tcl_EvalObjv interface to remove string
  1952. and length arguments.
  1953. * doc/Eval.3: Updated documentation for Tcl_EvalObjv to remove
  1954. string and length arguments.
  1955. * generic/tclCompCmds.c (TclCompileForeachCmd): Fixed code that
  1956. corrupted the exceptDepth value in the compile environment when
  1957. foreach failed to compile inline. [Bug: 884]
  1958. * library/encoding/euc-kr.enc: 
  1959. * library/encoding/ksc5601.enc: 
  1960. * tools/encoding/ksc5601.txt: 
  1961. * unix/tclUnixInit.c: Added support for Korean EUC. 
  1962. * win/tclWinChan.c (TclpGetDefaultStdChannel): added check for a
  1963. failure during Tcl_MakeFileChannel.
  1964. 1998-11-30    <stanton@GASPODE>
  1965. * unix/tclUnixNotfy.c (Tcl_WaitForEvent): Fixed hang that occurs
  1966. when trying to close a pipe that is currently being waited on by
  1967. the notifier thread. [Bug: 607]
  1968. * unix/tclUnixFCmd.c (GetPermissionsAttribute): Increase size of
  1969. returnString buffer to avoid overflow. [Bug: 584]
  1970. * generic/tclThreadTest.c (TclThreadSend): Fixed memory leak due
  1971. to use of TCL_VOLATILE instead of TCL_DYNAMIC.
  1972. * generic/tclThread.c (TclRememberSyncObject): Fixed memory leak
  1973. caused by failure to reuse condition variables.
  1974. * unix/tclUnixNotfy.c:  (Tcl_AlertNotifier, Tcl_WaitForEvent,
  1975. NotifierThreadProc, Tcl_InitNotifier): Fixed race condition caused
  1976. by incorrect use of condition variables when sending messages
  1977. between threads.. [Bug: 607]
  1978. * generic/tclTestObj.c (TeststringobjCmd): MAX_STRINGS was off by one
  1979. so the strings array was too small.
  1980. * generic/tclCkalloc.c (Tcl_DbCkfree): Moved mutex lock so
  1981. ValidateMemory is done inside the mutex to avoid a race condition
  1982. when validate_memory is enabled. [Bug: 880]
  1983. 1998-11-23    <stanton@GASPODE>
  1984. * regexec.c: more performance tuning from Henry Spencer.
  1985. 1998-11-17    <stanton@GASPODE>
  1986. * tclScan.c: moved "scan" implementation out of tclCmdMZ.c and
  1987. added Unicode support.  This required a complete reimplementation
  1988. of the command to avoid using scanf(), which isn't Unicode aware.
  1989. Two new features were added in the process: %n to return the
  1990. current number of characters consumed, and XPG3-style %n$ argument
  1991. order specifiers similar to those provided by the "format"
  1992. command. [Bug: 833]
  1993. * tclAlloc.c: changed so allocated memory is always 8-byte aligned
  1994. to improve memory performance and to ensure that it will work on
  1995. systems that don't like accessing 4-byte aligned values
  1996. (e.g. Solaris and HP-UX). [Bug: 834]
  1997. 1998-11-06    <stanton@GASPODE>
  1998. * tclVar.c (TclGetIndexedScalar): Fixed bug 796, var name was
  1999. getting lost before being passed to CallTraces.
  2000. 1998-10-21    <stanton@GASPODE>
  2001. * added "encoding" command
  2002. * Moved internal regexp declarations from tclInt.h to tclRegexp.h
  2003. * integrated regexp updates from Henry Spencer
  2004. 1998-10-15    <stanton@GASPODE>
  2005. * tclUtf.c: added Unicode character table support
  2006. * tclInt.h: added TclUniCharIsWordChar
  2007. * tclCmdMZ.c (Tcl_StringObjCmd): added "totitle" subcommand,
  2008. changed "wordend" and "wordstart" to properly handle Unicode word
  2009. characters and connector punctuation
  2010. 1998-10-05    <stanton@GASPODE>
  2011. * auto.tcl, package.tcl: fixed SCCS strings
  2012. * tclIndex: updated index to reflect 8.1 files
  2013. * tclCompile.c (TclCompileScript): changed to avoid modifying the
  2014. input string in place because name lookup operations could have
  2015. arbitrary side effects
  2016. * tclInterp.c: added guard against deleting current interpreter
  2017. * tclMacFile.c, tclUnixFile.c, tclWinFile.c, tclFileName.c: added
  2018. warnings around code that modifies strings in place
  2019. * tclExecute.c: fixed off-by-one copying error, fixed merge bugs
  2020. * tclEvent.c: changed so USE_TCLALLOC is tested for value instead
  2021. of definition
  2022. * tclCompCmds.c: replaced SCCS strings, added warnings around code
  2023. that modifies strings in place
  2024. * interp.test: added test for interp deleting itself
  2025. 1998-09-30    <stanton@GASPODE>
  2026. * makefile.vc: fixed so TCL_LIBRARY is set before running tcltest
  2027. * tclWin32Dll.c: removed TclpFinalize, cleanup of merges