changes
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:277k
源码类别:

通讯编程

开发平台:

Visual C++

  1. Recent user-visible changes to Tcl:
  2. RCS: @(#) $Id: changes,v 1.79.2.54 2008/02/06 15:25:15 dgp Exp $
  3. 1. No more [command1] [command2] construct for grouping multiple
  4. commands on a single command line.
  5. 2. Semi-colon now available for grouping commands on a line.
  6. 3. For a command to span multiple lines, must now use backslash-return
  7. at the end of each line but the last.
  8. 4. "Var" command has been changed to "set".
  9. 5. Double-quotes now available as an argument grouping character.
  10. 6. "Return" may be used at top-level.
  11. 7. More backslash sequences available now.  In particular, backslash-newline
  12. may be used to join lines in command files.
  13. 8. New or modified built-in commands:  case, return, for, glob, info,
  14. print, return, set, source, string, uplevel.
  15. 9. After an error, the variable "errorInfo" is filled with a stack
  16. trace showing what was being executed when the error occurred.
  17. 10. Command abbreviations are accepted when parsing commands, but
  18. are not recommended except for purely-interactive commands.
  19. 11. $, set, and expr all complain now if a non-existent variable is
  20. referenced.
  21. 12. History facilities exist now.  See Tcl.man and Tcl_RecordAndEval.man.
  22. 13. Changed to distinguish between empty variables and those that don't
  23. exist at all.  Interfaces to Tcl_GetVar and Tcl_ParseVar have changed
  24. (NULL return value is now possible).  *** POTENTIAL INCOMPATIBILITY ***
  25. 14. Changed meaning of "level" argument to "uplevel" command (1 now means
  26. "go up one level", not "go to level 1"; "#1" means "go to level 1").
  27. *** POTENTIAL INCOMPATIBILITY ***
  28. 15. 3/19/90 Added "info exists" option to see if variable exists.
  29. 16. 3/19/90 Added "noAbbrev" variable to prohibit command abbreviations.
  30. 17. 3/19/90 Added extra errorInfo option to "error" command.
  31. 18. 3/21/90 Double-quotes now only affect space:  command, variable,
  32. and backslash substitutions still occur inside double-quotes.
  33. *** POTENTIAL INCOMPATIBILITY ***
  34. 19. 3/21/90 Added support for r.
  35. 20. 3/21/90 List, concat, eval, and glob commands all expect at least
  36. one argument now.  *** POTENTIAL INCOMPATIBILITY ***
  37. 21. 3/22/90 Added "?:" operators to expressions.
  38. 22. 3/25/90 Fixed bug in Tcl_Result that caused memory to get trashed.
  39. ------------------- Released version 3.1 ---------------------
  40. 23. 3/29/90 Fixed bug that caused "file a.b/c ext" to return ".b/c".
  41. 24. 3/29/90 Semi-colon is not treated specially when enclosed in
  42. double-quotes.
  43. ------------------- Released version 3.2 ---------------------
  44. 25. 4/16/90 Rewrote "exec" not to use select or signals anymore.
  45. Should be more Sys-V compatible, and no slower in the normal case.
  46. 26. 4/18/90 Rewrote "glob" to eliminate GNU code (there's no GNU code
  47. left in Tcl, now), and added Tcl_TildeSubst procedure.  Added automatic
  48. tilde-substitution in many commands, including "glob".
  49. ------------------- Released version 3.3 ---------------------
  50. 27. 7/11/90 Added "Tcl_AppendResult" procedure.
  51. 28. 7/20/90 "History" with no options now defaults to "history info"
  52. rather than to "history redo".  Although this is a backward incompatibility,
  53. it should only be used interactively and thus shouldn't present any
  54. compatibility problems with scripts.
  55. 29. 7/20/90 Added "Tcl_GetInteger", "Tcl_GetDouble", and "Tcl_GetBoolean"
  56. procedures.
  57. 30. 7/22/90 Removed "Tcl_WatchInterp" procedure:  doesn't seem to be
  58. necessary, since the same effect can be achieved with the deletion
  59. callbacks on individual commands.  *** POTENTIAL INCOMPATIBILITY ***
  60. 31. 7/23/90 Added variable tracing:  Tcl_TraceVar, Tcl_UnTraceVar,
  61. and Tcl_VarTraceInfo procedures, "trace" command.
  62. 32. 8/9/90 Mailed out list of all bug fixes since 3.3 release.
  63. 33. 8/29/90 Fixed bugs in Tcl_Merge relating to backslashes and
  64. semi-colons.  Mailed out patch.
  65. 34. 9/3/90 Fixed bug in tclBasic.c: quotes weren't quoting ]'s.
  66. Mailed out patch.
  67. 35. 9/19/90 Rewrote exec to always use files both for input and
  68. output to the process.  The old pipe-based version didn't work if
  69. the exec'ed process forked a child and then exited:  Tcl waited
  70. around for stdout to get closed, which didn't happen until the
  71. grandchild exited.
  72. 36. 11/5/90 ERR_IN_PROGRESS flag wasn't being cleared soon enough
  73. in Tcl_Eval, allowing error messages from different commands to
  74. pile up in $errorInfo.  Fixed by re-arranging code in Tcl_Eval that
  75. re-initializes result and ERR_IN_PROGRESS flag.  Didn't mail out
  76. patch:  changes too complicated to describe.
  77. 37. 12/19/90 Added Tcl_VarEval procedure as a convenience for
  78. assembling and executing Tcl commands.
  79. 38. 1/29/91 Fixed core leak in Tcl_AddErrorInfo.  Also changed procedure
  80. and Tcl_Eval so that first call to Tcl_AddErrorInfo need not come from
  81. Tcl_Eval.
  82. ----------------- Released version 5.0 with Tk ------------------
  83. 39. 4/3/91 Removed change bars from manual entries, leaving only those
  84. that came after version 3.3 was released.
  85. 40. 5/17/91 Changed tests to conform to Mary Ann May-Pumphrey's approach.
  86.  
  87. 41. 5/23/91 Massive revision to Tcl parser to simplify the implementation
  88. of string and floating-point support in expressions.  Newlines inside
  89. [] are now treated as command separators rather than word separators
  90. (this makes newline treatment consistent throughout Tcl).
  91. *** POTENTIAL INCOMPATIBILITY ***
  92. 42. 5/23/91 Massive rewrite of expression code to support floating-point
  93. values and simple string comparisons.  The C interfaces to expression
  94. routines have changed (Tcl_Expr is replaced by Tcl_ExprLong, Tcl_ExprDouble,
  95. etc.), but all old Tcl expression strings should be accepted by the new
  96. expression code.
  97. *** POTENTIAL INCOMPATIBILITY ***
  98. 43. 5/23/91 Modified tclHistory.c to check for negative "keep" value.
  99. 44. 5/23/91 Modified Tcl_Backslash to handle backslash-newline.  It now
  100. returns 0 to indicate that a backslash sequence should be replaced by
  101. no character at all.
  102. *** POTENTIAL INCOMPATIBILITY ***
  103. 45. 5/29/91 Modified to use ANSI C function prototypes.  Must set
  104. "USE_ANSI" switch when compiling to get prototypes.
  105. 46. 5/29/91 Completed test suite by providing tests for all of the
  106. built-in Tcl commands.
  107. 47. 5/29/91 Changed Tcl_Concat to eliminate leading and trailing
  108. white-space in each of the things it concatenates and to ignore
  109. elements that are empty or have only white space in them.  This
  110. produces cleaner output from the "concat" command.
  111. *** POTENTIAL INCOMPATIBILITY ***
  112. 48. 5/31/91 Changed "set" command and Tcl_SetVar procedure to return
  113. new value of variable.
  114. 49. 6/1/91 Added "while" and "cd" commands.
  115. 50. 6/1/91 Changed "exec" to delete the last character of program
  116. output if it is a newline.  In most cases this makes it easier to
  117. process program-generated output.
  118. *** POTENTIAL INCOMPATIBILITY ***
  119. 51. 6/1/91 Made sure that pointers are never used after freeing them.
  120. 52. 6/1/91 Fixed bug in TclWordEnd where it wasn't dealing with
  121. [] inside quotes correctly.
  122. 53. 6/8/91 Fixed exec.test to accept return values of either 1 or
  123. 255 from "false" command.
  124. 54. 7/6/91 Massive overhaul of variable management.  Associative
  125. arrays now available, along with "unset" command (and Tcl_UnsetVar
  126. procedure).  Variable traces have been completely reworked:
  127. interfaces different both from Tcl and C, and multiple traces may
  128. exist on same variable.  Can no longer redefine existing local
  129. variable to be global.  Calling sequences have changed slightly
  130. for Tcl_GetVar and Tcl_SetVar ("global" is now "flags"). Tcl_SetVar
  131. can fail and return a NULL result.  New forms of variable-manipulation
  132. procedures:  Tcl_GetVar2, Tcl_SetVar2, etc.  Syntax of variable
  133. $-notation changed to support array indexing.
  134. *** POTENTIAL INCOMPATIBILITY ***
  135. 55. 7/6/91 Added new list-manipulation procedures:  Tcl_ScanElement,
  136. Tcl_ConvertElement, Tcl_AppendElement.
  137. 56. 7/12/91 Created new procedure Tcl_EvalFile, which does most of the
  138. work of the "source" command.
  139. 57. 7/20/91 Major reworking of "exec" command to allow pipelines,
  140. more redirection, background.  Added new procedures Tcl_Fork,
  141. Tcl_WaitPids, Tcl_DetachPids, and Tcl_CreatePipeline.  The old
  142. "< input" notation has been replaced by "<< input" ("<" is for
  143. redirection from a file).  Also handles error returns and abnormal
  144. terminations (e.g. signals) differently.
  145. *** POTENTIAL INCOMPATIBILITY ***
  146. 58. 7/21/91 Added "append" and "lappend" commands.
  147. 59. 7/22/91 Reworked error messages and manual entries to use
  148. ?x? as the notation for an optional argument x, instead of [x].  The
  149. bracket notation was often confused with the use of brackets for
  150. command substitution.  Also modified error messages to be more
  151. consistent.
  152. 60. 7/23/91 Tcl_DeleteCommand now returns an indication of whether
  153. or not the command actually existed, and the "rename" command uses
  154. this information to return an error if an attempt is made to delete
  155. a non-existent command.
  156. *** POTENTIAL INCOMPATIBILITY ***
  157. 61. 7/25/91 Added new "errorCode" mechanism, along with procedures
  158. Tcl_SetErrorCode, Tcl_UnixError, and Tcl_ResetResult.  Renamed
  159. Tcl_Return to Tcl_SetResult, but left a #define for Tcl_Return to
  160. avoid compatibility problems.
  161. 62. 7/26/91 Extended "case" command with alternate syntax where all
  162. patterns and commands are together in a single list argument:  makes
  163. it easier to write multi-line case statements.
  164. 63. 7/27/91 Changed "print" command to perform tilde-substitution on
  165. the file name.
  166. 64. 7/27/91 Added "tolower", "toupper", "trim", "trimleft", and "trimright"
  167. options to "string" command.
  168. 65. 7/29/91 Added "atime", "mtime", "size", and "stat" options to "file"
  169. command.
  170. 66. 8/1/91 Added "split" and "join" commands.
  171. 67. 8/11/91 Added commands for file I/O, including "open", "close",
  172. "read", "gets", "puts", "flush", "eof", "seek", and "tell".
  173. 68. 8/14/91 Switched to use a hash table for command lookups.  Command
  174. abbreviations no longer have direct support in the Tcl interpreter, but
  175. it should be possible to simulate them with the auto-load features
  176. described below.  The "noAbbrev" variable is no longer used by Tcl.
  177. *** POTENTIAL INCOMPATIBILITY ***
  178. 68.5 8/15/91 Added support for "unknown" command, which can be used to
  179. complete abbreviations, auto-load library files, auto-exec shell
  180. commands, etc.
  181. 69. 8/15/91 Added -nocomplain switch to "glob" command.
  182. 70. 8/20/91 Added "info library" option and TCL_LIBRARY #define.  Also
  183. added "info script" option.
  184. 71. 8/20/91 Changed "file" command to take "option" argument as first
  185. argument (before file name), for consistency with other Tcl commands.
  186. *** POTENTIAL INCOMPATIBILITY ***
  187. 72. 8/20/91 Changed format of information in $errorInfo variable:
  188. comments such as 
  189.     ("while" body line 1)
  190. are now on separate lines from commands being executed.
  191. *** POTENTIAL INCOMPATIBILITY ***
  192. 73. 8/20/91 Changed Tcl_AppendResult so that it (eventually) frees
  193. large buffers that it allocates.
  194. 74. 8/21/91 Added "linsert", "lreplace", "lsearch", and "lsort"
  195. commands.
  196. 75. 8/28/91 Added "incr" and "exit" commands.
  197. 76. 8/30/91 Added "regexp" and "regsub" commands.
  198. 77. 9/4/91 Changed "dynamic" field in interpreters to "freeProc" (procedure
  199. address).  This allows for alternative storage managers.
  200. *** POTENTIAL INCOMPATIBILITY ***
  201. 78. 9/6/91 Added "index", "length", and "range" options to "string"
  202. command.  Added "lindex", "llength", and "lrange" commands.
  203. 79. 9/8/91 Removed "index", "length", "print" and "range" commands.
  204. "Print" is redundant with "puts", but less general, and the other
  205. commands are replaced with the new commands described in change 78
  206. above.
  207. *** POTENTIAL INCOMPATIBILITY ***
  208. 80. 9/8/91 Changed history revision to occur even when history command
  209. is nested;  needed in order to allow "history" to be invoked from
  210. "unknown" procedure.
  211. 81. 9/13/91 Changed "panic" not to use vfprintf (it's uglier and less
  212. general now, but makes it easier to run Tcl on systems that don't
  213. have vfprintf).  Also changed "strerror" not to redeclare sys_errlist.
  214. 82. 9/19/91 Lots of changes to improve portability to different UNIX
  215. systems, including addition of "config" script to adapt Tcl to the
  216. configuration of the system it's being compiled on.
  217. 83. 9/22/91 Added "pwd" command.
  218. 84. 9/22/91 Renamed manual pages so that their filenames are no more
  219. than 14 characters in length, moved to "doc" subdirectory.
  220. 85. 9/24/91 Redid manual entries so they contain the supplemental
  221. macros that they need;  can just print with "troff -man" or "man"
  222. now.
  223. 86. 9/26/91 Created initial version of script library, including
  224. a version of "unknown" that does auto-loading, auto-execution, and
  225. abbreviation expansion.  This library is used by tclTest
  226. automatically.  See the "library" manual entry for details.
  227. ----------------- Released version 6.0, 9/26/91 ------------------
  228. 87. 9/30/91 Made "string tolower" and "string toupper" check case
  229. before converting:  on some systems, "tolower" and "toupper" assume
  230. that character already has particular case.
  231. 88. 9/30/91 Fixed bug in Tcl_SetResult:  wasn't always setting freeProc
  232. correctly when called with NULL value.  This tended to cause memory
  233. allocation errors later.
  234. 89. 10/3/91 Added "upvar" command.
  235. 90. 10/4/91 Changed "format" so that internally it converts %D to %ld,
  236. %U to %lu, %O to %lo, and %F to %f.  This eliminates some compatibility
  237. problems on some machines without affecting behavior.
  238. 91. 10/10/91 Fixed bug in "regsub" that caused core dumps with the -all
  239. option when the last match wasn't at the end of the string.
  240. 92. 10/17/91 Fixed problems with backslash sequences:  r support was
  241. incomplete and f and v weren't supported at all.
  242. 93. 10/24/91 Added Tcl_InitHistory procedure.
  243. 94. 10/24/91 Changed "regexp" to store "-1 -1" in subMatchVars that
  244. don't match, rather than returning an error.
  245. 95. 10/27/91 Modified "regexp" to return actual strings in matchVar
  246. and subMatchVars instead of indices.  Added "-indices" switch to cause
  247. indices to be returned.
  248. *** POTENTIAL INCOMPATIBILITY ***
  249. 96. 10/27/91 Fixed bug in "scan" where it used hardwired constants for
  250. sizes of floats and doubles instead of using "sizeof".
  251. 97. 10/31/91 Fixed bug in tclParse.c where parse-related error messages
  252. weren't being storage-managed correctly, causing spurious free's.
  253. 98. 10/31/91 Form feed and vertical tab characters are now considered
  254. to be space characters by the parser.
  255. 99. 10/31/91 Added TCL_LEAVE_ERR_MSG flag to procedures like Tcl_SetVar.
  256. 100. 11/7/91 Fixed bug in "case" where "in" argument couldn't be omitted
  257. if all case branches were embedded in a single list.
  258. 101. 11/7/91 Switched to use "pid_t" and "uid_t" and other official
  259. POSIC types and function prototypes.
  260. ----------------- Released version 6.1, 11/7/91 ------------------
  261. 102. 12/2/91 Modified Tcl_ScanElement and Tcl_ConvertElement in several
  262. ways.  First, allowed caller to request that only backslashes be used
  263. (no braces).  Second, made Tcl_ConvertElement more aggressive in using
  264. backslashes for braces and quotes.
  265. 103. 12/5/91 Added "type", "lstat", and "readlink" options to "file"
  266. command, plus added new "type" element to output of "stat" and "lstat"
  267. options.
  268. 104. 12/10/91 Manual entries had first lines that caused "man" program
  269. to try weird preprocessor.  Added blank comment lines to fix problem.
  270. 105. 12/16/91 Fixed a few bugs in auto_mkindex proc:  wasn't handling
  271. errors properly, and hadn't been upgraded for new "regexp" syntax.
  272. 106. 1/2/92 Fixed bug in "file" command where it didn't properly handle
  273. a file names containing tildes where the indicated user doesn't exist.
  274. 107. 1/2/92 Fixed lots of cases in tclUnixStr.c where two different
  275. errno symbols (e.g. EWOULDBLOCK and EAGAIN) have the same number;  Tcl
  276. will only use one of them.
  277. 108. 1/2/92 Lots of changes to configuration script to handle many more
  278. systems more gracefully.  E.g. should now detect the bogus strtoul that
  279. comes with AIX and substitute Tcl's own version instead.
  280. ----------------- Released version 6.2, 1/10/92 ------------------
  281. 109. 1/20/92 Config didn't have code to actually use "uid_t" variable
  282. to set TCL_UIT_T #define.
  283. 110. 2/10/92 Tcl_Eval didn't properly reset "numLevels" variable when
  284. too-deep recursion occurred.
  285. 111. 2/29/92 Added "on" and "off" to keywords accepted by Tcl_GetBoolean.
  286. 112. 3/19/92 Config wasn't installing default version of strtod.c for
  287. systems that don't have one in libc.a.
  288. 113. 3/23/92 Fixed bug in tclExpr.c where numbers with leading "."s,
  289. like 0.75, couldn't be properly substituted into expressions with
  290. variable or command substitution.
  291. 114. 3/25/92 Fixed bug in tclUnixAZ.c where "gets" command wasn't
  292. checking to make sure that it was able to write the variable OK.
  293. 115. 4/16/92 Fixed bug in tclUnixAZ.c where "read" command didn't
  294. compute file size right for device files.
  295. 116. 4/23/92 Fixed but in tclCmdMZ.c where "trace vinfo" was overwriting
  296. the trace command.
  297. ----------------- Released version 6.3, 5/1/92 ------------------
  298. 117. 5/1/92 Added Tcl_GlobalEval.
  299. 118. 6/1/92 Changed auto-load facility to source files at global level.
  300. 119. 6/8/92 Tcl_ParseVar wasn't always setting termPtr after errors, which
  301. sometimes caused core dumps.
  302. 120. 6/21/92 Fixed bug in initialization of regexp pattern cache.  This
  303. bug caused segmentation violations in regexp commands under some conditions.
  304. 121. 6/22/92 Changed implementation of "glob" command to eliminate
  305. trailing slashes on directory names:  they confuse some systems.  There
  306. shouldn't be any user-visible changes in functionality except for names
  307. in error messages not having trailing slashes.
  308. 122. 7/2/92 Fixed bug that caused 'string match ** ""' to return 0.
  309. 123. 7/2/92 Fixed bug in Tcl_CreateCmdBuf where it wasn't initializing
  310. the buffer to an empty string.
  311. 124. 7/6/92 Fixed bug in "case" command where it used NULL pattern string
  312. after errors in the "default" clause.
  313. 125. 7/25/92 Speeded up auto_load procedure:  don't reread all the index
  314. files unless the path has changed.
  315. 126. 8/3/92 Changed tclUnix.h to define MAXPATHLEN from PATH_MAX, not
  316. _POSIX_PATH_MAX.
  317. ----------------- Released version 6.4, 8/7/92 ------------------
  318. 127. 8/10/92 Changed tclBasic.c so that comment lines can be continued by
  319. putting a backslash before the newline.
  320. 128. 8/21/92 Modified "unknown" to allow the source-ing of a file for
  321. an auto-load to trigger other nested auto-loads, as long as there isn't
  322. any recursion on the same command name.
  323. 129. 8/25/92 Modified "format" command to allow " " and "+" flags, and
  324. allow flags in any order.
  325. 130. 9/14/92 Modified Tcl_ParseVar so that it doesn't actually attempt
  326. to look up the variable if "noEval" mode is in effect in the interpreter
  327. (it just parses the name).  This avoids the errors that used to occur
  328. in statements like "expr {[info exists foo] && $foo}".
  329. 131. 9/14/92 Fixed bug in "uplevel" command where it didn't output the
  330. correct error message if a level was specified but no command.
  331. 132. 9/14/92 Renamed manual entries to have extensions like .3 and .n,
  332. and added "install" target to Makefile.
  333. 133. 9/18/92 Modified "unknown" command to emulate !!, !<num>, and
  334. ^<old>^<new> csh history substitutions.
  335. 134. 9/21/92 Made the config script cleverer about figuring out which
  336. switches to pass to "nm".
  337. 135. 9/23/92 Fixed tclVar.c to be sure to copy flags when growing variables.
  338. Used to forget about traces in progress and make extra recursive calls
  339. on trace procs.
  340. 136. 9/28/92 Fixed bug in auto_reset where it was unsetting variables
  341. that might not exist.
  342. 137. 10/7/92 Changed "parray" library procedure to print any array
  343. accessible to caller, local or global.
  344. 138. 10/15/92 Fixed bug where propagation of new environment variable
  345. values among interpreters took N! time if there exist N interpreters.
  346. 139. 10/16/92 Changed auto_reset procedure so that it also deletes any
  347. existing procedures that are in the auto_load index (the assumption is
  348. that they should be re-loaded to get the latest versions).
  349. 140. 10/21/92 Fixed bug that caused lists to be incorrectly generated
  350. for elements that contained backslash-newline sequences.
  351. 141. 12/9/92 Added support for TCL_LIBRARY environment variable:  use
  352. it as library location if it's present.
  353. 142. 12/9/92 Added "info complete" command, Tcl_CommandComplete procedure.
  354. 143. 12/16/92 Changed the Makefile to check to make sure "config" has been
  355. run (can't run config directly from the Makefile because it modifies the
  356. Makefile;  thus make has to be run again after running config).
  357. ----------------- Released version 6.5, 12/17/92 ------------------
  358. 144. 12/21/92 Changed config to look in several places for libc file.
  359. 145. 12/23/92 Added "elseif" support to if.  Also, "then", "else", and
  360. "elseif" may no longer be abbreviated.
  361. *** POTENTIAL INCOMPATIBILITY ***
  362. 146. 12/28/92 Changed "puts" and "read" to support initial "-nonewline"
  363. switch instead of additional "nonewline" argument.  The old form is
  364. still supported, but it is discouraged and is no longer documented.
  365. Also changed "puts" to make the file argument default to stdout: e.g.
  366. "puts foo" will print foo on standard output.
  367. 147. 1/6/93 Fixed bug whereby backslash-newline wasn't working when
  368. typed interactively, or in "info complete".
  369. 148. 1/22/93 Fixed bugs in "lreplace" and "linsert" where close
  370. quotes were being lost from last element before replacement or
  371. insertion.
  372. 149. 1/29/93 Fixed bug in Tcl_AssembleCmd where it wasn't requiring
  373. a newline at the end of a line before considering a command to be
  374. complete.  The bug caused some very long lines in script files to
  375. be processed as multiple separate commands.
  376. 150. 1/29/93 Various changes in Makefile to add more configuration
  377. options, simplify installation, fix bugs (e.g. don't use -f switch
  378. for cp), etc.
  379. 151. 1/29/93 Changed "name1" and "name2" identifiers to "part1" and
  380. "part2" to avoid name conflicts with stupid C++ implementations that
  381. use "name1" and "name2" in a reserved way.
  382. 152. 2/1/93 Added "putenv" procedure to replace the standard system
  383. version so that it will work correctly with Tcl's environment handling.
  384. ----------------- Released version 6.6, 2/5/93 ------------------
  385. 153. 2/10/93 Fixed bugs in config script:  missing "endif" in libc loop,
  386. and tried to use strncasecmp.c instead of strcasecmp.c.
  387. 154. 2/10/93 Makefile improvements:  added RANLIB variable for easier
  388. Sys-V configuration, added SHELL variable for SGI systems.
  389. ----------------- Released version 6.7, 2/11/93 ------------------
  390. 153. 2/6/93 Changes in backslash processing:
  391.     - Cx, Mx, CMx, e sequences no longer special
  392.     - <newline> also eats up any space after the newline, replacing
  393.       the whole sequence with a single space character
  394.     - Hex sequences like x24 are now supported, along with ANSI C's a.
  395.     - "format" no longer does backslash processing on its format string
  396.     - there is no longer any special meaning to a 0 return value from
  397.       Tcl_Backslash
  398.     - unknown backslash sequences, like (e.g. *), are replaced with
  399.       the following character (e.g. *), instead of just treating the
  400.       backslash as an ordinary character.
  401. *** POTENTIAL INCOMPATIBILITY ***
  402. 154. 2/6/93 Updated all copyright notices.  The meaning hasn't changed
  403. at all but the wording does a better job of protecting U.C. from
  404. liability (according to U.C. lawyers, anyway).
  405. 155. 2/6/93 Changed "regsub" so that it overwrites the result variable
  406. in all cases, even if there is no match.
  407. *** POTENTIAL INCOMPATIBILITY ***
  408. 156. 2/8/93 Added support for XPG3 %n$ conversion specifiers to "format"
  409. command.
  410. 157. 2/17/93 Fixed bug in Tcl_Eval where errors due to infinite
  411. recursion could result in core dumps.
  412. 158. 2/17/93 Improved the auto-load mechanism to deal gracefully (i.e.
  413. return an error) with a situation where a library file that supposedly
  414. defines a procedure doesn't actually define it.
  415. 159. 2/17/93 Renamed Tcl_UnixError procedure to Tcl_PosixError, and
  416. changed errorCode variable usage to use POSIX as keyword instead of
  417. UNIX.
  418. *** POTENTIAL INCOMPATIBILITY ***
  419. 160. 2/19/93 Changes to exec and process control:
  420.     - Added support for >>, >&, >>&, |&, <@, >@, and >&@ forms of redirection.
  421.     - When exec puts processes into background, it returns a list of
  422.       their pids as result.
  423.     - Added support for <file, >file, etc. (i.e. no space between
  424.       ">" and file name.
  425.     - Added -keepnewline option.
  426.     - Deleted Tcl_Fork and Tcl_WaitPids procedures (just use fork and
  427.       waitpid instead).
  428.     - Added waitpid compatibility procedure for systems that don't have
  429.       it.
  430.     - Added Tcl_ReapDetachedProcs procedure.
  431.     - Changed "exec" to return an error if there is stderr output, even
  432.       if the command returns a 0 exit status (it's always been documented
  433.       this way, but the implementation wasn't correct).
  434.     - If a process returns a non-zero exit status but doesn't generate
  435.       any diagnostic output, then Tcl generates an error message for it.
  436. *** POTENTIAL INCOMPATIBILITY ***
  437. 161. 2/25/93 Fixed two memory-management problems having to do with
  438. managing the old result during variable trace callbacks.
  439. 162. 3/1/93 Added dynamic string library:  Tcl_DStringInit, Tcl_DStringAppend,
  440. Tcl_DStringFree, Tcl_DStringResult, etc.
  441. 163. 3/1/93 Modified glob command to only return the names of files that
  442. exist, and to only return names ending in "/" if the file is a directory.
  443. *** POTENTIAL INCOMPATIBILITY ***
  444. 164. 3/19/93 Modified not to use system calls like "read" directly,
  445. but instead to use special Tcl procedures that retry automatically
  446. if interrupted by signals.
  447. 165. 4/3/93 Eliminated "noSep" argument to Tcl_AppendElement, plus
  448. TCL_NO_SPACE flag for Tcl_SetVar and Tcl_SetVar2.
  449. *** POTENTIAL INCOMPATIBILITY ***
  450. 166. 4/3/93 Eliminated "flags" and "termPtr" arguments to Tcl_Eval.
  451. *** POTENTIAL INCOMPATIBILITY ***
  452. 167. 4/3/93 Changes to expressions:
  453.     - The "expr" command now accepts multiple arguments, which are
  454.       concatenated together with space separators.
  455.     - Integers aren't automatically promoted to floating-point if they
  456.       overflow the word size:  errors are generated instead.
  457.     - Tcl can now handle "NaN" and other special values if the underlying
  458.       library procedures handle them.
  459.     - When printing floating-point numbers, Tcl ensures that there is a "."
  460.       or "e" in the number, so it can't be treated as an integer accidentally.
  461.       The procedure Tcl_PrintDouble is available to provide this function
  462.       in other contexts.  Also, the variable "tcl_precision" can be used
  463.       to set the precision for printing (must be a decimal number giving
  464.       digits of precision).
  465.     - Expressions now support transcendental and other functions, e.g. sin,
  466.       acos, hypot, ceil, and round.  Can add new math functions with
  467.       Tcl_CreateMathFunc().
  468.     - Boolean expressions can now have any of the string values accepted
  469.       by Tcl_GetBoolean, such as "yes" or "no".
  470. *** POTENTIAL INCOMPATIBILITY ***
  471. 168. 4/5/93 Changed Tcl_UnsetVar and Tcl_UnsetVar2 to return TCL_OK
  472. or TCL_ERROR instead of 0 or -1.
  473. *** POTENTIAL INCOMPATIBILITY ***
  474. 169. 4/5/93 Eliminated Tcl_CmdBuf structure and associated procedures;
  475. can use Tcl_DStrings instead.
  476. *** POTENTIAL INCOMPATIBILITY ***
  477. 170. 4/8/93 Changed interface to Tcl_TildeSubst to use a dynamic
  478. string for buffer space.  This makes the procedure re-entrant and
  479. thread-safe, whereas it wasn't before.
  480. *** POTENTIAL INCOMPATIBILITY ***
  481. 171. 4/14/93 Eliminated tclHash.h, and moved everything from it to
  482. tcl.h
  483. *** POTENTIAL INCOMPATIBILITY ***
  484. 172. 4/15/93 Eliminated Tcl_InitHistory, made "history" command always
  485. be part of interpreter.
  486. *** POTENTIAL INCOMPATIBILITY ***
  487. 173. 4/16/93 Modified "file" command so that "readable" option always
  488. exists, even on machines that don't support symbolic links (always returns
  489. same error as if the file wasn't a symbolic link).
  490. 174. 4/26/93 Fixed bugs in "regsub" where ^ patterns didn't get handled
  491. right (pretended not to match when it really did, and looped infinitely
  492. if -all was specified).
  493. 175. 4/29/93 Various improvements in the handling of variables:
  494.     - Can create variables and array elements during a read trace.
  495.     - Can delete variables during traces (note: unset traces will be
  496.       invoked when this happens).
  497.     - Can upvar to array elements.
  498.     - Can retarget an upvar to another variable by re-issuing the
  499.       upvar command with a different "other" variable.
  500. 176. 5/3/93 Added Tcl_GetCommandInfo, which returns info about a Tcl
  501. command such as whether it exists and its ClientData.  Also added
  502. Tcl_SetCommandInfo, which allows any of this information to be modified
  503. and also allows a command's delete procedure to have a different
  504. ClientData value than its command procedure.
  505. 177. 5/5/93 Added Tcl_RegExpMatch procedure.
  506. 178. 5/6/93 Fixed bug in "scan" where it didn't properly handle
  507. %% conversion specifiers.  Also changed "scan" to use Tcl_PrintDouble
  508. for printing real values.
  509. 179. 5/7/93 Added "-exact", "-glob", and "-regexp" options to "lsearch"
  510. command to allow different kinds of pattern matching.
  511. 180. 5/7/93 Added many new switches to "lsort" to control the sorting
  512. process: "-ascii", "-integer", "-real", "-command", "-increasing",
  513. and "-decreasing".
  514. 181. 5/10/93 Changes to file I/O:
  515.     - Modified "open" command to support a list of POSIX access flags
  516.       like {WRONLY CREAT TRUNC} in addition to current fopen-style
  517.       access modes.  Also added "permissions" argument to set permissions
  518.       of newly-created files.
  519.     - Fixed Scott Bolte's bug (can close stdin etc. in application and
  520.       then re-open them with Tcl commands).
  521.     - Exported access to Tcl's file table with new procedures Tcl_EnterFile
  522.       and Tcl_GetOpenFile.
  523. 182. 5/15/93 Added new "pid" command, which can be used to retrieve
  524. either the current process id or a list of the process ids in a
  525. pipeline opened with "open |..."
  526. 183. 6/3/93 Changed to use GNU autoconfig for configuration instead of
  527. the home-brew "config" script.  Also made many other configuration-related
  528. changes, such as using <unistd.h> instead of explicitly declaring system
  529. calls in tclUnix.h.
  530. 184. 6/4/93 Fixed bug where core-dumps could occur if a procedure
  531. redefined itself (the memory for the procedure's body could get
  532. reallocated in the middle of evaluating the body);  implemented
  533. simple reference count mechanism.
  534. 185. 6/5/93 Changed tclIndex file format in two ways:  (a) it's now
  535. eval-ed instead of parsed, which makes it 3-4x faster; (b) the entries
  536. in auto_index are now commands to evaluate, which allows commands to
  537. be loaded in different ways such as dynamic-loading of C code.  The
  538. old tclIndex file format is still supported.
  539. 186. 6/7/93 Eliminated tclTest program, added new "tclsh" program
  540. that is more like wish (allows script files to be invoked automatically
  541. using "#!/usr/local/bin/tclsh", makes arguments available to script,
  542. etc.).  Added support for Tcl_AppInit plus default version;  this
  543. allows new Tcl applications to be created without modifying the
  544. main program for tclsh.
  545. 187. 6/7/93 Fixed bug in TclWordEnd that kept backslash-newline from
  546. working correctly in some cases during interactive input.
  547. 188. 6/9/93 Added Tcl_LinkVar and related procedures, which automatically
  548. keep a Tcl variable in sync with a C variable.
  549. 189. 6/16/93 Increased maximum nesting depth from 100 to 1000.
  550. 190. 6/16/93 Modified "trace var" command so that error messages from
  551. within traces are returned properly as the result of the variable
  552. access, instead of the generic "access disallowed by trace command"
  553. message.
  554. 191. 6/16/93 Added Tcl_CallWhenDeleted to provide callbacks when an
  555. interpreter is deleted (same functionality as Tcl_WatchInterp, which
  556. used to exist in versions before 6.0).
  557. 193. 6/16/93 Added "-code" argument to "return" command;  it's there
  558. primarily for completeness, so that procedures implementing control
  559. constructs can reflect exceptional conditions back to their callers.
  560. 194. 6/16/93 Split up Tcl.n to make separate manual entries for each
  561. Tcl command.  Tcl.n now contains a summary of the language syntax.
  562. 195. 6/17/93 Added new "switch" command to replace "case": allows
  563. alternate forms of pattern matching (exact, glob, regexp), replaces
  564. pattern lists with single patterns (but you can use "-" bodies to
  565. share one body among several patterns), eliminates "in" noise word.
  566. "Case" command is now obsolete.
  567. 196. 6/17/93 Changed the "exec", "glob", "regexp", and "regsub" commands
  568. to include a "--" switch.  All initial arguments starting with "-" are now
  569. treated as switches unless a "--" switch is present to end the list.
  570. *** POTENTIAL INCOMPATIBILITY ***
  571. 197. 6/17/93 Changed auto-exec so that the subprocess gets stdin, stdout,
  572. and stderr from the parent.  This allows truly interactive sub-processes
  573. (e.g. vi) to be auto-exec'ed from a tcl shell command line.
  574. 198. 6/18/93 Added patchlevel.h, for use in coordinating future patch
  575. releases, and also added "info patchlevel" command to make the patch
  576. level available to Tcl scripts.
  577. 199. 6/19/93 Modified "glob" command so that a leading "//" in a name
  578. gets left as is (this is needed for systems like Apollos where "//" is
  579. the super-root;  Tcl used to collapse the two slashes into a single
  580. slash).
  581. 200. 7/7/93 Added Tcl_SetRecursionLimit procedure so that the maximum
  582. allowable nesting depth can be controlled for an interpreter from C.
  583. ----------------- Released version 7.0 Beta 1, 7/9/93 ------------------
  584. 201. 7/12/93 Modified Tcl_GetInt and tclExpr.c so that full-precision
  585. unsigned integers can be specified without overflow errors.
  586. 202. 7/12/93 Configuration changes:  eliminate leading blank line in
  587. configure script;  provide separate targets in Makefile for installing
  588. binary and non-binary information; check for size_t and a few other
  589. potentially missing typedefs; don't put tclAppInit.o into libtcl.a;
  590. better checks for matherr support.
  591. 203. 7/14/93 Changed tclExpr.c to check the termination pointer before
  592. errno after strtod calls, to avoid problems with some versions of
  593. strtod that set errno in unexpected ways.
  594. 204. 7/16/93 Changed "scan" command to be more ANSI-conformant:
  595. eliminated %F, %D, etc., added code to ignore "l", "h", and "L"
  596. modifiers but always convert %e, %f, and %g with implicit "l";
  597. also added support for %u and %i.  Also changed "format" command
  598. to eliminate %D, %U, %O, and add %i.
  599. *** POTENTIAL INCOMPATIBILITY ***
  600. 205. 7/17/93 Changed "uplevel" and "upvar" so that they can be used
  601. from global level to global level:  this used to generate an error.
  602. 206. 7/19/93 Renamed "setenv", "putenv", and "unsetenv" procedures
  603. to avoid conflicts with system procedures with the same names.  If
  604. you want Tcl's procedures to override the system procedures, do it
  605. in the Makefile (instructions are in the Makefile).
  606. *** POTENTIAL INCOMPATIBILITY ***
  607. ----------------- Released version 7.0 Beta 2, 7/21/93 ------------------
  608. 207. 7/21/93 Fixed bug in tclVar.c where freed memory was accidentally
  609. used if a procedure returned an element of a local array.
  610. 208. 7/22/93 Fixed bug in "unknown" where it didn't properly handle
  611. errors occurring in the "auto_load" procedure, leaving its state
  612. inconsistent.
  613. 209. 7/23/93 Changed exec's ">2" redirection operator to "2>" for
  614. consistency with sh.  This is incompatible with earlier beta releases
  615. of 7.0 but not with pre-7.0 releases, which didn't support either
  616. operator.
  617. 210. 7/28/93 Changed backslash-newline handling so that the resulting
  618. space character *is* treated as a word separator unless the backslash
  619. sequence is in quotes or braces.  This is incompatible with 7.0b1
  620. and 7.0b2 but is more compatible with pre-7.0 versions that the b1
  621. and b2 releases were.
  622. 211. 7/28/93 Eliminated Tcl_LinkedVarWritable, added TCL_LINK_READ_ONLY to
  623. Tcl_LinkVar to accomplish same purpose.  This change is incompatible
  624. with earlier beta releases, but not with releases before Tcl 7.0.
  625. 212. 7/29/93 Renamed regexp C functions so they won't clash with POSIX
  626. regexp functions that use the same name.
  627. 213. 8/3/93 Added "-errorinfo" and "-errorcode" options to "return"
  628. command: these allow for much better handling of the errorInfo
  629. and errorCode variables in some cases.
  630. 214. 8/12/93 Changed "expr" so that % always returns a remainder with
  631. the same sign as the divisor and absolute value smaller than the
  632. divisor.
  633. 215. 8/14/93 Turned off auto-exec in "unknown" unless the command
  634. was typed interactively.  This means you must use "exec" when
  635. invoking subprocesses, unless it's a command that's typed interactively.
  636. *** POTENTIAL INCOMPATIBILITY ***
  637. 216. 8/14/93 Added support for tcl_prompt1 and tcl_prompt2 variables
  638. to tclMain.c:  makes prompts user-settable.
  639. 217. 8/14/93 Added asynchronous handlers (Tcl_AsyncCreate etc.) so
  640. that signals can be taken cleanly by Tcl applications.
  641. 218. 8/16/93 Moved information about open files from the interpreter
  642. structure to global variables so that a file can be opened in one
  643. interpreter and read or written in another.
  644. 219. 8/16/93 Removed ENV_FLAGS from Makefile, so that there's no
  645. official support for overriding setenv, unsetenv, and putenv.
  646. 220. 8/20/93 Various configuration improvements:  coerce chars
  647. to unsigned chars before using macros like isspace;  source ~/.tclshrc
  648. file during initialization if it exists and program is running
  649. interactively;  allow there to be directories in auto_path that don't
  650. exist or don't have tclIndex files (ignore them); added Tcl_Init
  651. procedure and changed Tcl_AppInit to call it.
  652. 221. 8/21/93 Fixed bug in expr where "+", "-", and " " were all
  653. getting treated as integers with value 0.
  654. 222. 8/26/93 Added "tcl_interactive" variable to tclsh.
  655. 223. 8/27/93 Added procedure Tcl_FilePermissions to return whether a
  656. given file can be read or written or both.  Modified Tcl_EnterFile
  657. to take a permissions mask rather than separate read and write arguments.
  658. 224. 8/28/93 Fixed performance bug in "glob" command (unnecessary call
  659. to "access" for each file caused a 5-10x slow-down for big directories).
  660. ----------------- Released version 7.0 Beta 3, 8/28/93 ------------------
  661. 225. 9/9/93 Renamed regexp.h to tclRegexp.h to avoid conflicts with system
  662. include file by same name.
  663. 226. 9/9/93 Added Tcl_DontCallWhenDeleted.
  664. 227. 9/16/93 Changed not to call exit C procedure directly;  instead
  665. always invoke "exit" Tcl command so that application can redefine the
  666. command to do additional cleanup.
  667. 228. 9/17/93 Changed auto-exec to handle names that contain slashes
  668. (i.e. don't use PATH for them).
  669. 229. 9/23/93 Fixed bug in "read" and "gets" commands where they didn't
  670. clear EOF conditions.
  671. ----------------- Released version 7.0, 9/29/93 ------------------
  672. 230. 10/7/93 "Scan" command wasn't properly aligning things in memory,
  673. so segmentation faults could arise under some circumstances.
  674. 231. 10/7/93 Fixed bug in Tcl_ConvertElement where it forgot to
  675. backslash leading curly brace when creating lists.
  676. 232. 10/7/93 Eliminated dependency of tclMain.c on tclInt.h and
  677. tclUnix.h, so that people can copy the file out of the Tcl source
  678. directory to make modified private versions.
  679. 233. 10/8/93 Fixed bug in auto-loader that reversed the priority order
  680. of entries in auto_path for new-style index files.  Now things are
  681. back to the way they were before 3.0:  first in auto_path is always
  682. highest priority.
  683. 234. 10/13/93 Fixed bug where Tcl_CommandComplete didn't recognize
  684. comments and treat them as such.  Thus if you typed the line
  685.     # {
  686. interactively, Tcl would think that the command wasn't complete and
  687. wait for more input before evaluating the script.
  688. 235. 10/14/93 Fixed bug where "regsub" didn't set the output variable
  689. if the input string was empty.
  690. 236. 10/23/93 Fixed bug where Tcl_CreatePipeline didn't close off enough
  691. file descriptors in child processes, causing children not to exit
  692. properly in some cases.
  693. 237. 10/28/93 Changed "list" and "concat" commands not to generate
  694. errors if given zero arguments, but instead to just return an empty
  695. string.
  696. ----------------- Released version 7.1, 11/4/93 ------------------
  697. Note: there is no 7.2 release.  It was flawed and was thus withdrawn
  698. shortly after it was released.
  699. 238. 11/10/93 TclMain.c didn't compile on some systems because of
  700. R_OK in call to "access".  Changed to eliminate call to "access".
  701. ----------------- Released version 7.3, 11/26/93 ------------------
  702. 239. 11/6/93 Modified "lindex", "linsert", "lrange", and "lreplace"
  703. so that "end" can be specified as an index.
  704. 240. 11/6/93 Modified "append" and "lappend" to allow only two
  705. words total (i.e., nothing to append) without generating an error.
  706. 241. 12/2/93 Changed to use EAGAIN as the errno for non-blocking
  707. I/O instead of EWOULDBLOCK:  this should fix problem where non-blocking
  708. I/O didn't work correctly on System-V systems.
  709. 242. 12/22/93 Fixed bug in expressions where cancelled evaluation
  710. wasn't always working correctly (e.g. "set one 1; eval {1 || 1/$one}"
  711. failed with a divide by zero error).
  712. 243. 1/6/94 Changed TCL_VOLATILE definition from -1 to the address of
  713. a dummy procedure Tcl_Volatile, since -1 causes portability problems on
  714. some machines (e.g., Crays).
  715. 244. 2/4/94 Added support for unary plus.
  716. 245. 2/17/94 Changed Tcl_RecordAndEval and "history" command to
  717. call Tcl_GlobalEval instead of Tcl_Eval.  Otherwise, invocation of
  718. these facilities in nested procedures can cause unwanted results.
  719. 246. 2/17/94 Fixed bug in tclExpr.c where an expression such as
  720. "expr {"12398712938788234-1298379" != ""}" triggers an integer
  721. overflow error for the number in quotes, even though it isn't really
  722. a proper integer anyway.
  723. 247. 2/19/94 Added new procedure Tcl_DStringGetResult to move result
  724. from interpreter to a dynamic string.
  725. 248. 2/19/94 Fixed bug in Tcl_DStringResult that caused it to overwrite
  726. the contents of a static result in some situations.  This can cause
  727. bizarre errors such as variables suddenly having empty values.
  728. 249. 2/21/94 Fixed bug in Tcl_AppendElement, Tcl_DStringAppendElement,
  729. and the "lappend" command that caused improper omission of a separator
  730. space in some cases.  For example, the script
  731.     set x "abc{"; lappend x "def"
  732. used to return the result "abc{def" instead of "abc{ def".
  733. 250. 3/3/94 Tcl_ConvertElement was outputting empty elements as  if
  734. TCL_DONT_USE_BRACES was set.  This depends on old pre-7.0 meaning of
  735. , which is no longer in effect, so it didn't really work.  Changed
  736. to output empty elements as {} always.
  737. 251. 3/3/94 Renamed Tcl_DStringTrunc to Tcl_DStringSetLength and extended
  738. it so that it can be used to lengthen a string as well as shorten it.
  739. Tcl_DStringTrunc is defined as a macro for backward compatibility, but
  740. it is deprecated.
  741. 252. 3/3/94 Added Tcl_AllowExceptions procedure.
  742. 253. 3/13/94 Fixed bug in Tcl_FormatCmd that could cause "format"
  743. to mis-behave on 64-bit Big-Endian machines.
  744. 254. 3/13/94 Changed to use vfork instead of fork on systems where
  745. vfork exists.
  746. 255. 3/23/94 Fixed bug in expressions where ?: didn't associate
  747. right-to-left as they should.
  748. 256. 4/3/94 Fixed "exec" to flush any files used in >@ or >&@
  749. redirection in exec, so that data buffered for them is written
  750. before any new data added by the subprocess.
  751. 257. 4/3/94 Added "subst" command.
  752. 258. 5/20/94 The tclsh main program is now called Tcl_Main;  tclAppInit.c
  753. has a "main" procedure that calls Tcl_Main.  This makes it easier to use
  754. Tcl with C++ programs, which need their own main programs, and it also
  755. allows an application to prefilter the argument list before calling
  756. Tcl_Main.
  757. *** POTENTIAL INCOMPATIBILITY ***
  758. 259. 6/6/94 Fixed bug in procedure returns where the errorInfo variable
  759. could get truncated if an unset trace was invoked as part of returning
  760. from the procedure.
  761. 260. 6/13/94 Added "wordstart" and "wordend" options to "string" command.
  762. 261. 6/27/94 Fixed bug in expressions where they didn't properly cancel
  763. the evaluation of math functions in &&, ||, and ?:.
  764. 262. 7/11/94 Incorrect boolean values, like "ogle", weren't being
  765. handled properly.
  766. 263. 7/15/94 Added Tcl_RegExpCompile, Tcl_RegExpExec, and Tcl_RegExpRange,
  767. which provide lower-level access to regular expression pattern matching.
  768. 264. 7/22/94 Fixed bug in "glob" command where "glob -nocomplain ~bad_user"
  769. would complain about a missing user.  Now it doesn't complain anymore.
  770. 265. 8/4/94 Fixed bug with linked variables where they didn't behave
  771. correctly when accessed via upvars.
  772. 266. 8/17/94 Fixed bug in Tcl_EvalFile where it didn't clear interp->result.
  773. 267. 8/31/94 Modified "open" command so that errors in exec-ing
  774. subprocesses are returned by the open immediately, rather than
  775. being delayed until the "close" is executed.
  776. 268. 9/9/94 Modified "expr" command to generate errors for integer
  777. overflow (includes addition, subtraction, negation, multiplication,
  778. division).
  779. 269. 9/23/94 Modified "regsub" to return a count of the number of
  780. matches and replacements, rather than 0/1.
  781. 279. 10/4/94 Added new features to "array" command:
  782.     - added "get" and "set" commands for easy conversion between arrays
  783.       and lists.
  784.     - added "exists" command to see if a variable is an array, changed
  785.       "names" and "size" commands to treat a non-existent array (or scalar
  786.       variable) just like an empty one.
  787.     - added pattern option to "names" command.
  788. 280. 10/6/94 Modified Tcl_SetVar2 so that read traces on variables get
  789. called during append operations.
  790. 281. 10/20/94 Fixed bug in "read" command where reading from stdin
  791. required two control-D's to stop the reading.
  792. 282. 11/3/94 Changed "expr" command to use longs for division just like
  793. all other expr operators;  it previously used ints for division.
  794. 283. 11/4/94 Fixed bugs in "unknown" procedure:  it wasn't properly
  795. handling exception returns from commands that were executed after
  796. being auto-loaded.
  797. ----------------- Released version 7.4b1, 12/23/94 ------------------
  798. 284. 12/26/94 Fixed "install" target in Makefile (couldn't always
  799. find install program).
  800. 285. 12/26/94 Added strcncasecmp procedure to compat directory.
  801. 286. 1/3/95 Fixed all procedure calls to explicitly cast arguments:
  802. implicit conversions from prototypes (especially integer->double)
  803. don't work when compiling under non-ANSI compilers.  Tcl is now clean
  804. under gcc -Wconversion.
  805. 287. 1/4/95 Fixed problem in Tcl_ArrayCmd where same name was used for
  806. both a label and a variable;  caused problems on several older compilers,
  807. making array command misbehave and causing many errors in Tcl test suite.
  808. ----------------- Released version 7.4b2, 1/12/95 ------------------
  809. 288. 2/9/95 Modified Tcl_CreateCommand to return a token, and added
  810. Tcl_GetCommandName procedure.  Together, these procedures make it possible
  811. to track renames of a command.
  812. 289. 2/13/95 Fixed bug in expr where "089" was interpreted as a
  813. floating-point number rather than a bogus octal number.
  814. *** POTENTIAL INCOMPATIBILITY ***
  815. 290. 2/14/95 Added code to Tcl_GetInt and Tcl_GetDouble to check for
  816. overflows when reading in numbers.
  817. 291. 2/18/95 Changed "array set" to stop after first error, rather than
  818. continuing after error.
  819. 292. 2/20/95 Upgraded to use autoconf version 2.2.
  820. 293. 2/20/95 Fixed core dump that could occur in "scan" command if a
  821. close bracket was omitted.
  822. 294. 2/27/95 Changed Makefile to always use install-sh for installations:
  823. there's just too much variation among "install" system programs, which
  824. makes installation flakey.
  825. ----------------- Released version 7.4b3, 3/24/95 ------------------
  826. 3/25/95 (bug fix) Changed "install" to "./install" in Makefile so that
  827. "make install" will work even when "." isn't in the search path.
  828. 3/29/95 (bug fix) Fixed bug where the auto-loading mechanism wasn't
  829. protecting the values of the errorCode and errorInfo variables.
  830. 3/29/95 (new feature) Added optional pattern argument to "parray" procedure.
  831. 3/29/95 (bug fix) Made the full functionality of
  832.     "return -code ... -errorcode ..."
  833. work not just inside procedures, but also in sourced files and at
  834. top level.
  835. 4/6/95 (new feature) Added "pattern" option to "array names" command.
  836. 4/18/95 (bug fix) Fixed bug in parser where it didn't allow backslash-newline
  837. immediately after an argument in braces or quotes.
  838. 4/19/95 (new feature) Added tcl_library variable, which application can
  839. set to override default library directory.
  840. 4/30/95 (bug fix) During trace callbacks for array elements, the variable
  841. name used in the original reference would be temporarily modified to
  842. separate the array name and element name;  if the trace callback used
  843. the same name string, it would get the wrong name (the array name without
  844. element).  Fixed to restore the variable name before making trace
  845. callbacks.
  846. 4/30/95 (new feature) Added -nobackslashes, -nocommands, and -novariables
  847. switches to "subst" command.
  848. 5/4/95 (new feature) Added TCL_EVAL_GLOBAL flag to Tcl_RecordAndEval.
  849. 5/5/95 (bug fix)  Format command would overrun memory when printing
  850. integers with very large precision, as in "format %.1000d 0".
  851. 5/5/95 (portability improvement) Changed to use BSDgettimeofday on
  852. IRIX machines, to avoid compilation problems with the gettimeofday
  853. declaration.
  854. 5/6/95 (bug fix) Changed manual entries to use the standard .TH
  855. macro instead of a custom .HS macro;  the .HS macro confuses index
  856. generators like makewhatis.
  857. 5/9/95 (bug fix) Modified configure script to check for Solaris bug
  858. that makes vfork unreliable (core dumps result if vforked child
  859. changes a signal handler);  will use fork instead of vfork if the
  860. bug is present.
  861. 6/5/95 (bug fix) Modified "lsort" command to disallow recursive calls
  862. to lsort from a comparison function.  This is needed because qsort
  863. is not reentrant.
  864. 6/5/95 (bug fix) Undid change 243 above:  changed TCL_VOLATILE and
  865. TCL_DYNAMIC back to integer constants rather than procedure addresses.
  866. This was needed because procedure addresses can have multiple values
  867. under some dynamic loading systems (e.g. SunOS 4.1 and Windows).
  868. 6/8/95 (feature change) Modified interface to Tcl_Main to pass in the
  869. address of the application-specific initialization procedure.
  870. Tcl_AppInit is no longer hardwired into Tcl_Main.  This is needed
  871. in order to make Tcl a shared library. 
  872. 6/8/95 (feature change) Modified Makefile so that the installed versions
  873. of tclsh and libtcl.a have version number in them (e.g. tclsh7.4 and
  874. libtcl7.4.a) and the library directory name also has an embedded version
  875. number (e.g., /usr/local/lib/tcl7.4).  This should make it easier for
  876. Tcl 7.4 to coexist with earlier versions.
  877. ----------------- Released version 7.4b4, 6/16/95 ------------------
  878. 6/19/95 (bug fix) Fixed bugs in tclCkalloc.c that caused core dumps
  879. if TCL_MEM_DEBUG was enabled on word-addressed machines such as Crays.
  880. 6/21/95 (feature removal) Removed overflow checks for integer arithmetic:
  881. they just cause too much trouble (e.g. for random  number generators).
  882. 6/28/95 (new features) Added tcl_patchLevel and tcl_version variables,
  883. for consistency with Tk.
  884. 6/29/95 (bug fix) Fixed problem in Tcl_Eval where it didn't record
  885. the right termination character if a script ended with a comment.  This
  886. caused erroneous output for the following command, among others:
  887. puts "[
  888. expr 1+1
  889. # duh!
  890. ]"
  891. 6/29/95 (message change) Changed the error message for ECHILD slightly
  892. to provide a hint about why the problem is occurring.
  893. ----------------- Released version 7.4, 7/1/95 ------------------
  894. 7/18/95 (bug fix) Changed "lreplace" so that nothing is deleted if
  895. the last index is less than the first index or if the last index
  896. is < 0.
  897. 7/18/95 (bug fix) Fixed bugs with backslashes in comments:
  898. Tcl_CommandComplete (and "info complete") didn't properly handle
  899. strings ending in backslash-newline, and neither Tcl_CommandComplete
  900. nor the Tcl parser handled other backslash sequences right, such
  901. as two backslashes before a newline.
  902. 7/19/95 (bug fix) Modified Tcl_DeleteCommand to delete the hash table
  903. entry for the command before invoking its callback.  This is needed in
  904. order to deal with reentrancy.
  905. 7/22/95 (bug fix) "exec" wasn't reaping processes correctly after
  906. certain errors (e.g. if the name of the executable was bogus, as
  907. in "exec foobar").
  908. 7/27/95 (bug fix) Makefile.in wasn't using the LIBS variable provided
  909. by the "configure" script.  This caused problems on some SCO systems.
  910. 7/27/95 (bug fix) The version of strtod in fixstrtod.c didn't properly
  911. handle the case where endPtr == NULL.
  912. ----------------- Released patch 7.4p1, 7/29/95 -----------------------
  913. 8/4/95 (bug fix) C-level trace callbacks for variables were sometimes
  914. receiving the PART1_NOT_PARSED flag, which could cause errors in
  915. subsequent Tcl library calls using the flags. (JO)
  916. 8/4/95 (bug fix) Calls to toupper and tolower weren't using the
  917. UCHAR macros, which caused trouble in non-U.S. locales. (JO)
  918. 8/10/95 (new feature) Added the "load" command for dynamic loading of
  919. binary packages, and the Tcl_PackageInitProc prototype for package
  920. initialization procedures. (JO)
  921. 8/23/95 (new features) Added "info sharedlibextension" and
  922. "info nameofexecutable" commands, plus Tcl_FindExtension procedure. (JO)
  923. 8/25/95 (bug fix) If the target of an "upvar" was non-existent but
  924. had traces set, the traces were silently lost.  Change to generate
  925. an error instead. (JO)
  926. 8/25/95 (bug fix) Undid change from 7/19, so that commands can stay
  927. around while their deletion callbacks execute.  Added lots of code to
  928. handle all of the reentrancy problems that this opens up. (JO)
  929. 8/25/95 (bug fix) Fixed core dump that could occur in TclDeleteVars
  930. if there was an upvar from one entry in the table to the next entry
  931. in the same table. (JO)
  932. 8/28/95 (bug fix) Exec wasn't handling bad user names properly, as
  933. in "exec ~bogus_user/foo". (JO)
  934. 8/29/95 (bug fixes) Changed backslash-newline handling to correct two
  935. problems:
  936.     - Only spaces and tabs following the backslash-newline are now
  937.       absorbed as part of the backslash-newline.  Newlinew are no
  938.       longer absorbed (add another backslash if you want to absorb
  939.       another newline).
  940.     - TclWordEnd returns the character just before the backslash in
  941.       the sequence as the end of the sequence;  it used to not consider
  942.       the backslash-newline as a word separator. (JO)
  943. 8/31/95 (new feature) Changed man page installation (with "mkLinks"
  944. script) to create additional links for manual pages corresponding to
  945. each of the procedure and command names described in the pages. (JO)
  946. 9/10/95 Reorganized Tcl sources for Windows and Mac ports.  All sources
  947. are now in subdirectories:  "generic" contains sources that work on all
  948. platforms, "windows", "mac", and "unix" directories contain platform-
  949. specific sources.  Some UNIX sources are also used on other platforms. (SS)
  950. 9/10/95 (feature change) Eliminated exported global variables (they
  951. don't work with Windows DLLs).  Replaced tcl_AsyncReady and
  952. tcl_FileCloseProc with procedures Tcl_AsyncReady() and
  953. Tcl_SetFileCloseProc().  Replaced C variable tcl_RcFileName with
  954. a Tcl variable tcl_rcFileName. (SS)
  955. *** POTENTIAL INCOMPATIBILITY ***
  956. 9/11/95 (new feature) Added procedure Tcl_SetPanicProc to override
  957. the default implementation of "panic". (SS)
  958. 9/11/95 (new feature) Added "interp" command to allow creation of
  959. new interpreters and execution of untrusted scripts.  Added many new
  960. procedures, such as Tcl_CreateSlave, Tcl_CreateAlias,and Tcl_MakeSafe,
  961. to provide C-level access to the interpreter facility. This mechanism
  962. now provides almost all of the generic functions of Borenstein's and
  963. Rose's Safe-Tcl (but not any Tk or email-related stuff).  (JL)
  964. 9/11/95 (feature change) Changed file management so that files are
  965. no longer shared between interpreters:  a file cannot normally be
  966. referenced in one interpreter if it was opened in another.  This
  967. feature is needed to support safe interpreters.  Added Tcl_ShareHandle()
  968. procedure for allowing files to be shared, and added "interp" argument
  969. to Tcl_FilePermissions procedure. (JL)
  970. *** POTENTIAL INCOMPATIBILITY ***
  971. 9/11/95 (new feature) Added "AssocData" mechanism, whereby extensions
  972. can associate their own data with an interpreter and get called back
  973. when the interpreter is deleted.  This is visible at C level via the
  974. procedures Tcl_SetAssocData and Tcl_GetAssocData.  (JL)
  975. 9/11/95 (new feature) Added Tcl_ErrnoMsg to translate an errno value
  976. into a human-readable string.  This is now used instead of calling
  977. strerror because strerror mesages vary dramatically from platform
  978. to platform, which messes up Tcl tests.  Tcl_ErrnoMsg uses the standard
  979. POSIX messages for all the common signals, and calls strerror for
  980. signals it doesn't understand.
  981. ----------------- Released patch 7.4p2, 9/15/95 -----------------------
  982. ----------------- Released 7.5a1, 9/15/95 -----------------------
  983. 9/22/95 (bug fix) Changed auto_mkindex to create tclIndex files that
  984. handle directories whose paths might contain spaces. (RJ)
  985. 9/27/95 (bug fix) The "format" command didn't check for huge or negative
  986. width specifiers, which could cause core dumps. (JO)
  987. 9/27/95 (bug fix) Core dumps could occur if an interactive command typed
  988. to tclsh returned a very long result for tclsh to print out.  The bug is
  989. actually in printf (in Solaris 2.3 and 2.4, at least);  switched to use
  990. puts instead.  (JO)
  991. 9/28/95 (bug fix) Changed makefile.bc to eliminate a false dependency
  992. for tcl1675.dll on the Borland run time library. (SS)
  993. 9/28/95 (bug fix) Fixed tcl75.dll so it looks for tcl1675.dll instead
  994. of tcl16.dll. (SS)
  995. 9/28/95 (bug fix) Tcl was not correctly detecting the difference
  996. between Win32s and Windows '95. (SS)
  997. 9/28/95 (bug fix) "exec" was not passing environment changes to child
  998. processes under Windows. (SS)
  999. 9/28/95 (bug fix) Changed Tcl to ensure that open files are not passed
  1000. to child processes under Windows. (SS)
  1001. 9/28/95 (bug fix) Fixed Windows '95 and NT versions of exec so it can
  1002. handle both console and windows apps.   (SS)
  1003. 9/28/95 (bug fix) Fixed Windows version of exec so it no longer leaves
  1004. temp files lying around.  Also changed it so the temp files are
  1005. created in the appropriate system dependent temp directory. (SS)
  1006. 9/28/95 (bug fix) Eliminated source dependency on the Win32s Universal
  1007. Thunk header file, since it is not bundled with VC++. (SS)
  1008. 9/28/95 (bug fix) Under Windows, Tcl now constructs the HOME
  1009. environment variable from HOMEPATH and HOMEDRIVE when HOME is not
  1010. already set. (SS)
  1011. 9/28/95 (bug fix) Added support for "info nameofexecutable" and "info
  1012. sharedlibextension" to the Windows version. (SS)
  1013. 9/28/95 (bug fix) Changed tclsh to correctly parse command line
  1014. arguments so that backslashes are preserved under Windows. (SS)
  1015. 9/29/95 (bug fix) Tcl 7.5a1 treated either return or newline as end
  1016. of line in "gets", which caused lines ending in CRLF to be treated as
  1017. two separate lines.  Changed to allow only character as end-of-line:
  1018. carriage return on Macs, newline elsewhere. (JO)
  1019. 9/29/95 (new feature) Changed to install "configInfo" file in same
  1020. directory as library scripts.  It didn't used to get installed. (JO)
  1021. 9/29/95 (bug fix) Tcl was not converting Win32 errors into POSIX
  1022. errors under some circumstances. (SS)
  1023. 10/2/95 (bug fix) Safe interpreters no longer get initialized with
  1024. a call to Tcl_Init(). (JL)
  1025. 10/1/95 (new feature) Added "tcl_platform" global variable to provide
  1026. environment information such as the instruction set and operating
  1027. system. (JO)
  1028. 10/1/95 (bug fix) "exec" command wasn't always generating the
  1029. "child process exited abnormally" message when it should have.  (JO)
  1030. 10/2/95 (bug fix) Changed "mkLinks.tcl" so that the scripts it generates
  1031. won't create links that overwrite original manual entries (there was
  1032. a problem where pack-old.n was overwriting pack.n).  (JO)
  1033. 10/2/95 (feature change) Changed to use -ldl for dynamic loading under
  1034. Linux if it is available, but fall back to -ldld if it isn't.  (JO)
  1035. 10/2/95 (bug fix) File sharing was causing refcounts to reach 0
  1036. prematurely for stdin, stdout and stderr, under some circumstances. (JL)
  1037. 10/2/95 (platform support) Added support for Visual C++ compiler on
  1038. Windows, Windows '95 and Windows NT, code donated by Gordon Chaffee. (JL)
  1039. 10/3/95 (bug fix) Tcl now frees any libraries that it loads before it
  1040. exits. (SS)
  1041. 10/03/95 (bug fix) Fixed bug in Macintosh ls command where the -l
  1042. and -C options would fail in anything but the HOME directory. (RJ)
  1043. ----------------- Released 7.5a2, 10/6/95 -----------------------
  1044. 10/10/95 (bug fix) "file dirnam /." was returning ":" on UNIX instead
  1045. of "/". (JO)
  1046. 10/13/95 (bug fix) Eliminated dependency on MKS toolkit for generating
  1047. the tcl.def file from Borland object files. (SS)
  1048. 10/17/95 (new features) Moved the event loop from Tcl to Tk, made major
  1049. revisions along the way:
  1050.     - New Tcl commands:  after, update, vwait (replaces "tkwait variable").
  1051.     - "tkerror" is now replaced with "bgerror".
  1052.     - The following procedures are similar to their old Tk counterparts:
  1053.       Tcl_DoOneEvent, Tcl_Sleep, Tcl_DoWhenIdle, Tcl_CancelIdleCall,
  1054.       Tcl_CreateFileHandler, Tcl_DeleteFileHandler, Tcl_CreateTimerHandler,
  1055.       Tcl_DeleteTimerHandler, Tcl_BackgroundError.
  1056.     - Revised notifier, add new concept of "event source" with the following
  1057.       procedures:  Tcl_CreateEventSource, Tcl_DeleteEventSource,
  1058.       Tcl_WatchFile, Tcl_SetMaxBlockTime, Tcl_FileReady, Tcl_QueueEvent,
  1059.       Tcl_WaitForEvent. (JO)
  1060. 10/31/95 (new features) Implemented cross platform file name support to make
  1061. it easier to write cross platform scripts.  Tcl now understands 4 file naming
  1062. conventions: Windows (both DOS and UNC), Mac, Unix, and Network.  The network
  1063. convention is a new naming mechanism that can be used to paths in a platform
  1064. independent fashion.  See the "file" command manual page for more details.
  1065. The primary interfaces changes are:
  1066.     - All Tcl commands that expect a file name now accept both network and
  1067.       native form.
  1068.     - Two new "file" subcommands, "nativename" and "networkname", provide a
  1069.       way to convert between network and native form.
  1070.     - Renamed Tcl_TildeSubst to Tcl_TranslateFileName, and changed it so that
  1071.       it always returns a filename in native form.  Tcl_TildeSubst is defined
  1072.       as a macro for backward compatibility, but it is deprecated. (SS)
  1073. 11/5/95 (new feature) Made "tkerror" and "bgerror" synonyms, so that
  1074. either name can be used to manipulate the command (provides temporary
  1075. backward compatibility for existing scripts that use tkerror). (JO)
  1076. 11/5/95 (new feature) Added exit handlers and new C procedures
  1077. Tcl_CreateExitHandler, Tcl_DeleteExitHandler, and Tcl_Exit. (JO)
  1078. 11/6/95 (new feature) Added pid command for Macintosh version of
  1079. Tcl (it didn't previously exist on the Mac). (RJ)
  1080. 11/7/95 (new feature) New generic IO facility and support for IO to
  1081. files, pipes and sockets based on a common buffering scheme. Support
  1082. for asynchronous (non-blocking) IO and for event driver IO. Support
  1083. for automatic (background) asynchronous flushing and asynchronous
  1084. closing of channels. (JL)
  1085. 11/7/95 (new feature)  Added new commands "fconfigure" and "fblocked"
  1086. to support new I/O features such as nonblocking I/O.  Added "socket"
  1087. command for creating TCP client and server sockets. (JL).
  1088. 11/7/95 (new feature) Complete set of C APIs to the new generic IO
  1089. facility:
  1090.     - Opening channels: Tcl_OpenFileChannel, Tcl_OpenCommandChannel,
  1091.       Tcl_OpenTcpClient, Tcl_OpenTcpServer.
  1092.     - I/O procedures on channels, which roughly mirror the ANSI C stdio
  1093.       library:  Tcl_Read, Tcl_Gets, Tcl_Write, Tcl_Flush, Tcl_Seek,
  1094.       Tcl_Tell, Tcl_Close, Tcl_Eof, Tcl_InputBlocked, Tcl_GetChannelOption,
  1095.       Tcl_SetChannelOption.
  1096.     - Extension mechanism for creating new kinds of channels:
  1097.       Tcl_CreateChannel, Tcl_GetChannelInstanceData, Tcl_GetChannelType,
  1098.       Tcl_GetChannelName, Tcl_GetChannelFile, Tcl_RegisterChannel,
  1099.       Tcl_UnregisterChannel, Tcl_GetChannel.
  1100.     - Event-driven I/O on channels: Tcl_CreateChannelHandler,
  1101.       Tcl_DeleteChannelHandler. (JL)
  1102. 11/7/95 (new feature) Channel driver interface specification to allow
  1103. new types of channels to be added easily to Tcl. Currently being used
  1104. in three drivers - for files, pipes and TCP-based sockets. (JL).
  1105. 11/7/95 (new feature) interp delete now takes any number of path
  1106. names of interpreters to delete, including zero. (JL).
  1107. 11/8/95 (new feature) implemented 'info hostname' and Tcl_GetHostName
  1108. command to get host name of machine on which the Tcl process is running. (JL)
  1109. 11/9/95 (new feature) Implemented file APIs for access to low level files
  1110. on each system. The APIs are: Tcl_CloseFile, Tcl_OpenFile, Tcl_ReadFile,
  1111. Tcl_WriteFile and Tcl_SeekFile. Also implemented Tcl_WaitPid which waits
  1112. in a system dependent manner for a child process. (JL)
  1113. 11/9/95 (new feature) Added Tcl_UpdateLinkedVar procedure to force a
  1114. Tcl variable to be updated after its C variable changes. (JO)
  1115. 11/9/95 (bug fix) The glob command has been totally reimplemented so
  1116. that it can support different file name conventions.  It now handles
  1117. Windows file names (both UNC and drive-relative) properly.  It also
  1118. supports nested braces correctly now. (SS)
  1119. 11/13/95 (bug fix) Fixed Makefile.in so that configure can be run
  1120. from a clean directory separate from the Tcl source tree, and compilations
  1121. can be performed there. (JO)
  1122. 11/14/95 (bug fix) Fixed file sharing between interpreters and file
  1123. transferring between interpreters to correctly manage the refcount so that
  1124. files are closed when the last reference to them is discarded. (JL)
  1125. 11/14/95 (bug fix) Fixed gettimeofday implementation for the
  1126. Macintosh.  This fixes several timing related bugs. (RJ)
  1127. 11/17/95 (new feature) Added missing support for info nameofexecutable
  1128. on the Macintosh. (RJ)
  1129. 11/17/95 (bug fix) The Tcl variables argc argv and argv0 now return
  1130. something reasonable on the Mac.  (RJ)
  1131. 11/22/95 (new feature) Implemented "auto-detect" mode for end of line
  1132. translations. On input, standalone "r" mean MAC mode, standalone "n"
  1133. mean Unix mode and "rn" means Windows mode. On output, the mode is
  1134. modified to whatever the platform specific mode for that platform is. (JL)
  1135. 11/24/95 (feature change) Replaced "configInfo" file with tclConfig.sh,
  1136. which is more complete and uses slightly different names.  Also
  1137. arranged for tclConfig.sh to be installed in the platform-specific
  1138. library directory instead of Tcl's script library directory. (JO)
  1139. *** POTENTIAL INCOMPATIBILITY with Tcl 7.5a2, but not with Tcl 7.4 ***
  1140. ----------------- Released patch 7.4p3, 11/28/95 -----------------------
  1141. 12/5/95 (new feature) Added Tcl_File facility to support platform-
  1142. independent file handles.  Changed all interfaces that used Unix-
  1143. style integer fd's to use Tcl_File's instead. (SS)
  1144. *** POTENTIAL INCOMPATIBILITY ***
  1145. 12/5/95 (new feature) Added a new "clock" command to Tcl.  The command
  1146. allows you to get the current "clicks" or seconds & allows you to
  1147. format or scan human readable time/date strings. (RJ)
  1148. 12/18/95 (new feature) Moved Tk_Preserve, Tk_Release, and Tk_EventuallyFree
  1149. to Tcl, renamed to Tcl_Preserve, Tcl_Release, and Tcl_EventuallyFree. (JO)
  1150. 12/18/95 (new feature) Added new "package" command and associated
  1151. procedures Tcl_PkgRequire and Tcl_PkgProvide.   Also wrote
  1152. pkg_mkIndex library procedure to create index files from binaries
  1153. and scripts. (JO)
  1154. 12/20/95 (new feature) Added Tcl_WaitForFile procedure. (JO)
  1155. 12/21/95 (new features) Made package name argument to "load" optional
  1156. (Tcl will now attempt to guess the package name if necessary).  Also
  1157. added Tcl_StaticPackage and support in "load" for statically linked
  1158. packages.  (JO)
  1159. 12/22/95 (new feature) Upgraded the foreach command to accept multiple
  1160. loop variables and multiple value lists.  This lets you iterate over
  1161. multiple lists in parallel, and/or assign multiple loop variables from
  1162. one value list during each iteration. The only potential compatibility
  1163. problem is with scripts that used loop variables with a name that could be
  1164. construed to be a list of variable names (i.e. contained spaces).  (BW)
  1165. 1/5/96 (new feature) Changed tclsh so it builds as a console mode
  1166. application under Windows.  Now tclsh can be used from the command
  1167. line with pipes or interactively.  Note that this only works under
  1168. Windows 95 or NT. (SS)
  1169. 1/17/96 (new feature) Modified Makefile and configure script to allow
  1170. Tcl to be compiled as a shared library:  use the --enable-shared option
  1171. when configuing.  (JO)
  1172. 1/17/96 (removed obsolete features)  Removed the procedures Tcl_EnterFile
  1173. and Tcl_GetOpenFile:  these no longer make sense with the new I/O system. (JL)
  1174. *** POTENTIAL INCOMPATIBILITY ***
  1175. 1/19/96 (bug fixes) Prevented formation of circular aliases, through the
  1176. Tcl 'interp alias' command and through the 'rename' command, as well as
  1177. through the C API Tcl_CreateAlias. (JL)
  1178. 1/19/96 (bug fixes) Fixed several bugs in direct deletion of interpreters
  1179. with Tcl_DeleteInterp when the interpreter is a slave; fixes based on a
  1180. patch received from Viktor Dukhovni of ESM. (JL)
  1181. 1/19/96 (new feature) Implemented on-close handlers for channels; added
  1182. the C APIs Tcl_CreateCloseHandler and Tcl_DeleteCloseHandler. (JL)
  1183. 1/19/96 (new feature) Implemented portable error reporting mechanism; added
  1184. the C APIs Tcl_SetErrno and Tcl_GetErrno. (JL)
  1185. 1/24/96 (bug fix) Unknown command processing properly invokes external
  1186. commands under Windows NT and Windows '95 now. (SS)
  1187. 1/23/96 (bug fix) Eliminated extremely long startup times under Windows '95.
  1188. The problem was a result of the option database initialization code that
  1189. concatenated $HOME with /.Xdefaults, resulting in a // in the middle of the
  1190. file name.  Under Windows '95, this is incorrectly interpreted as a UNC
  1191. path.  They delays came from the network timeouts needed to determine that
  1192. the file name was invalid.  Tcl_TranslateFileName now suppresses duplicate
  1193. slashes that aren't at the beginning of the file name. (SS)
  1194.      
  1195. 1/25/96 (bug fix) Changed exec and open to create children so they are
  1196. attached to the application's console if it exists. (SS)
  1197. 1/31/96 (bug fix) Fixed command line parsing to handle embedded
  1198. spaces under Windows. (SS)
  1199. ----------------- Released 7.5b1, 2/1/96 -----------------------
  1200. 2/7/96 (bug fix) Fixed off by one error in argument parsing code under
  1201. Windows. (SS)
  1202. 2/7/96 (bug fix) Fixed bugs in VC++ makefile that improperly
  1203. initialized the tcl75.dll.  Fixed bugs in Borland makefile that caused
  1204. build failures under Windows NT. (SS)
  1205. 2/9/96 (bug fix) Fixed deadlock problem in AUTO end of line translation
  1206. mode which would cause a socket server with several concurrent clients
  1207. writing in CRLF mode to hang. (JL)
  1208. 2/9/96 (API change) Replaced -linemode option to fconfigure with a
  1209. new -buffering option, added "none" setting to enable immediate write. (JL)
  1210. *** INCOMPATIBILITY with b1 ***
  1211. 2/9/96 (new feature) Added C API Tcl_InputBuffered which returns the count
  1212. of bytes currently buffered in the input buffer of a channel, and o for
  1213. output only channels. (JL)
  1214. 2/9/96 (new feature) Implemented asynchronous connect for sockets. (JL)
  1215. 2/9/96 (new feature) Added C API Tcl_SetDefaultTranslation to set (per
  1216. channel) the default end of line translation mode. This is the mode that
  1217. will be installed if an output operation is done on the channel while it is
  1218. still in AUTO mode. (JL)
  1219. 2/9/96 (bug fix) Changed Tcl_OpenCommandChannel interface to properly
  1220. handle all of the combinations of stdio inheritance in background
  1221. pipelines.  See the Tcl_OpenFileChannel(3) man page for more
  1222. info.  This change fixes the bug where exec of a background pipeline
  1223. was not getting passed the stdio handles properly. (SS)
  1224. 2/9/96 (bug fix) Removed the new Tcl_CreatePipeline interface, and
  1225. restored the old version for Unix platforms only.  All new code should
  1226. use Tcl_CreateCommandChannel instead. (SS)
  1227. 2/9/96 (bug fix) Changed Makefile.in to use -L and -ltcl7.5 for Tcl
  1228. library so that shared libraries are more likely to be found correctly
  1229. on more platforms. (JO)
  1230. 2/13/96 (new feature) Added C API Tcl_SetNotifierData and
  1231. Tcl_GetNotifierData to allow notifier and channel driver writers to
  1232. associate data with a Tcl_File.  The result of this change is that
  1233. Tcl_GetFileInfo now always returns an OS file handle, and Tcl_GetFile
  1234. can be used to construct a Tcl_File for an externally constructed OS
  1235. handle. (SS)
  1236. 2/13/96 (bug fix) Changed Windows socket implementation so it doesn't
  1237. set SO_REUSEADDR on server sockets.  Now attempts to create a server
  1238. socket on a port that is already in use will be properly identified
  1239. and an error will be generated. (SS)
  1240. 2/13/96 (bug fix) Fixed problems with DLL initialization under Visual
  1241. C++ that left the C run time library uninitialized. (SS)
  1242. 2/13/96 (bug fix) Fixed Windows socket initialization so it loads
  1243. winsock the first time it is used, rather than at the time tcl75.dll
  1244. is loaded.  This should fix the bug where the modem immediately starts
  1245. trying to connect to a service provider when wish or tclsh are
  1246. started. (SS)
  1247. 2/13/96 (new feature) Added C APIs Tcl_MakeFileChannel and
  1248. Tcl_MakeTcpClientChannel to wrap up existing fds and sockets into
  1249. channels. Provided implementations on Unix and Windows. (JL)
  1250. 2/13/96 (bug fix) Fixed bug with seek leaving EOF and BLOCKING set. (JL)
  1251. 2/14/96 (bug fix) Fixed reentrancy problem in fileevent handling
  1252. and made it more robust in the face of errors. (JL)
  1253. 2/14/96 (feature change) Made generic IO level emulate blocking mode if the
  1254. channel driver is unable to provide it, e.g. if the low level device is
  1255. always nonblocking. Thus, now blocking behavior is an advisory setting for
  1256. channel drivers and can be ignored safely if the channel driver is unable
  1257. to provide it. (JL)
  1258. 2/15/96 (new feature) Added "binary" end of line translation mode, which is
  1259. a synonym of "lf" mode. (JL)
  1260. 2/15/96 (bug fix) Fixed reentrancy problem in fileevent handling vs
  1261. deletion of channel event handlers. (JL)
  1262. 2/15/96 (bug fix) Fixed bug in event handling which would cause a
  1263. nonblocking channel to not see further readable events after the first
  1264. readable event that had insufficient input. (JL)
  1265. 2/17/96 (bug fix) "info complete" didn't properly handle comments
  1266. in nested commands. (JO)
  1267. 2/21/96 (bug fix) "exec" under Windows NT/95 did not properly handle
  1268. very long command lines (>200 chars). (SS)
  1269. 2/21/96 (bug fix) Sockets could get into an infinite loop if a read
  1270. event arrived after all of the available data had been read. (SS)
  1271. 2/22/96 (bug fix) Added cast of st_size elements to (long) before
  1272. sprintf-ing in "file size" command.  This is needed to handle systems
  1273. like NetBSD with 64-bit file offsets.  (JO)
  1274. ----------------- Released 7.5b2, 2/23/96 -----------------------
  1275. 2/23/96 (bug fix) TCL_VARARGS macro in tcl.h wasn't defined properly
  1276. when compiling with C++.  (JO)
  1277. 2/24/96 (bug fix) Removed dependencies on Makefile in the UNIX Makefile:
  1278. this caused problems on some platforms (like Linux?). (JO)
  1279. 2/24/96 (bug fix) Fixed configuration bug that made Tcl not compile
  1280. correctly on Linux machines with neither -ldl or -ldld. (JO)
  1281. 2/24/96 (new feature) Added a block of comments and definitions to
  1282. Makefile.in to make it easier to have Tcl's TclSetEnv etc. replace
  1283. the library procedures setenv etc, so that calls to setenv etc. in
  1284. the application automatically update the Tcl "env" variable. (JO)
  1285. 2/27/96 (feature change) Added optional Tcl_Interp * argument (may be NULL)
  1286. to C API Tcl_Close and simplified closing of command channels. (JL)
  1287. *** INCOMPATIBILITY with Tcl 7.5b2, but not with Tcl 7.4 ***
  1288. 2/27/96 (feature change) Added optional Tcl_Interp * argument (may be NULL)
  1289. to C type definition Tcl_DriverCloseProc; modified all channel drivers to
  1290. implement close procedures that accept the additional argument. (JL)
  1291. *** INCOMPATIBILITY with Tcl 7.5b2, but not with Tcl 7.4 ***
  1292. 2/28/96 (bug fix) Fixed memory leak that could occur if an upvar
  1293. referred to an element of an array in the same stack frame as the
  1294. upvar. (JO)
  1295. 2/29/96 (feature change) Modified both Tcl_DoOneEvent and Tcl_WaitForEvent
  1296. so that they return immediately in cases where they would otherwise
  1297. block forever (e.g. if there are no event handlers of any sort). (JO)
  1298. 2/29/96 (new feature) Added C APIs Tcl_GetChannelBufferSize and
  1299. Tcl_SetChannelBufferSize to set and retrieve the size, in bytes, for
  1300. buffers allocated to store input or output in a channel. (JL)
  1301. 2/29/96 (new feature) Added option -buffersize to Tcl fconfigure command
  1302. to allow Tcl scripts to query and set the size of channel buffers. (JL)
  1303. 2/29/96 (feature removed) Removed channel driver function to specify
  1304. the buffer size to use when allocating a buffer. Removed the C typedef
  1305. for Tcl_DriverBufferSizeProc. Channels are now created with a default
  1306. buffer size of 4K. (JL)
  1307. *** INCOMPATIBILITY with Tcl 7.5b2, but not with Tcl 7.4 ***
  1308. 2/29/96 (feature change) The channel driver function for setting blocking
  1309. mode on the device may now be NULL. If the generic code detects that the
  1310. function is NULL, operations that set the blocking mode on the channel
  1311. simply succeed. (JL)
  1312. 3/2/96 (bug fix) Fixed core dump that could occur if a syntax error
  1313. (such as missing close paren) occurred in an array reference with a
  1314. very long array name. (JO)
  1315. 3/4/96 (bug fix) Removed code in the "auto_load" procedure that deletes
  1316. all existing auto-load information whenever the "auto_path" variable
  1317. is changed.  Instead, new information adds to what was already there.
  1318. Otherwise, changing the "auto_path" variable causes all package-
  1319. related information to be lost.  If you really want to get rid of
  1320. existing auto-load information, use auto_reset before setting auto_path. (JO)
  1321. 3/5/96 (new feature) Added version suffix to shared library names so that
  1322. Tcl will compile under NetBSD and FreeBSD (I hope).  (JO)
  1323. 3/6/96 (bug fix) Cleaned up error messages in new I/O system to correspond
  1324. more closely to old I/O system. (JO)
  1325. 3/6/96 (new feature) Added -myaddr and -myport options to the socket
  1326. command, removed -tcp and -- options.  This lets clients and servers
  1327. choose a particular interface.  Also changed the default server address
  1328. from the hostname to INADDR_ANY.  The server accept callback now gets
  1329. passed the client's port as well as IP address.  The C interfaces for
  1330. Tcl_OpenTcpClient and Tcl_OpenTcpServer have changed to support the
  1331. above changes. (BW)
  1332. *** POTENTIAL INCOMPATIBILITY with Tcl 7.5b2, but not with Tcl 7.4 ***
  1333. 3/6/96 (changed feature) The library function auto_mkindex will now
  1334. default to using the pattern "*.tcl" if no pattern is given. (RJ)
  1335. 3/6/96 (bug fix) The socket channel code for the Macintosh has been
  1336. rewritten to use native MacTcp.  (RJ)
  1337. 3/7/96 (new feature) Added Tcl_SetStdChannel and Tcl_GetStdChannel
  1338. interfaces to allow applications to explicitly set and get the global
  1339. standard channels. (SS)
  1340. 3/7/96 (bug fix) Tcl did close not the file descriptors associated
  1341. with "stdout", etc. when the corresponding channels were closed.  (SS)
  1342. 3/7/96 (bug fix) Reworked shared library and dynamic loading stuff to
  1343. try to get it working under AIX.  Added new @SHLIB_LD_LIBS@ autoconf
  1344. symbol as part of this.  AIX probably doesn't work yet, but it should
  1345. be a lot closer. (JO)
  1346. 3/7/96 (feature change) Added Tcl_ChannelProc typedef and changed the
  1347. signature of Tcl_CreateChannelHandler and Tcl_DeleteChannelHandler to take
  1348. Tcl_ChannelProc arguments instead of Tcl_FileProc arguments. This change
  1349. should not affect any code outside Tcl because the signatures of
  1350. Tcl_ChannelProc and Tcl_FileProc are compatible. (JL)
  1351. 3/7/96 (API change) Modified signature of Tcl_GetChannelOption to return
  1352. an int instead of char *, and to take a Tcl_DString * argument. Modified
  1353. the implementation so that the option name can be NULL, to mean that the
  1354. call should retrieve a list of alternating option names and values. (JL)
  1355. *** INCOMPATIBILITY with Tcl 7.5b2, but not with Tcl 7.4 ***
  1356. 3/7/96 (API change) Added Tcl_DriverSetOptionProc, Tcl_DriverGetOptionProc
  1357. typedefs, added two slots setOptionProc and getOptionProc to the channel
  1358. type structure. These may be NULL to indicate that the channel type does
  1359. not support any options. (JL)
  1360. *** INCOMPATIBILITY with Tcl 7.5b2, but not with Tcl 7.4 ***
  1361. 3/7/96 (feature change) stdin, stdout and stderr can now be put into
  1362. nonblocking mode. (JL)
  1363. 3/8/96 (feature change) Eliminated dependence on the registry for
  1364. finding the Tcl library files. (SS)
  1365. ----------------- Released 7.5b3, 3/8/96 -----------------------
  1366. 3/12/96 (feature improvement) Modified startup script to look in several
  1367. different places for the Tcl library directory.  This should allow Tcl
  1368. to find the libraries under all but the weirdest conditions, even without
  1369. the TCL_LIBRARY environment variable being set. (JO)
  1370. 3/13/96 (bug fix) Eliminated use of the "linger" option from the Windows
  1371. socket implementation. (JL)
  1372. 3/13/96 (new feature) Added -peername and -sockname options for fconfigure
  1373. for socket channels. Code contributed by John Haxby of HP. (JL)
  1374. 3/13/96 (bug fix) Fixed panic and core dump that would occur if the accept
  1375. callback script on a server socket encountered an error. (JL)
  1376. 3/13/96 (feature change) Added -async option to the Tcl socket command.
  1377. If the command is creating a client socket and the flag is present, the
  1378. client is connected asynchronously. If the option is absent (the default),
  1379. the client socket is connected synchronously, and the command returns only
  1380. when the connection has been completed or failed. This change was suggested
  1381. by Mark Diekhans. (JL)
  1382. 3/13/96 (feature change) Modified the signature of Tcl_OpenTcpClient to
  1383. take an additional int argument, async. If nonzero, the client is connected
  1384. to the server asynchronously. If the value is zero, the connection is made
  1385. synchronously, and the call to Tcl_OpenTcpClient returns only when the
  1386. connection fails or succeeds. This change was suggested by Mark Diekhans. (JL)
  1387. *** INCOMPATIBILITY with Tcl 7.5b3, but not with Tcl 7.4 ***
  1388. 3/14/96 (bug fix) "tclsh bogus_file_name" didn't print an error message. (JO)
  1389. 3/14/96 (bug fix) Added new procedures to tclCkalloc.c so that libraries
  1390. and applications can be compiled with TCL_MEM_DEBUG even if Tcl isn't
  1391. (however, the converse is still not true).  Patches provided by Jan
  1392. Nijtmans. (JO)
  1393. 3/15/96 (bug fix) Marked standard IO handles of a process as close-on-exec
  1394. to fix bug in Ultrix where exec was not sharing standard IO handles with
  1395. subprocesses. Fix suggested by Mark Diekhans. (JL)
  1396. 3/15/96 (bug fix) Fixed asynchronous close mechanism so that it closes the
  1397. channel instead of leaking system resources. The manifestation was that Tcl
  1398. would eventually run out of file descriptors if it was handling a large
  1399. number of nonblocking sockets or pipes with high congestion. (JL)
  1400. 3/15/96 (bug fix) Fixed tests so that they no longer leak file descriptors.
  1401. The manifestation was that Tcl would eventually run out of file descriptors
  1402. if the tests were rerun many times (> a hundred times on Solaris). (JL)
  1403. 3/15/96 (bug fix) Fixed channel creation code so that it never creates
  1404. unnamed channels. This would cause a panic and core dump when the channel
  1405. was closed. (JL)
  1406. 3/16/96 (bug fixes) Made lots of changes in configuration stuff to get
  1407. Tcl working under AIX (finally).  Tcl should now support the "load"
  1408. command under AIX and should work either with or without shared
  1409. libraries for Tcl and Tk. (JO)
  1410. 3/21/96 (configuration improvement) Changed configure script so it
  1411. doesn't use version numbers (as in -ltcl7.5 and libtcl7.5.so) under
  1412. SunOS 4.1, where they don't work anyway.  (JO)
  1413. 3/22/96 (new feature) Added C API Tcl_InterpDeleted that allows extension
  1414. writers to discover when an interpreter is being deleted. (JL)
  1415. 3/22/96 (bug fix) The standard IO channels are now added to each
  1416. trusted interpreter as soon as the interpreter is created. This ensures
  1417. against the bug where a child would do IO before the master had done any,
  1418. and then the child is destroyed - the standard IO channels would be then
  1419. closed and the master would be unable to do any IO. (JL)
  1420. 3/22/96 (bug fix) Made Tcl more robust against interpreter deletion, by
  1421. using Tcl_Preserve, Tcl_Release and Tcl_EventuallyFree to split the process
  1422. of interpreter deletion into two distinct phases. Also went through all of
  1423. Tcl and added calls to Tcl_Preserve and Tcl_Delete where needed. (JL)
  1424. 3/22/96 (bug fix) Fixed several places where C code was reading and writing
  1425. into freed memory, especially during interpreter deletion. (JL)
  1426. 3/22/96 (bug fix) Fixed very deep bug in Tcl_Release that caused memory to
  1427. be freed twice if the release callback did Tcl_Preserve and Tcl_Release on
  1428. the same memory as the chunk currently being freed. (JL)
  1429. 3/22/96 (bug fix) Removed several memory leaks that would cause memory
  1430. buildup on half-K chunks in the generic IO level. (JL)
  1431. 3/22/96 (bug fix) Fixed several core dumps which occurred when new
  1432. AssocData was being created during the cleanups in interpreter deletion.
  1433. The solution implemented now is to loop repeatedly over the AssocData until
  1434. none is left to clean up. (JL)
  1435. 3/22/96 (bug fix) Fixed a bug in event handling which caused an infinite
  1436. loop if there were no files being watched and no timer. Fix suggested by
  1437. Jan Nijtmans. (JL)
  1438. 3/22/96 (bug fix) Fixed Tcl_CreateCommand, Tcl_DeleteCommand to be more
  1439. robust if the interpreter is being deleted. Also fixed several order
  1440. dependency bugs in Tcl_DeleteCommand which kicked in when an interpreter
  1441. was being deleted. (JL)
  1442. 3/26/96 (bug fix) Upon a "short read", the generic code no longer calls
  1443. the driver for more input. Doing this caused blocking on some platforms
  1444. even on nonblocking channels. Bug and fix courtesy Mark Roseman. (JL)
  1445. 3/26/96 (new feature) Added 'package Tcltest' which is present only in
  1446. test versions of Tcl; this allows the testing commands to be loaded into
  1447. new interpreters besides the main one. (JL)
  1448. 3/26/96 (restored feature) Recreated the Tcl_GetOpenFile C API. You can
  1449. now get a FILE * from a registered channel; Unix only. (JL)
  1450. 3/27/96 (bug fix) The regular expression code did not support more
  1451. than 9 subexpressions.  It now supports up to 20. (SS)
  1452. 4/1/96 (bug fixes) The CHANNEL_BLOCKED bit was being left on on a short
  1453. read, so that fileevents wouldn't fire correctly. Bug reported by Mark
  1454. Roseman.(JL, RJ)
  1455. 4/1/96 (bug fix) Moved Tcl_Release to match Tcl_Preserve exactly, in
  1456. tclInterp.c; previously interpreters were being freed only conditionally
  1457. and sometimes not at all. (JL)
  1458. 4/1/96 (bug fix) Fixed error reporting in slave interpreters when the
  1459. error message was being generated directly by C code. Fix suggested by
  1460. Viktor Dukhovni of ESM. (JL)
  1461. 4/2/96 (bug fixes) Fixed a series of bugs in Windows sockets that caused
  1462. events to variously get lost, to get sent multiple times, or to be ignored
  1463. by the driver. The manifestation was blocking if the channel is blocking,
  1464. and either getting EAGAIN or infinite loops if the channel is nonblocking.
  1465. This series of bugs was found by Ian Wallis of Cisco. Now all tests (also
  1466. those that were previously commented out) in socket.test pass.  (JL, SS)
  1467. 4/2/96 (feature change/bug fix) Eliminated network name support in
  1468. favor of better native name support.  Added "file split", "file join",
  1469. and "file pathtype" commands.  See the "file" man page for more
  1470. details. (SS)
  1471. *** INCOMPATIBILITY with Tcl 7.5b3, but not with Tcl 7.4 ***
  1472. 4/2/96 (bug fix) Changed implementation of auto_mkindex so tclIndex
  1473. files will properly handle path names in a cross platform context. (SS)
  1474. 4/5/96 (bug fix) Fixed Tcl_ReadCmd to use the channel buffer size as the
  1475. chunk size it reads, instead of a fixed 4K size. Thus, on large reads, the
  1476. user can set the channel buffer size to a large size and the read will
  1477. occur orders of magnitude faster. For example, on a 2MB file, reading in 4K
  1478. chunks took 34 seconds, while reading in 1MB chunks took 1.5 seconds (on a
  1479. SS-20). Problem identified and fix suggested by John Haxby of HP. (JL)
  1480. 4/5/96 (bug fix) Fixed socket creation code to invoke gethostbyname only if
  1481. inet_addr failed (very unlikely). Before this change the order was reversed
  1482. and this made things much slower than they needed to be (gethostbyname
  1483. generally requires an RPC, which is slow). Problem identified and fix
  1484. suggested by John Loverso of OSF. (JL)
  1485. 4/9/96 (feature change) Modified "auto" translation mode so that it
  1486. recognizes any of "n", "r" and "rn" in input as end of line, so
  1487. that a file can have mixed end-of-line sequences. It now outputs
  1488. the platform specific end of line sequence on each platform for files and
  1489. pipes, and for sockets it produces crlf in output on all platforms. (JL)
  1490. *** INCOMPATIBILITY with Tcl 7.5b3, but not with Tcl 7.4 ***
  1491. 4/11/96 (new feature) Added -eofchar option to Tcl_SetChannelOption to allow
  1492. setting of an end of file character for input and output. If an input eof
  1493. char is set, it is recognized as EOF and further input from the channel is
  1494. not presented to the caller. If an output eof char is set, on output, that
  1495. byte is appended to the channel when it is closed. On Unix and Macintosh,
  1496. all channels start with no eof char set for input or output. On Windows,
  1497. files and pipes start with input and output eof chars set to Crlt-Z (ascii
  1498. 26), and sockets start with no input or output eof char. (JL)
  1499. *** INCOMPATIBILITY with Tcl 7.5b3, but not with Tcl 7.4 ***
  1500. 4/17/96 (bug fix) Fixed series of bugs with handling of crlf sequence split
  1501. across buffer boundaries in input, in AUTO mode. (JL, BW)
  1502. 4/17/96 (test suite improvement) Fixed test suite so that tests that
  1503. depend on the availability of Unix commands such as echo, cat and others
  1504. are not run if these commands are not present. (JL)
  1505. 4/17/96 (test suite improvement) The socket test now automatically starts,
  1506. on platformst that support exec, a separate process for remote testsing. (JL)
  1507. ----------------- Released 7.5, 4/21/96 -----------------------
  1508. 5/1/96 (bug fix) "file tail ~" did not correctly return the tail
  1509. portion of the user's home directory. (SS)
  1510. 5/1/96 (bug fix) Fixed bug in TclGetEnv where it didn't lookup environment
  1511. variables correctly:  could confuse "H" and "HOME", for example.  (JO)
  1512. 5/1/96 (bug fix) Changed to install tclConfig.sh under "make install-binaries",
  1513. not "make install-libraries".  (JO)
  1514. 5/2/96 (bug fix) Changed pkg_mkIndex not to attempt to "load" a file unless
  1515. it has the standard shared library extension.  On SunOS, attempts to load
  1516. Tcl scripts cause the whole application to be aborted (there's no way to
  1517. get the error back into Tcl).  (JO)
  1518. 5/7/96 (bug fix) Moved initScript in tclUnixInit.c to writable memory to
  1519. avoid potential core dumps. (JO)
  1520. 5/7/96 (bug fix) Auto_reset procedure was removing procedure from init.tcl,
  1521. such as pkg_mkIndex.  (JO)
  1522. 5/7/96 (bug fix) Fixed cast on socket address resolution code that
  1523. would cause a failure to connect on Dec Alphas. (JL)
  1524. 5/7/96 (bug fix) Added "time", "subst" and "fileevent" commands to set of
  1525. commands available in a safe interpreter. (JL)
  1526. 5/13/96 (bug fix) Preventing OS level handles for stdin, stdout and stderr
  1527. from being implicitly closed when the last reference to the standard
  1528. channel containing that handle is discarded when an interpreter is deleted.
  1529. Explicitly closing standard channels by using "close" still works. (JL)
  1530. 5/21/96 (bug fix) Do not create channels for stdin, stdout and stderr on
  1531. Unix if the devices are closed. This prevents a duplicate channel name
  1532. panic later on when the fd is used to open a channel and the channel is
  1533. registered in an interpreter. (JL)
  1534. 5/23/96 (bug fix) Fixed bug that prevented the use of standard channels in
  1535. interpreters created after the last interpreter was destroyed. In the sequence
  1536. interp = Tcl_CreateInterp();
  1537. Tcl_DeleteInterp(interp);
  1538. interp = Tcl_CreateInterp();
  1539. channels for stdio would not be available in the second interpreter. (JL)
  1540. 5/23/96 (bug fix) Fixed bug that allowed Tcl_MakeFileChannel to create new
  1541. channels with Tcl_Files in them that are already used by another channel.
  1542. This would cause core dumps when the Tcl_Files were being freed twice. (JL)
  1543. 5/23/96 (bug fix) Fixed a logical timing bug that caused a standard channel
  1544. to be removed from the standard channel table too early when the channel
  1545. was being closed. If the channel was being flushed asynchronously, it could
  1546. get recreated before being actually destroyed, and the recreated channel
  1547. would contain the same Tcl_File as the one being closed, leading to
  1548. dangling pointers and core dumps. (JL)
  1549. 5/27/96 (bug fix) Fixed a bug in Tcl_GetChannelOption which caused it to
  1550. always return a list of one element, a list of the settings, for
  1551. -translation and -eofchar options. Now correctly returns the value
  1552. described by the documentation (Mark Diekhans found this, thanks!). (JL)
  1553. 5/30/96 (bug fix) Fixed a couple of syntax errors in io.test. (JL)
  1554. 5/30/96 (bug fix) If a fileevent scripts gets an error, delete it before
  1555. causing a background error. This is to allow the error handler to reinstall
  1556. the fileevent and to prevent infinite loops if the event loop is reentered
  1557. in the error handler. (JL)
  1558. 5/31/96 (bug fix) Channels now will get properly flushed on exit. (JL)
  1559. 6/5/96 (bug fix) Changed Tcl_Ckalloc, Tcl_Ckfree, and Tcl_Ckrealloc to
  1560. Tcl_Alloc, Tcl_Free, and Tcl_Realloc.  Added documentation for these
  1561. routines now that they are officially supported.  Extension writers
  1562. should use these routines instead of free() and malloc(). (SS)
  1563. 6/10/96 (bug fix) Changes the Tcl close command so that it no longer
  1564. waits on nonblocking pipes for the piped processes to exit; instead it
  1565. reaps them in the background. (JL)
  1566. 6/11/96 (bug fix) Increased the length of the listen queue for server
  1567. sockets on Unix from 5 to 100. Some OSes will disregard this and reset it
  1568. to 5, but we should try to get as long a queue as we can, for performance
  1569. reasons. (JL)
  1570. 6/11/96 (bug fix) Fixed windows sockets bug that caused a cascade of events
  1571. if the fileevent script read less than was available. Now reading less than
  1572. is available does not cause a flood of Tcl events. (JL, SS)
  1573. 6/11/96 (bug fix) Fixed bug in background flushing on closed channels that
  1574. would prevent the last buffer from getting flushed. (JL)
  1575. 6/13/96 (bug fix) Fixed bug in Windows sockets that caused a core dump if
  1576. a DLL linked with tcl.dll and referred to e.g. ntohs() without opening a
  1577. Tcl socket. The problem was that the indirection table was not being
  1578. initialized. (JL)
  1579. 6/13/96 (bug fix) Fixed OS level resource leak that would occur when a
  1580. Tcl channel was still registered in some interpreter when the process
  1581. exits. Previously the channel was not being closed and the OS level handles
  1582. were not being released; the output was being flushed but the device was
  1583. not being closed. Now the device is properly closed. This was only a
  1584. problem on Win3.1 and MacOS. (JL, SS)
  1585. 6/28/96 (bug fix) Fixed bug where transient errors were leaving an error
  1586. code around, so that it would erroneously get reported later. This bug was
  1587. exercised intermittently by closing a channel to a file on a very loaded
  1588. NFS server, or to a socket whose other end blocked. (JL, BW)
  1589. 7/3/96 (bug fix) Fileevents declared in an interpreter are now deleted
  1590. when the channel is closed in that interpreter. Before this fix, the
  1591. fileevent would hang around until the channel is completely closed, and
  1592. would cause errors if events happened before the channel was closed. This
  1593. could happen in two cases: first if the channel is shared between several
  1594. interpreters, and second if an async flush is in progress that prevents the
  1595. channel from being closed until the flush finishes. (JL)
  1596. 7/10/96 (bug fix) Fixed bugs in both "lrange" and "lreplace" commands
  1597. where too much white space was being removed. For example, the command
  1598. lreplace {}     hello} end end
  1599. was returning "}", losing the significant space in the first list
  1600. element and corrupting the list. (JO)
  1601. 7/20/96 (bug fix) The procedure pkg_mkIndex didn't work properly for
  1602. extensions that depend on Tk, because it didn't load Tk into the child
  1603. interpreter before loading the extension.  Now it loads Tk if Tk is
  1604. present in the parent. (JO)
  1605. 7/23/96 (bug fix) Added compat version of strftime to fix crashes
  1606. resulting from bad implementations under Windows. (SS)
  1607. 7/23/96 (bug fix) Standard implementations of gmtime() and localtime()
  1608. under Windows did not handle dates before 1970, so they were replaced
  1609. with a revised implementation. (SS)
  1610. 7/23/96 (bug fix) Tcl would crash on exit under Borland 5.0 because
  1611. the global environ pointer was left pointing to freed memory. (SS)
  1612. 7/29/96 (bug fix) Fixed memory leak in Tcl_LoadCmd that could occur if