1 15. V6.22.04 - 20210426
2 14. Don't crash with 'bindkey "^0" clear-screen' (Karl Jeacle)
3 13. Fix $x:q:h and $x:q:t return the whole string for strings not containing /
4 12. V6.22.03 - 20201118
5 11. Fix $x:q:h and $x:q:t to not crash (alzwded) with strings containing /
6 10. Block SIGHUP while writing history/directory stack (Brett Frankenberger)
7  9. Fixed reversed test that broke history merging (Brett Frankenberger)
8  8. Prevent recursive entry for writing history (Brett Frankenberger)
9  7. alxwded@github, keep track of the :g and :a modifiers per modifier they
10     affect.
11  6. alzwded@github, fix infinite loop with :gas variable modifier
12  5. PR/88: Add a Q: modifier that preserves empty arguments leaving :q
13     alone.
14  4. V6.22.02 - 20191204
15  3. Fix version in configure.ac
16  2. V6.22.01 - 20191201
17  1. undo PR/88: Preserve empty arguments in :q, since it breaks
18	$ set x=""
19	$ alias test "echo "\""$x:q"\"" is working."
20	$ alias test
21	echo "
22
23  6. V6.22.00 - 20191128
24  5. PR/113: Sobomax: avoid infinite loops for -c commands when stdout is
25     not a tty.
26  4. Avoid infinite loops during history loads when merging, print a better
27     error for errors during history load.
28  3. PR/88: Preserve empty arguments in :q
29  2. PR/94: Small apple issues (SAVESIGVEC, HOSTTYPE)
30  1. PR/81: Fix range matching issue where we were comparing with the
31     range character instead of the start of range. [l-z]* would match foo
32
33 12. V6.21.00 - 20190508
34 11. Abort history loading on words and lines too long
35     https://bugzilla.redhat.com/show_bug.cgi?id=1598502
36 10. PR/37: Introduce GetCmdChar() to avoid open coding array access.
37  9. make closem() not close sockets so as not to affect nss_ldap.
38     tcsh never creates sockets so that's ok (Miloslav Trmac)
39  8. PR/597: Make rmstar work with aliased rm
40  7. convert match() from recursive to backtracking.
41  6. Handle 8 bit characters in bindkey (Werner Fink)
42  5. Look for tgetent in libtinfo as well (Werner Fink)
43  4. Don't play pointer tricks that are undefined in modern c (Brooks Davis)
44  3. Fix out of bounds read (Brooks Davis)
45  2. Fix type of read in prompt confirmation (eg. rmstar) (David Kaspar)
46  1. PR/471: Delay arginp parsing
47
48 20. V6.20.00 - 20161124
49 19. Don't resize the screen if it did not change size.
50 18. V6.19.01 - 20161025
51 17. restore file description when cleaning up after eval:
52	repeat 99 time
53 16. PR/572: Fix $SHLVL issue when exec'ing subshells.
54 15. PR/403: Fix backquote expansion for multi-byte character sets.
55 14. Fix drawing issu with multi-line prompt (Kensuke Iwahashi/David Kaspar)
56 13. always send prusage to stdout.
57 12. PR/526: Fix double \\ printing from previous fix in history expansion.
58 11. Android updates from Corinna Vinschen
59 10. PR/526: Quote backslashes properly so they can be preserved in ``
60     expansions
61  9. Fix memory leak for paraml
62  8. Add notempty and ask values for the noclobber setting (Martin Tournoij)
63  7. more correct $wordchars for vimode (Luke Mewburn)
64  6. expose VImode in $vimode (Luke Mewburn)
65  5. display what the compiled in editor is in bindkey -d (Luke Mewburn)
66  4. run-fg-editor improvements and documentation (Luke Mewburn)
67  3. Fix parsing of 'if (cond)then' (Fridolin Pokorny)
68  2. PR/437: Fix handling of invalid unicode characters.
69  1. PR/451: Fix error messages containing %c to be always '%c'
70
71 41. V6.19.00 - 20150521
72 40. V6.18.05 - 20150510
73 39. fix reseting when interrupted inside an eval "eval sleep 10^C"
74     (paulo.cesar.pereira.de.andrade)
75 38. rename handle_intr -> handle_interrupt as originally intended.
76 37. fix input tests that need stdin on a tty
77 36. V6.18.04 - 20150504
78 35. revert fix echo "\1", it is incorrect.
79 34. revert fix to PR/437, breaks short strings.
80 33. V6.18.03 - 20150503
81 32. PR/437: Nakajima Akira: Fix segmentation fault reading input files
82 31. PR/291: Print job status messages to stderr.
83 30. Fridolin Pokorny NUL in `` does not mean EOF.
84 29. Pavel Raiskup fix hang with:
85	while (1)
86	   ( date & ; wait )
87        end
88 28. Add cdtohome special variable (Martin Tournoij)
89 27. Fix root prompt char for windows (Corinna Vinschen)
90 26. For "next" completion matches only consider exact matches of the previous
91     word (Jamie Landeg-Jones)
92 25. Fix echo "\1" for echo_style=both where the first character was
93     not processed properly (Gary Duzan)
94 24. V6.18.02 - 20140618
95 23. fix ls-F /non printing exit value twice.
96 22. rename configure.in to configure.ac, add aclocal.m4 to CVS
97 21. set foo="aabaabaa"; echo $foo:as/a// should produce bb
98 20. Add locked merge history support (Marcin Konarski)
99 19. Support more resource limits from various BSD's
100 18. Cache history count to speed up thing
101 17. PR/240: minix support 
102 16. revert fix for 15. Causes extra quoting, for example (foo is a program
103     that prints its arguments):
104	$ ./foo 'abc' *
105	'\a\b\c'
106 15. fix globbing for ``, stripping backslashes. Example:
107	cat << _EOF > huh
108	echo 'hello\;world'
109        _EOF
110	echo `./huh 0`
111	echo `./huh $?`
112 14. fix for `` that causes hang. Example:
113	cat << _EOF > huh
114	#!/bin/sh
115	echo "[$@]"
116	echo "I am running"
117	echo "I am running ($$)" >> huh.out
118	_EOF
119	cat << _EOF > huh.tcsh
120	#!/bin/tcsh -f
121
122	./huh \
123	    `#comment blah blah blah` \
124	    parameter a \
125	    `#comment blah blah blah` \
126	    parameter b \
127	    `#comment blah blah blah` \
128	    parameter c
129	echo ok
130	_EOF
131 13. remove AsciiOnly fix now that the real issue has been fixed (Roman Kollar)
132 12. define utmp file for aix (Laurence Darby)
133 11. fix if history in loops
134 10. make ls-F print to stderr and set the exit code
135  9. make rmstar interruptible on linux
136  8. Get rid of pret_t and make the printf functions return the number of
137     characters printed as the system ones do.
138  7. Parse a FreeBSD compat $LSCOLORS. What to do when both LSCOLORS and
139     LS_COLORS are set. I am not documenting this until we decide.
140  6. V6.18.01 - 20120214
141  5. fix interruptible wait again
142  4. ignore bogus compiler overflow message
143  3. cleanup ifdefs in utmp code, and provide default array entries
144  2. Ignore #machine entries in host.defs
145  1. Detect missing ) in gethost.c (Corinna Vinschen)
146
147104. V6.18.00 - 20120114
148103. remove unused variables.
149102. Make gethost use definitions for x __x__ and __x automatically.
150101. More utmp fixes
151100. V6.17.10 - 20120105
152 99. Add more FreeBSD/NetBSD machines
153 98. Add portability wrapper for gencat
154 97. Fix warning for write in SYSMALLOC systems.
155 96. V6.17.09 - 20120102
156 95. revert gencat handling to pre-cygwin fixes (without the env settings)
157 94. remove stray endutent()
158 93. V6.17.08 - 20111230
159 92. Remove - from gencat
160 91. Provide support for malloc_usable_size() so that linux works again
161     without SYSMALLOC
162 90. Add support for FreeBSD's utmpx.
163 89. V6.17.07 - 20111227
164 88. Fix debian bug #645238: tcsh segfaults when prompt includes %j and
165     there are more than 10 jobs.
166 87. PR/155: Default $anyerror to set for backward compatibility
167 86. PR/149: Don't print -1 in %j (Vojtech Vitek)
168 85. handle -- on chdir commands as the end of options processing so that
169     they can process a directory like -x without resorting to ./-x
170     (Andrew Stevenson)
171 84. Handle write(2) returning ENOENT from SoFS, thanks ++HAL (Robert Byrnes)
172 83. PR/38: Null check for jobs (Kurt Miller)
173 82. Fix spelling correction correcting ./foo -> ../foo2 (jean-luc leger)
174 81. PR/120: string0 in filetest does not have enough space.
175 80. V6.17.06 - 20110415
176 79. PR/110: Add $anyerror to select behavior. Default to the new one.
177 78. Don't try to spell commands that are correct (Rouben Rostamian)
178     [./tcsh -f; set path=($path 2); mkdir foo2; cd foo2; touch foo;
179      chmod +x foo; set correct=cmd; ./foo -> ../foo]
180 77. Don't push the syntax struct on the cleanup stack, because on foo;bar
181     if foo fails, we will free bar prematurely (Ben Miller)
182 76. Avoid infinite loop while trying to print the pid of a dying process
183     to a closed file (Bob Arendt)
184 75. Handle completion of ${ variables (Anthony Mallet)
185 74. Add --disable-nls-catalogs (Corinna Vinschen)
186 73. convert message catalogs to UTF-8 (Werner Fink)
187 72. check that the NLS path works before setting $NLSPATH.
188 71. use SYSMALLOC for GLIBC (Werner Fink)
189 70. use mallinfo for SYSMALLOC (Corinna Vinschen)
190 69. V6.17.05 - 20110201
191 68. Use mkstemp() if there for here docs (Werner Fink)
192 67. Fix handling of errors and exit values in builtins (Werner Fink)
193 66. Better pty name detection (Werner Fink)
194 65. Enable NLS catalogs on Cygwin (Corinna Vinschen)
195 64. NLSPATH handling fixes (Corinna Vinschen)
196 63. Avoid infrequent exit when tcsh cd's into a non-existent directory
197     https://bugzilla.novell.com/show_bug.cgi?id=293395 (Werner Fink)
198 62. Don't try to spell check full path binaries that are correct because
199     they can cause hangs when other nfs partitions are hung. (Werner Fink)
200 61. Avoid nested interrupts when exiting causing history writing to fail
201     https://bugzilla.novell.com/show_bug.cgi?id=331627 (Werner Fink)
202 60. Instead of giving an error or ignoring lines with missing eol at eof,
203     process them.
204 59. Avoid leaking fd's in mail check (Werner Fink)
205 58. Add cygwin_xcrypt() (Corinna Vinschen)
206 57. Recognize i686 (Corinna Vinschen)
207 56. Rename cygwin32 to cygwin and bring it up-to-date with modern cygwin
208     settings (Corinna Vinschen)
209 55. Avoid double slashes in cdpath (Corinna Vinschen)
210 54. V6.17.04 - 20110118
211 53. Revert PR/110, breaks the test suite.
212 52. V6.17.03 - 20110117
213 51. PR/102: Complain on input files with missing trailing \n
214 50. PR/104: If atime == mtime we don't have new mail.
215 49. PR/113: Don't allow illegal variable names to be set.
216 48. PR/112: don't set $REMOTEHOST on the local machine.
217 47. PR/110: exit status of the pipeline should be the status of the last
218     command.
219 46. Android support (Corinna Vinschen)
220 45. Add AUTOSET_KANJI which works around the Shift-JIS encoding that
221     translates unshifted 7 bit ASCII (Werner Fink)
222 44. Handle mb{r,}towc() returning 0 by setting the return value to NUL
223     (Jean-Luc Leger)
224 43. PR/109: make wait interruptible (Vojtech Vitek)
225 42. resource limit fixes: signed vs. unsigned, megabyte issue, doc issues
226     (Robert Byrnes)
227 41. remove .bat and .cmd handling for executables on cygwin (Corinna Vinschen)
228 40. Don't echo history while history -L or history -M
229 39. Check for EOS before ** from Greg Dionne
230 38. Don't fork in backeval from Bryan Mason
231 37. Better globstar support from Greg Dionne
232 36. Error out when processing the last incomplete line instead of silently
233     ignoring it (Anders Kaseorg)
234 35. Fix SEGV from echo ``
235 34. Better fixes for histchars and promptchars (nargs)
236 33. Fix win32 issue calling fmalloc/ffree from non-thread-safe context.
237     (Fabio Fabbri)
238 32. V6.17.02 - 20100512
239 31. PR/79: nargs: Better handling for promptchars.
240 30. PR/97: Add parseoctal to retain compatibility with previous versions (Jim
241     Zajkowski)
242 29. PR/84: Performance fixes for large history merges (add
243     hashtable (Ted Anderson)
244 28. Revert previous #23; people should use $histlit if they want this
245     feature.
246 27. Don't kill "hup" background jobs when a child of the shell exits.
247     From Debian.
248 26. Ignore \r\n in the command line options for OS's that don't strip
249     these from #!; from Debian
250 25. Fix enhanced missing patch (Greg Dionne)
251 24. Callers of rt_mbtowc don't grok -2 as a return. Return -1 for now.
252     (Corinna Vinschen)
253 23. Turn HistLit on while recording history to avoid \!\! losing its \.
254     From Debian
255 22. set autoexpand; set histchars="";\n<tab> crash. From Debian
256 21. V6.17.01 - 20100506
257 20. unset verbose while we are reading the history file to avoid echoing
258     to the terminal. (Jeffrey Bastian)
259 19. globstar addition, Enhance addition, euid, euser, gid variables
260     (Greg Dionne)
261 18. Make 'e' in vi mode work like 'b' - use wordchars (Alistair Crooks)
262 17. Handle UTF-16 surrogates (Corinna Vinschen)
263 16. Make tcsh work on systems where sizeof(wchar_t) == 2 (Corinna Vinschen)
264 15. Better support for Solaris >= 2.9 (Thomas Uhle)
265 14. Change internal expression calculations to long long so that we can
266     deal with > 32 bit time, inodes, uids, file sizes etc.
267 13. Add new linux resource limits.
268 12. Don't print 'Exit X' when printexitvalue is set in `` expressions
269     (Jeff Bastian)
270 11. Add more LS_COLORS vars (M.H. Anderson)
271 10. Reduce whitespace in Makefile (Don Estabrook)
272  9. Manual page fixes (Alan R. S. Bueno)
273  8. Remove history in loops bug from the documentation (Holger Weiss)
274  7. Add autorehash (Holger Weiss)
275  6. Add history.at (Ted Anderson)
276  5. Better NLSPATH handling (Norm Jacobs)
277  4. Fix hostname building from utmp (Cyrus Rahman)
278  3. Handle pending signals before flush so that the the history file does
279     not get truncated.  (Ted Anderson)
280  2. Fix AsciiOnly setting that broke 8 bit input. (Juergen Keil)
281  1. remember to closedir in mailchk (from Werner Fink, reported by
282     David Binderman)
283
284 21. V6.17.00 - 20090710
285 20. Fix dataroot autoconf issue.
286 19. Fix directory stuff for unit tests.
287 18. Fix small bug in history in loops.
288 17. Provide newer config.{guess,sub}
289 16. Fix gcc 4 warnings.
290 15. Fix memory trashing bug introduced in 10.
291 14. V6.16.01 - 20090624
292 13. add missing sigemptyset in goodbye()
293 12. add rlimit swapsize from FreeBSD.
294 11. restore behavior where a[n-] never prints an error.
295 10. always save the whole command, not just the first 80 chars of it.
296  9. fix short2str/short2qstr length adjustment in wide chars
297     (Vitezslav Crhonek)
298  8. set histfile=/tmp/history.temp; set savehist=(100 merge);
299     alias precmd history -S. After that justpr is not restored and commands
300     don't execute. (Andriy Gapon)
301  7. Fix "as" $ modifier from corrupting memory.
302     set t=demfonsftraftionf; echo $t:as/f//
303  6. Make $% work with environment variable (Ron Johnston)
304  5. Dragonfly script support (Matthias Schmidt, m65)
305  4. Add autoexpand=onlyhistory (Don Estabrook, m66)
306  3. Add history in loops (Laurence Darby, m48)
307  2. Add missing colorls "rs" variable (Shlomi Fish, m70)
308  1. Fix pts detection issue (Ruslan Ermilov)
309
310 33. V6.16.00 - 20080930
311 32. longjmp clobbered variable fixes.
312 31. __GNX__ addition
313 30. Windows fork fixes
314 28. V6.15.02 - 20080830
315 27. Fix an eval free'ing botch (Per Hedeland)
316 26. /bin/echo "`" coredumped because stderror() calls longjmp corrupting
317     the stack (Mark Davies). We should vet the code for all stderror()
318     calls that cleanup local stack variables.
319 25. foo > ${undef} caused coredumps because of vfork() child corrupting
320     the state of the parent stack. 
321 24. $x[A-B] did not complain for A out of range. (Cai Xianchao)
322 23. rename setp -> tcsh_setp to avoid conflict with mach (Javier Vasquez)
323 22. Fix degree handling by defining __XPG4_CHAR_CLASS__ for solaris
324     (Mike Sullivan)
325 21. Change 'od' to 'od -c' in tests so that they work on big endian machines.
326     (Martin Kraemer)
327 20. Add environment variable COMMAND_LINE to be available in completions
328     (Marcin Konarski)
329 19. V6.15.01 - 20070928
330 18. Evaluate expressions in the proper order (Li Zefan), controlled by
331     compat_expr.
332 17. Don't need to flush() if we are silent. Prevents recursive error issue.
333     (joshua stein)
334 16. Don't execute the jobcmd if the output is not a tty (Charles Ross)
335 15. Quote the history in the examples (Johann 'Myrkraverk' Oskarsson)
336 14. Mismatch clarification patch (Per Hedeland)
337 13. Fix 'repeat n cmd &' abort() (Mike Sullivan)
338 12. Fix octal parsing (Li Zefan)
339 11. Fix pty detection for autologout setting (Kris Kennaway, Giorgos Keramidas)
340 10. kill `foo` got stuck because sigchld was disabled too soon (Mark Peek)
341  9. Avoid null pointer dereference in proc cwd (Kurt Miller)
342  8. eval "foreach a b c" exits (Anthony Menasse)
343  7. Quoting was broken in substitutions (Joe Wells)
344  6. QNX patches via pkgsrc
345  5. cd - twice from a directory that contained a glob pattern,
346     expands the glob twice (Mark Santcroos)
347  4. MidnightBsd support (Lucas Holt)
348  3. Fix history substitution core-dump with no history entries
349  2. Merge two character tables that are the same (Martin Kraemer)
350  1. On ancient 7 bit locales, punctuation characters are used to
351     denote special characters such as umlaut, adiaresis, etc.
352     These characters return true for isalpha/isalnum. Ignore them
353     because they break parsing (Martin Kraemer)
354
355 74. V6.15.00 - 20070303
356 73. fix extension eating windows code (christos)
357 72. fix loop in %R history expansion (christos)
358 71. sched +X source file disables interrupts (Mike Sullivan)
359 70. One off copying macro buffers (Jean-Luc Leger)
360 69. Avoid infinite loops in :ga modifiers when the LHS is a substring of the
361     RHS.
362 68. Automatically disable WIDE_STRINGS with --disable-nls (Miloslav Trmac)
363 67. V6.14.07 - 20060825
364 66. rename set to setv to avoid clashes (christos)
365 65. Eliminate sighold/sigrelse (christos)
366 64. Compilation cleanups. (Martin Kraemer)
367 63. Don't rebuild needlessly when generated files are unchanged
368     (Martin Kraemer)
369 62. Fix confusion between Char and eChar (Martin Kraemer)
370 61. V6.14.06 - 20060824
371 60. set PROGRAM_ENVIRONMENT for OSD_POSIX (Martin Kraemer)
372 59. EBCDIC patch (Martin Kraemer)
373 58. Remove globbing support in history rearches (Ryan Barrett)
374 57. Highlighting patch (Ryan Barrett)
375 56. Mark-Cursor exchange emacs editing fix (Martin Kraemer)
376 55. V6.14.05 - 20060304
377 54. don't limit termcap strings to 1K (Alan Ferrency)
378 53. protect against null path.
379 52. Be more conservative in wide_read PR#29
380 51. remove HAVE_STRCOLL; not needed anymore (Miloslav Trmac)
381 50. remove imake support and make nls configurable by configure
382     (Miloslav Trmac)
383 49. V6.14.04 - 20060214
384 48. Fixes build failure with !SHORT_STRINGS (Miloslav Trmac)
385 47. Fixes constness warnings with !SHORT_STRINGS: short2str is "strip()",
386     which modifies its argument.  Rather than verify this is safe in all
387     callers, I have added caching_strip() to mirror the behavior of other
388     modes. (Miloslav Trmac)
389 46. Fixes some constness warnings with SHORT_STRINGS;  this is orthogonal
390     to both build errors with SHORT_STRINGS in 6.14.03, and
391     short_strings.patch. (Miloslav Trmac)
392 45. config-catalogs.patch: Autodetect catalog support (#14). (Miloslav Trmac)
393 44. auth.patch: Handle false positives in getauthid() detection,
394     IIRC on FreeBSD. (Miloslav Trmac)
395 43. crypt.patch: Autodetect whether <crypt.h> is available. (Miloslav Trmac)
396 42. sigint.patch: Block SIGINT while waiting on children.
397     This is necessary, but I'll still have to look on the older
398     releases to find out why it was not necessary before
399     ("before" = 6.13 on Linux). (Miloslav Trmac)
400 41. config-package.patch: Readd package version to configure.in,
401     the testsuite uses it.
402     (TODO: a better integration with package.h) (Miloslav Trmac)
403 40. item_len.patch: Truncate item.len when truncating the string,
404     just to be sure. (Miloslav Trmac)
405 39. va_list.patch: Add missing va_end(). (Miloslav Trmac)
406 38. Use va_copy in xvasprintf(); emulate va_copy as suggested in
407     Autoconf manual if it is not available. (Miloslav Trmac)
408 37. declarations.patch: Replace some #ifdef nests by autodetecting
409     whether the guarded declaration is necessary.
410     I'm only guessing this is the intent of the #ifdefs, though.
411     Declare environ unconditionally, it is a bit hard to detect
412     and the declaration is correct for Linux, anyway. (Miloslav Trmac)
413 36. warning.patch: Fix a const warning.
414 35. More color-ls variables (Jean-Luc Leger)
415 34. V6.14.03 - 20060212
416 33. Signal related changes (Miloslav Trmac)
417 32. Misc cast cleanups and code clarification (Miloslav Trmac)
418 31. Use dynamically allocated buffers everywhere (Miloslav Trmac)
419 30. Fix reading of invalid byte sequences (Miloslav Trmac)
420 29. read should only increment count when it succeeds (Miloslav Trmac)
421 28. testsuiteadditions (Miloslav Trmac)
422 27. -n fixes (Miloslav Trmac)
423 26. signness warnings (Miloslav Trmac)
424 25. Prevent infinite recursion in catclose (Gerhard Niklasch)
425 24. Add Dragonfly (Joerg Sonnenberger)
426 23. Check for wcwidth returning a negative number (TOMITA Yoshinori)
427 22. recognize "li" and "co" in echotc (Martin Kraemer) [PR/7]
428 21. Don't use T_Cols for wrapping purposes; use TermH consistently
429     (Martin Kraemer) [PR/8]
430 20. Don't display duplicate utmp records (Miloslav Trmac) [PR/17]
431 19. Clarify hashing and -f sections of man page (Volker Quetschke) [PR/20]
432 18. Dave Yearke: configure did not recognize solaris 10 [PR/18]
433 17. CYGWIN: Don't lowercase commands and allow foo.exe on command line.
434     (Corinna Vinschen) [PR/19]
435 16. CYGWIN: cd /foo && cd .. ends up erroneously in // for systems that
436     HAVE_SLASHSLASH [PR/21]
437 15. %j was broken (Peter Kruse)
438 14. Extend // handling in pathnames from being apollo specific to also
439     cygwin (Corinna Vinschen)
440 13. Fix uppercase/lowercase transformations (Jean-Luc Leger)
441 12. Fix symlink expansion (revert from 6.10.00) (Jean-Luc Leger and Christos)
442 11. Fix literal sequence in prompt (Miloslav Trmac)
443 10. V6.14.02 - 20050412
444  9. Prototype fixes (Miloslav Trmac and Jean-Luc Leger)
445  8. V6.14.01 - 20050411
446  7. Make =- refer to $owd (H.Merijn Brand)
447  6. Use prototypes (almost) everywhere (Miloslav Trmac) (issue #5)
448  5. Fix doc path in Cygwin installation (Corinna Vinschen)
449  4. Fix column size calculation (Martin Kraemer)
450  3. Implement newline-and-hold and newline-and-down-history (Per Hedeland)
451  2. Messages fixes for the ja (Japanese) locale (NAKAMURA Takeshi) (issue #4)
452  1. Enable charset conversion in nls (Miloslav Trmac) (issue #3)
453
454 76. V6.14.00 - 20050325
455 75. Additional messages for the ja (Japanese) locale (NAKAMURA Takeshi)
456 74. V6.13.10 - 20050321
457 73. Implement --help (Tom Warzeka)
458 72. Clamp solaris autologout time
459 71. Add support for "limit heapsize" (Martin Kraemer)
460 70. Improved autoconf for utmp/utmpx (Miloslav Trmac)
461 69. V6.13.09 - 20050303
462 68. Autoconf additions (Miloslav Trmac and Jean-Luc Leger)
463 67. Fix erroneous sign extension when printing huge numbers (Martin Kraemer)
464 66. Handle delay in termcap entries (Martin Kraemer)
465 65. EBCDIC and BS2000 fixes (Martin Kraemer)
466 64. Avoid the SCCS percent-S-percent sequence differently (Kimmo Suominen)
467 63. Mark position update fixes (Martin Kraemer)
468 62. Define BSDLIMIT and BSDTIMES for Cygwin (Corinna Vinschen)
469 61. Fix NLSFrom prototype (Martin Kraemer)
470 60. V6.13.08 - 20050303
471 59. Add test for socklen_t in autoconf
472 58. Fix problems with NLSFrom prototype
473 57. Deal with AIX's utmpx lossage
474 56. V6.13.07 - 20050118
475 55. constifications, XXX: duplicate prototype on setpgrp().
476 54. iconv fixes (Miloslav Trmac)
477 53. literal code cleanups (Miloslav Trmac)
478 52. move intptr_t definition to sh.h and include both stdint.h and inttypes.h
479 51. Fix dup2() issues, and introduce FSAFE as the highest file descriptor
480     to be left untouched. This is to avoid closing hesiod/nis etc file
481     descriptors behind their backs. I need to really fix file descriptor
482     handling one day.
483 50. forward<->reverse char conversion verification (Miloslav Trmac)
484 49. japanese locale additions (Yoshiyuki Sakakibara)
485 48. wide character/utf 8 cleanups (Michael Schroeder)
486 47. V6.13.06 - 20050105
487 46. autoconf cleanup (Miloslav Trmac)
488 45. Fix literal refresh code (Michael Schroeder)
489 44. Fix history printing bug with WIDE_STRINGS
490 43. V6.13.05 - 20041121
491 42. deal with not having intptr_t
492 41. get rid of bool.
493 40. Protect HAVE_ICONV with NLS_CATALOGS
494 39. Deal with wchar_t being unsigned.
495 38. If we HAVEUTMPX redefine some utmp functions in terms of utmpx ones.
496 37. V6.13.04 - 20041120
497 36. Fix display problems with two-column characters when using WIDE_STRINGS.
498     (Miloslav Trmac)
499 35. Change charset declarations for some of the translations.
500     (Miloslav Trmac)
501 34. Set O_LARGEFILE properly (Miloslav Trmac)
502 33. Use libc functions to access utmp data (Miloslav Trmac)
503 32. t_pmatch() was not really case-insensitive when cs == 8
504     (Miloslav Trmac)
505 31. Fix escaping of "control" bytes 0x80..0x9F when they are actually
506     parts of UTF-8 character representation.  (Miloslav Trmac)
507 30. V6.13.03 - 20041120
508 29. More close_on_exec fixes (Miloslav Trmac)
509 28. SUSE dspmbyte fixes (via Harald)
510 27. Newline handling in command substitution controlled by csubstnonl
511     (Miloslav Trmac)
512 26. Fix UNC prompt expansion (WIN32) (Yasuhiro Matsumoto)
513 25. Fix incorrect xprintf() usage (Miloslav Trmac)
514 24. Additional architectures support for $HOSTTYPE and $MACHTYPE
515     (Miloslav Trmac)
516 23. Use nl_langinfo(CODESET) to determine $dspmbyte (Miloslav Trmac)
517 22. Complete arguments that contant a # (Steven Grady)
518 21. Set close-on-exec in subshells
519 20. Compilation fixes (Miloslav Trmac)
520 19. V6.13.02 - 20040804
521 18. de-register, de-extern, de-shadow, and const poison.
522 17. WIDE_STRINGS support (Miloslav Trmac)
523 16. warning cleanups (Miloslav Trmac)
524 15. nlsclose() arg passing, exp2 is now a gcc builtin (Mark Peek)
525 14. iconv malloc portability fix.
526 13. make automatic dspmbyte determination case insensitive
527 12. V6.13.01 - 20040724
528 11. bug fix in automatic dspmbyte setting (Miloslav Trmac)
529 10. iconv patches (Miloslav Trmac)
530  9. cygwin signal fixes; only init 32 signals, don't set bit flag on error;
531     breaks SIGHUP. (Corinna Vinschen)
532  8. Make sure terminal size change takes effect immediately.
533  7. Obey $printexitvalue for builtins.
534  6. FreeBSD PR/66420: Allow history parsing to be special so that it
535     can handle inline # characters (Oliver Eikemeier)
536  5. new termname builtin from (Andrew Stevenson)
537  4. if ($var =~ *[^0-9]*) echo not numeric, fix (Andrew Stevenson)
538  3. completion fix to avoid dup hosts from ssh_known_hosts
539     (Eric D. Hendrickson)
540  2. vc++ 7.1 compilation fix (Steve Schockley)
541  1. UTF-8 handling for both single and double width characters, but
542     no combining character support. (Michael Schroeder)
543
544 36. V6.13.00 - 20040519
545 35. V6.12.03 - 20040322
546 34. turn on kanji and dspmbyte by default; add check for utf8 locales,
547     and turn parsing of that automatically based on $LANG.
548 33. Fix compilation issue under Windows/NT and charset incorrect patch
549     (Yoshiyuki Sakakibara)
550 32. completion additions (Tom Warzeka)
551 31. compilation fix (Martin Kraemer)
552 30. V6.12.02 - 20040221
553 29. Glob completion listing addition (Tom Warzeka)
554 28. BS2000 bs2cmd builtin. (Martin Kraemer)
555 27. Fix interrupt resetting code when /etc startup scripts have syntax errors
556     (Mark A. Grondona)
557 26. Clarification of kill-ring commands (Per Hedeland)
558 25. Debian completion additions (Martin Godisch)
559 24. Japanese character set fixes (Juehiro-san) from debian
560 23. NLS charset fixes; disabled since they only work with gnu gencat
561     (Martin Godisch)
562 22. Fix HPUX >= 11 resource (Jack Cummings)
563 21. Handle breaksw that jumps out of loops.
564 20. Revert #16. It causes worse problems.
565 19. Avoid using execl() because the last NULL does not always promoted to
566     a pointer because the function is variadic (Harti Brandt)
567 18. revert ignoreeof to the 6.11.00 behavior and document it (Martin Godisch)
568 17. do a case insensitive comparison for the multibyte vars (Martin Godisch)
569 16. don't sigsuspend() for an already exited job
570 15. glob all arguments in source (Martin Godisch)
571 14. various debian fixes (Martin Godisch)
572 13. setenv syntax check revert (Satoshi I. Nozawa)
573 12. EAGAIN typo (dan harkless)
574 11. filec compilation issue on hpux (beebe)
575 10. win32 compilation fixes for O_LARGEFILE (amol)
576  9. Don't go into an infinite loop when tcgetpgrp() returns an error.
577  8. Cygwin fixes (Corinna Vinschen)
578  7. NLS catclose() bug avoidance (KAJIMOTO Masato)
579  6. V6.12.01 - 20030208
580  5. Misc NT cleanup. No more GPL code (amol)
581  4. use strtol() to detect errors in builtin kill (Peter Jeremy)
582  3. Recognize linux systems on mips* (Maciej W. Rozycki)
583  2. Enable complete=igncase on unix (Stephen Krauth)
584  1. Eliminate maxitems (Todd Miller)
585
586 58. V6.12.00 - 20020732
587 57. misc cleanups.
588 56. V6.11.05 - 20020712
589 55. We should have socklen_t in the INET6 case, but we leave int otherwise.
590 54. Fixed for Darwin/Rhapsody (Mark Peek)
591 53. provide new config.sub and config.guess from ftp://ftp.gnu.org/gnu/config/
592     (Nelson Beebe)
593 52. V6.11.04 - 20020709
594 51. Dissallow setting of environment variables that do not contain
595     alphanumeric names (Ton Voon)
596 50. Don't expand path components that don't resolve to path names (Jonathan
597     Chen)
598 49. Make $ignoreeof agree with the man page (Matias Moreno Meringer)
599 48. Fix argument passing in tc.prompt.c expdollar (Nelson Beebe)
600 47. Completion fixes from FreeBSD (Mark Peek)
601 46. FreeBSD's sbsize limit (Mark Peek)
602 45. Fix repeat 3 repeat 2 echo foo
603 44. Fix I/O redirection in scripts (Ian D Allen)
604 43. Fix ` \\\n ` evaluation (Jean-Luc Leger)
605 42. add --version (Nelson Beebe)
606 41. portability fixes for sed (Nelson Beebe)
607 40. undef sv_handler for AIX's benefit. (Nelson Beebe)
608 39. Add a test for ss_family that disables IPV6 (linux/ppc, osf/1 have
609     problems) (Nelson Beebe)
610 38. Disable ipv6 for Apple (Nelson Beebe)
611 37. Fix darwin configure entry (Nelson Beebe)
612 36. V6.11.03 - 20020701
613 35. Add Ian D. Allen's bug list.
614 34. If we are invoked as csh, default to bsd echo (Matej Vela)
615 33. Don't close file descriptors too early because setuid scripts fail.
616     (Jill Pryse-Davies)
617 32. Completion updates (Tom Warzeka)
618 31. Fix compilation issue on SunOS4 with _POSIX_VDISABLE (Tom Warzeka)
619 30. ukrainian update (Olexander Kunytsa)
620 29. DSPMBYTE=utf8 patch (Jean-Luc Leger)
621 28. fix ipv4 only compilation, remove extra sigsetmask() call (Takayuki Nakao)
622 27. window change can cause free to be re-entered causing abort (Mark Peek)
623 26. vp->vec vetting, suggested by Ian Dall.
624 25. V6.11.02 - 20020516
625 24. Fix prompt bugs in $var and %c0n (TAKAI Kousuke)
626 23. Add Cray SV2 config (Rafal Maszkowski)
627 22. Add pdf manual page (Warren Ferguson)
628 21. Fix REMOTEHOST lossage in with AF_LOCAL sockets (Tom Mander)
629 20. Fix win32 break because of TIOCSTI (Amol)
630 19. Fix TIOCSTI for hpux 11  (Igor Schein)
631 18. Avoid collapsing paths that refer to non-existent components
632     (Martin Kraemer)
633 17. Make -shell invocations always treated as a login shell.
634 16. V6.11.01 - 20020308
635 15. Fixes to polish nls locale (Pawe� Niewiadomski)
636 14. russian locale fixes (Alexey Dokuchaev)
637 13. document door support (Shaen)
638 12. tcsh euc handling extensions (Alexey Zelkin)
639 11. Make sure that jobcmd does not clobber the current job (Rob McMahon)
640 10. Make sure that the output of verbose and echo do not end up in the
641     command output (Victor I. Pasko)
642  9. Add %j in prompt [needs more work; is not right the first time
643     after proclist changes] (Hr. Peter Kruse)
644  8. `` commands with embedded newlines would ignore commands following
645     the new line (Victor I. Pasko)
646  7. Re-initialize nls if NLSPATH is changed (Naoki Wakamatsu)
647  6. Fix 64 bit compilation with linux and resource limits.
648  5. Avoid double globbing when ls-F needs to fork (Joe Townsend)
649  4. put back csh filec compatible support.
650  3. add support for quads in xprintf in the presence of gcc.
651  2. unlimit should set rlim.rlim_max to rlim.rlim_cur if max < cur.
652  1. Make ~user work again when the home directory is '/'.
653
654 40. V6.11.00 - 20010902
655 39. Completion fixes (Tom Warzeka)
656 38. make c_insert not static so that it can be used from win32 (amol)
657 37. Fix rmstar not to corrupt memory when we say no. (Mark Peek)
658 36. V6.10.02 - 20010806
659 35. polish nls locale (Pawe� Niewiadomski))
660 34. Fix a tcsetattr race running background jobs as the last line on an xterm
661     window (Andrew Brown)
662 33. jobcmd alias (Greg Parker)
663 32. hpux11 support (Joshua Weage)
664 31. Fix SHORT_STRINGS compilation (Daniel Trinkle)
665 30. Add kill -s (Mark Peek)
666 29. Don't recognize all mips as dec (Bjorn Knutsson)
667 28. Fix GLOB_QUOTE problem (noted by Per) I introduced in 6.10.01.
668 27. Port to concurrent's powermaxos (Matt Majka)
669 26. New builtin srcfile (Amol)
670 25. Fix bindkey "\\" cmd (reported by Ismail H. Tuncer)
671 24. %0Xc was broken in the prompt if the user's home directory was '/'.
672     (reported by Edward Glowacki)
673 23. V6.10.01 - 20010426
674 22. LARGEFILE support on Linux.
675 21. Add big5 multibyte support (Yen-Ming Lee)
676 20. Check the return value of setpriority (Dima Dorfman)
677 19. Avoid constructing paths with // on DomainOS (Nickolai Zeldovich)
678 18. Russian translation (Ilmar S. Habibulin)
679 17. Fix hostdefs for alpha support in FreeBSD (Andrey A. Chernov)
680 16. Add door support in colorls (Shaen)
681 15. Add BSD_STYLE_COLORLS for FreeBSD (Anand)
682 14. MAXHOSTNAMELEN needs to be 256 (Kris Kennaway)
683 13. Document stty -tabs problems on compaq (Nelson H. F. Beebe)
684 12. Fix broken comment, and new versions of config.guess and config.sub
685     (H.Merijn Brand)
686 11. fix redrawing in the recognize case (Andrew Brown)
687 10. don't call qsort with 0 items. (Luke Mewburn)
688  9. fix echo;echo;echo; not outputing anything (Andrey A. Chernov)
689  8. Fix shell word parsing in dabbrev-expand (Per Hedeland)
690  7. hpux fixes (Chienting Lin)
691  6. Implement kill ring (Per Hedeland)
692  5. Avoid core-dumping when a very long $HOME gets passed in (Kris Kennaway)
693  4. Add rlimit_vmem for linux based on rlimit_as (N KomaZaki)
694  3. back out symlink=expand path check.
695  2. Add Estonian translation (Toomas Soome)
696  1. Accept empty $savedirs to mean infinity.
697
698 57. V6.10.00 - 20001119
699 56. Completion fixes (Tom Warzeka)
700 55. add missing linux kanji define (Tsuyoshi Kawabe)
701 54. More WINNT_NATIVE fixes (amol)
702 53. Fix compile error on winnt (Yoshiyuki Sakakibara)
703 52. nonstopux configure and makefile fixes (Tom Bates)
704 51. V6.09.04 - 20001111
705 50. Order of initialization for multibyte display was wrong 
706     (HyunChul Kim)
707 49. Follow the guideline for linux for japanese locale:
708     http://www.linux.or.jp/JF/JFdocs/Japanese-Locale-Policy.txt
709     (Tomohiro KUBOTA)
710 48. Ukrainian nls map (Olexander Kunytsa)
711 47. exit immeditiately if we get an error while we are setting up
712     (Michael Shalayeff)
713 46. (unset path; unsetenv PATH; rehash) -> crash (Kent Vander Velden)
714 45. change winnt to winnt_native (Randolph Fritz)
715 44. Support home/end in the editor (Andrey A. Chernov)
716 43. Typo s/gycwin/cygwin/ in tc.os.h (Andreas Schott)
717 42. Alpha ev6 addition (Karen R. McArthur)
718 41. DSPMBYTE patch from (Issei Suzuki)
719 40. Security fix for here-doc tmp files (proton@ENERGYMECH.NET)
720 39. Fix resource limit rounding *again* (Johannes Gross)
721 38. Fix $ expansion in prompt (Takashi Sumiyoshi)
722 37. V6.09.03 - 20000715
723 36. cygwin port fixes (Arihiro Yoshida)
724 35. Add a new "catalog" variable that specifies which NLS catalog
725     to be used (Issei Suzuki)
726 34. cleanup and addition of page up/down (amol)
727 33. fix vfork compile problem.
728 32. use inet_addr instead of inet_aton for portability.
729 31. V6.09.02 - 20000704
730 30. lots more completions (George Cox)
731 29. change FILSIZ to BUFSIZE [now that BUFSIZE >> MAXPATHLEN] and
732     avoid a potential buffer overflow in sh.dir.c (Volker Schmidt)
733 28. _MINIX_VMD port (Martijn van Buul)
734 27. inet6 handling for remotehost and configure (Hajimu UMEMOTO)
735 26. aix-4 does not need gethostname (Darren Reed)
736 25. IBM OS/390 Unix Systems Services support (Peter Prymmer)
737 24. Fix prompt formatting (Andrey A. Chernov)
738 23. Use HostType from Imakefile correctly (Kjetil Torgrim Homme)
739 22. Handle long and expanded history lines better (Boleslaw Ciesielski)
740 21. With symlinks=expand expand valid paths only (Martin Kraemer)
741 20. Make one-byte charsets work with KANJI (Andrey A. Chernov)
742 19. NT-specific executable detection moved to NT code (amol)
743 18. New "complete module" (Dan Nicolaescu)
744 17. Correctly display scaling string in limit error messages (Nathan Ahlstrom)
745 16. Don't display "unset watch" message when not appropriate (kim)
746 15. V6.09.01 - 20000114
747 14. Circumvent IRIX4D ESTALE bug by exiting.
748 13. IRIS4D de-linting.
749 12. Finnish nls catalogs (Jukka A. Ukkonen)
750 11. Even more multibyte fixes (Taga Nayuta)
751 10. Patches to statically link tcsh under solaris-2.6 (John Hawkinson)
752  9. Manual page typos (R. Bernstein)
753  8. HP/UX-11 (9000/800) HP/UX-10.20 (9000/820) (Haflidi Sigtryggur Magnusson)
754  7. Color-ls fixes (Luis Francisco Gonzalez)
755  6. Don't re-use time0 to compare to stat's st_mtime, cause it could be
756     the value returned from times(2) which is the ticks since system
757     startup (Frank van der Linden)
758  5. Time percentage wrap fix (Simon Burge)
759  4. EUCKR support (HyunChul Kim)
760  3. Grammar and typo fixes for tcsh.man (Steve Kelem)
761  2. More multibyte fixes (Rodney Ruddock)
762  1. Change 6.08 -> 6.09 where I missed it; update for utlrix 4.5 (Simon Burge)
763
764 65. V6.09.00 - 19990816
765 64. Add csh emacs mode (Dan Harkless)
766 63. Make sure the the glob buffer matches the word buffer size (Brian Biswas)
767 62. Fix periodic to work without tperiod set (Kenny McCormack)
768 61. V6.08.07 - 19990813
769 60. Fix e_dabbrev_expand (Bjorn Knutsson)
770 59. Make \builtin work again (by calling the command not the builtin)
771 58. Add NLS_BUGS for OS's that keep file descriptors open for NLS (Ian Dowse)
772 57. Make NONLSREBIND work after tcsh starts up.
773 56. Fix AIX stupid exit bug. (Dan Harkless)
774 55. More irix fixes (Kaveh)
775 54. V6.08.06 - 19990701
776 53. module command completion (Dan Nicolaescu)
777 52. Man command completion enhancement (Tom)
778 51. Fixes for irix configuration (Kaveh)
779 50. Support \a and \e in echo command. From (Keith Thompson)
780 49. Alpha configure nit from Kaveh
781 48. V6.08.05 - 19990511
782 47. In some system, when a builtin fails immediately after we start
783     tcsh and before we print any messages, NLS messages fail (some
784     descriptor might be closed) [FreeBSD, HP/UX?]. So we force reading
785     the NLS catalogs in errinit() (Yoshiyuki Sakakibara)
786 46. typos in ja/set1 and ja/set29 (Yoshiyuki Sakakibara)
787 45. "dspmbyte autoset trap" support to HP-UX 10.20. (Yoshiyuki Sakakibara)
788 44. misnumbered NLS message in tw.help.c (Yoshiyuki Sakakibara)
789 43. colorcat variable for NLS color messages (Yoshiyuki Sakakibara)
790 42. autoconf fixes from Kaveh (and if it broke, me)
791 41. SGI irix fixes from Glenn Coombs.
792 40. Don't spin writing the history file when quota is exceeded (Rob McMahon)
793 39. V6.08.04 - 19990419
794 38. complete additions (John Gotts)
795 37. Port to amiga with geek gadgets (Arto Huusko)
796 36. Ignore case in setenv for windows (amol)
797 35. Bug fixes for NT unc stuff (amol)
798 34. Hash spell check (amol)
799 33. V6.08.03 - 19990211
800 32. Helpcommand documentation (Vladimir Alexiev)
801 31. small Y2K fix [%y in prompt would be formatted as 10 not 00 at year 2000],
802     and new Itoa() code (Chris Torek)
803 30. OpenBSD m68k patches (Paul DuBois)
804 29. Avoid redefinition of getpeername on Solaris-2.7
805 28. fix problems with savedups=erase, savehist=merge (Randy Gobbel)
806 27. Don't set $shell to csh, if we were invoked as tcsh (Tomas Persson)
807 26. added $_
808 25. added postcmd
809 24. V6.08.02 - 19981124
810 23. document continue and continue_args
811 22. wrong test in slowexec made NT optimization a noop (Amol)
812 21. Rhapsody fixes + separate CFLAGS/CPPFLAGS (Wilfredo Sanchez)
813 20. literals in both prompt at rprompt did not work properly (Taga Nayuta)
814 19. multibyte deletion fixes (Yoshiyuki.Sakakibara)
815 18. clean up key binding stuff for NT by moving the nt dependent code to
816     the NT source (amol)
817 17. dspmbyte fixes for AIX, typos in man page and nls (Yoshiyuki Sakakibara)
818 16. Convex fixes (Ron Echeverri)
819 15. V6.08.01 - 19981025
820 14. SX4 port; this adds many casts for machines where ptrdiff_t is 64 bits.
821     (Andreas Schott)
822 13. U/Win port; does not work properly with U/Win 1.6, wait for the next
823     version (Chris Jones)
824 12. Sgi does not need gethostname prototype (John Bogan)
825 11. Logic in sh.dir.c was wrong for NT (Amol)
826 10. HP_CXD_SPP stat64 fixes (Scott Garee)
827  9. Documentation spelling fixes (Keith Thompson)
828  8. Documentation fix for savedirs (Amol)
829  7. Siemens OSD_POSIX fixes (Martin Kraemer)
830  6. include <errno.h> for all the BSD's (Trevor Johnson)
831  5. Multibyte display fixes for gnu ls (Taga Nayuta)
832  4. Configure/Makefile hesiod and bindir fixes (Dan Winship)
833  3. Use winnt not win32 in tc.os.h (Amol)
834  2. Cygwin32 port (Raj Menon)
835  1. Ported Fixes (Tom)
836
837 95. V6.08.00 - 19981002
838 94. where builtin nt fix (Amol)
839 93. V6.07.13 - 19980926
840 96. NT multibyte fixes (Amol)
841 95. NeXT needs getcwd.
842 94. fix new bug introduced by strncpy'fication in sh.dir.c (Taga Nayuta)
843 93. V6.07.12 - 19980918
844 92. add cray in configure script (Tom)
845 91. nls fixes
846 90. Avoid buffer overflows in directory code (kim)
847 89. Add multibyte character display support (Yoshiyuki Sakakibara)
848 88. Make tcsh use getcwd instead of getwd and supply a getcwd.
849 87. Fix remotehost again (kim)
850 86. V6.07.11 - 19980913
851 85. Leave remotehost ip addresses alone (don't try to resolve them) (Kim)
852 84. Read vs. force_read fixes (Amol)
853 83. Make colorls if color is set before the first LS_COLORS setenv
854     (Taga Nayuta)
855 82. Use _PATH_DEFPATH on BSD4_4 systems. (Jim Bernard)
856 81. Cursor bounds checks (Michael Schroeder)
857 80. Syntax error nits (Michael Schroeder)
858 79. configure fixes (Michael Schroeder)
859 78. V6.07.10 - 19980904
860 77. Off by one error in NO_ERRORS...
861 76. Japanese NLS messages (Yoshiyuki Sakakibara)
862 75. Add ENXIO and EBADF in the test for write failures for Irix Zombies
863     (Ralf W. Grosse-Kunstleve)
864 74. Missed a test for NOSTRCOLL in glob.c (Michael Liepelt)
865 73. Another ABSOLUTEP change (Amol)
866 72. Italian NLS messages (Massimo Bertozzi)
867 71. WIN32 fixes for ntslowexec and color_ls literal printing in prompt (Amol)
868 70. a few missed WIN32 merges (Amol)
869 69. defined YPBUGS for sgi (Kaveh)
870 68. V6.07.09 - 19980707
871 67. Separate the nt builtins (Amol)
872 66. completion fixes (Tom)
873 65. color ls fixes (Taga Nayuta)
874 64. V6.07.08 - 19980629
875 63. add config.h.in (Kaveh)
876 62. win32 updates (Amol)
877 61. warning and portability cleanups on the new changes (Kaveh)
878 60. V6.07.07 - 19980628
879 59. Fast execute by-pass for win32 (Amol Deshpande)
880 58. Clean up const usage a bit, and fix gcc 2.8.1 warnings.
881 57. Use @bindir@ for DESTBIN in Makefile.in (Edgar Hoch)
882 56. Avoid overflow in time builtin computation (Nobue Adachi)
883 55. Color ls additions (Taga Nayuta)
884 54. unsigned char vs. char warning fixes (Kaveh)
885 53. Solaris 64 bit fixes (fix directory offset bug) (Thomas-Martin Kruel)
886 52. More win32 patches (Amol)
887 51. autoconf lossage from (Kaveh)
888 50. V6.07.06 - 04/08/98
889 49. Collation fix for globbing (Andrey A. Chernov)
890 48. We might have NLS_CATALOGS and not LC_MESSAGES (Andrey A. Chernov)
891 47. 4.4BSD header fixes (Andrey A. Chernov)
892 46. Signed char prompt fixes (Andrey A. Chernov)
893 45. Pattern match fix for directory searches (Mike Patnode)
894 44. Pentium DGUX fixes (Miko Nahum)
895 43. Spanish nls message catalogs (Luis Francisco Gonzalez)
896 42. Fix trailing whitespace parsing in HASHBANG code (Martin Kraemer)
897 41. Remove stray debuggin message from unmatched substitutions.
898     (from Amol Deshpande)
899 40. Fix reversed arguments in Usagae message. (from Amol Deshpande)
900 39. Fix bug introduced at tcsh-7.06.03 [expdollar] that affected %.n prompt
901     format.
902 38. Fix typos introduced in last batch of changes.
903 37. Fix interrupted script using onintr, exiting parent shell problem.
904 36. Cleanup prototypes.
905 35. V6.07.05 - 10/28/97
906 34. Integrate Amol Deshpande's WINNT fixes to the tcsh source. Note that
907     this is not complete yet; we are missing the NT glue code and the message
908     catalogs.
909 33. Fix ^T at the first character in the line  (Chuck Silvers)
910 32. Eliminate xsprintf and xvsprintf
911 31. Qmail patch from (Matthew Zahorik)
912 30. Added missing linux signals (Vadim Vygonets)
913 29. fixed problem where  complete complete  'p/*/t:*.txt/' would not honor
914     the pattern.
915 28. Port to an EBCDIC machine: BS2000 by Siemens Nixdorf that has an
916     IBM/390 compatible processor (Martin.Kraemer)
917 27. Detect when we have errors writing to stdout (Vadim Vygonets)
918 26. Ignore quotes in the comparisons for builtins, so that \builtin works
919     (Amol Deshpande).
920 25. HPUX, portability fixes; make sure that we have the right config file
921     (Jonathan Kamens)
922 24. Don't do lookups for x displays and figure out ttys properly 
923     (Leonard N. Zubkoff)
924 23. make print_by_columns print in a single column when the output is not a tty
925 22. use rlim_t for Solaris2 (Casper Dik)
926 21. V6.07.04 - 05/04/97
927 20. set -f -l patch (Michael Veksler)
928 19. SGI patches (Tomasz J. Cholewo). Also fix completion code to take into
929     account aliases that start with a period.
930 18. SCO patches (Boyd Lynn Gerber)
931 17. Fujitsu patches (Toshiaki Nomura)
932 16. autoconf patches (Kaveh Ghazi)
933 15. BSDI patches (Paul Vixie)
934 14. %Q formatting character addition.
935 13. Fix set=#123; echo $i:s/#// (Quoting problem)
936 12. V6.07.03 - 02/23/97
937 11. Understand %$variable in the prompt.
938 10. Quote directory names properly in .cshdirs
939  9. USE_ACCESS and autoconfig patches from (Larry Schwimmer)
940  8. Pyramid att config file (Andrew Lister)
941  7. $rprompt code (Luke Mewburn)
942  6. Kanji patches (Huw Rogers)
943  5. Cray T3E port (Jorn Amundsen)
944  4. Avoid html redirects in tcsh.man2html (from Kimmo)
945  3. HP/UX 10.0 fix for filesize resource limit; don't scale by 512 anymore.
946  2. Workaround for TIOCSTAT for NetBSD from lukem@netbsd.org
947  1. Return exit status from 0..255 not -128...127, as POSIX mandates.
948
949V6.07.02, 10/27/96
950 58. More configure fixes from Kaveh.
951 57. Fix histdup=erase again: Don't renumber events, or access uninitialized
952     storage.
953 56. 6.07.01 - 10/19/96
954 55. Fix histdup=erase, where after some repetitions, we would get negative
955     history events (kim@gw.com)
956 54. NLS fixes and typo in sh.err.c (Martin.Kraemer@deejai.mch.sni.de)
957 53. Output history in raw format in the history file (mveksler@VNET.IBM.COM)
958 52. Fix possible core dump when !:<tab> in autoexpand mode (rbrown@ERA.COM)
959 51. 6.07.00 - 10/11/96
960 50. Avoid stdio.h inclusion problem in SCO (gethost.c).
961 49. A bit of housekeeping in host.defs
962 48. 6.06.04 - 10/05/96
963 47. Fix tellmewhat() code to return true if found.
964 46. Change register foo to register int foo to avoid compiler warnings.
965 45. Fix problem with sticky non editing mode from Casper Dik.
966 44. history lex fix from Martin Kraemer; history events that ended with 0
967     were not properly parsed.
968 43. SNI fixes from Martin Kraemer.
969 42. SGI fixes from Ralf W. Grosse-Kunstleve.
970 41. BSDI2.1 fixes from Paul Vixie.
971 40. 6.06.03 - 09/24/96
972 39. undef TIOCGLTC for HP/UX 10.0 from Michael Shroeder
973 38. Sinix fixes
974 37. 6.06.02 - 06/22/96
975 36. Added implicitcd
976 35. Added configure.in and Makefile.in from Kaveh.
977 34. unset path, unsetenv PATH, ./foo did not work.
978 33. Add VAR_NOGLOB, and use it to avoid globbing directory names when
979     cd'ing into them.
980 32. Fix bug introduced in the new tty parsing code.
981 31. Avoid pushing string back to the parsing string in ${ errors.
982 30. Patches for the manual page from Dave.
983 29. 6.06.01 - 05/24/96
984 28. Use sysconf to get NCARGS if available Robert Daniel Kennedy
985     <kennedy@b0ru01.fnal.gov>
986 27. Grab the program name and use that instead of tcsh in error messages.
987 26. Fix histdup, so that it does not leave gaps in the event sequence.
988 25. HP/UX v10.0 fixes: Don't use bsdtty.h and avoid clobbering memory
989     since SIGRT??? is defined as -1.
990 24. Avoid coredumps when $TERMCAP exceeds 1024 characters
991     Michael Schroeder <Michael.Schroeder@informatik.uni-erlangen.de>
992 23. Fix memory clobbering when SHORT_STRINGS is not defined. 
993     Todd J Derr <infidel+@pitt.edu>
994 22. Only restart stopped editors. Robert Webb <robertw@wormald.com.au>
995 21. Recognize pts sysv ptys when checking to set autologout Bob Myers
996     <bob@intelenet.net> 
997 20. Magic space incomplete modified core dump fix. Chris Metcalf
998     <metcalf@catfish.lcs.mit.edu>, Bradley White <bww@fore.com>
999 19. Linux nls fixes Rik Faith <faith@cs.unc.edu>
1000 18. SGI RS8000, Ported notes. Ralf W. Grosse-Kunstleve
1001     <rwgk@laplace.csb.yale.edu>
1002 17. Greek nls messages. Aggelos P. Varvitsiotis <avarvit@cc.ece.ntua.gr>
1003 16. Imakefile linux and libcrypt fixes. Jonathan Kamens  <jik@cam.ov.com>
1004 15. FreeBSD fixes Jukka Ukkonen <jau@jau.csc.fi>
1005 14. Expand the environment space for path Steve Kelem <steve.kelem@xilinx.com>
1006 13. Don't overwrite the environment randomly Steve Kelem
1007     <steve.kelem@xilinx.com>
1008 12. Don't turn the editor on when we have dumb or unknown terminals. This
1009     breaks emacs when compiled with terminfo Jonathan Kamens  <jik@cam.ov.com>
1010 11. Fix F- parsing in tc.bind.c <bob@intelnet.net> (Bob Meyers)
1011 10. Added -T option in history to force timestamp printing. -h alone does
1012     not print timestamps anymore for compatibility with csh.
1013  9. Typo in tc.bind.c [with -DOBSOLETE] (misplaced parenthesis)
1014  8. Recognize convex models properly.
1015  7. suppress the DING! option using the noding variable.
1016  6. negative nice values did not work.
1017  5. Harris CX/UX 7.x support.
1018  4. ERR_DMMODE was used on the crays but not defined. I changed the error
1019     messages in tc.os.c to use ERR_STRING instead, and fixed a missing error
1020     message in the catalogs. Someone will need to retranslate #30 and #31
1021     in set23.
1022  3. Bug setting listflags... Workaround: set listflags=(A /bin/ls)
1023  2. Typo in Imakefile (# comment instead of c comment)
1024  1. Typo in ma.setp.c (missing parenthesis)
1025
1026
1027V6.06.00, 05/13/95
1028 88. Cleanup off-by-one error ed.defns.c.
1029 87. 6.05.09 - 05/06/95
1030 86. Small memory leak in dosetenv()
1031 85. Make sure that the number of editing functions defined is correct
1032     and abort otherwise.
1033 84. Completion Fixes from Tom
1034 83. Don't add yp stuff in the tilde cache [names that start with + or -]
1035 82. Don't let children catclose() in xexit(), because the parent will lose
1036     access to the nls catalogs. From Michael.
1037 81. 6.05.08 - 04/29/95
1038 80. Update to the newest csh sh.file.c
1039 79. More completions from Tom.
1040 78. Fix the Imakefile to use XCOMM
1041 77. Update for AIX 3.2.
1042 76. French catalog from J.M.Vansteene@frcl.bull.fr (fwd Michael Schmidt)
1043 75. Nls fixes and small typos from Michael
1044 74. PDP11 BSD type fixes.
1045 73. More manual page fixes.
1046 72. 6.05.07 - 04/19/95
1047 71. More NLS catalog fixes.
1048 70. Bruce's jumbo patch.
1049 69. 6.05.06 - 03/15/95
1050 68. make clean does not clobber config.h if Makefile.std is used.
1051     make veryclean does.
1052 67. New config define NISPLUS. Reportedly fixes vanishing output of ~expansion
1053     on solaris 2.4.
1054 66. showdots has been removed; use listflags instead. [handles -x too]
1055 65. more nls catalog fixes.
1056 64. set histchars=,. did not have any effect in .cshrc
1057 63. fix "-c command" new core dump.
1058 62. more completions from Tom
1059 61. call catclose() before exiting, so that svr4 cleans up the symlinks before
1060     exiting.
1061 60. Per's fix for insert-last-word
1062 59. Per's emacs abbreviation mode.
1063 58. Makefile fixes for catalog stuff.
1064 57. fixed again complete-word-raw and list-word-raw
1065 56. 6.05.05 - 03/11/95
1066 55. Made %?str work again
1067 54. IRIX sigalarm problem should be fixed
1068 53. complete-word-raw and list-word-raw should work
1069 52. nls catalogs complete reworking.
1070 51. sh.init.c: Signal complete rewrite.
1071 50. Signal fixes from Bruce.
1072 49. Added promptchars, like histchars; affect %# in the prompt. The first
1073     char is for the user and the second is for root.
1074 48. 6.05.04 - 03/03/95
1075 47. Add NODOT config, $command [that holds the command passed with -c]
1076     $GROUP and $group
1077 46. AFS fixes from Larry Schwimmer <rosebud@cyclone.Stanford.EDU>
1078 45. Real NLS catalogs from Michael Schmidt <michael@muc.de>
1079 44. patch to allow ^? binding.
1080 43. completion patch from Paul DuBois.
1081 42. Don't spell check in here docs.
1082 41. Incorrect normalization of usec in sh.time.c
1083 40. directory printing and option parsing fixes [from Paul DuBois]
1084 39. realloc_searchlen should be static to avoid conflicts with OS's that
1085     use the same malloc package.
1086 38. LOGINFIRST now applies to /etc/csh.login
1087 37. Fixes in bind compatibility code to bindkey.
1088 36. 6.05.03 - 01/17/95
1089 35. Don't print the whole watchlist on startup. One can use explicitly
1090     the log builtin for that.
1091 34. Don't display the $watch value in the log command. 
1092 33. Don't delete the unmatched portion if we try to complete a spelling error.
1093 32. Solaris 2.4 workaround for isprint('\t') lossage (From Casper)
1094 31. Fixed csh bug: [Reported by Jaap]
1095	set test="one\
1096	two\
1097	three"
1098	echo "$test:q"
1099 30. Fixed the lossage in setting the looking mode in tw.parse.c before
1100     calling t_search; $x/$y will not append the right suffix.
1101 29. Another attempt at the gethost timeout code.
1102 28. Cray dmmode and filetests -m -k [need documentation!]
1103 27. More manual patches.
1104 26. Don't glob the path; security problem and core-dump. [from beto]
1105 25. Avoid waiting for jobs that failed to restart, thus hanging the shell.
1106     eg, run job in background, attach to debugger; kill it inside the
1107     debugger. Get out of the debugger and you are stuck if you fg that job.
1108 24. 6.05.02 - 09/04/94
1109 23. remhost code could pass the wrong length to getpeername()
1110 22. too eager sed'ing broke convex getwarpbyvalue() to getwarpbyvarval()
1111 21. Fixed new bindings bug.
1112 20. Fixed bug in newgrp code; execv was called incorrectly.
1113 19. Take into account programmable completion hints when spell checking.
1114 18. Unconditionally change stty modes in Rawmode()
1115 17. Change date in $version to be ISO 8601 per Keith's suggestion
1116 16. Fixed portability problems in the new counted-strings codes (From Kaveh)
1117 15. Fixed binding problem with the new counted-strings code [all key bindings
1118     ended up in the extended map]
1119 14. 6.05.01 - 07/08/94
1120 13. Changed key bindings to use counted strings instead of Null terminated
1121     strings, so that binding ^@ works.
1122 12. Fix parsing bug, where words that contained keywords caused incorrect
1123     word breaks:
1124	switch (iftagd)
1125	case iftagd:
1126	    echo It works
1127	    breaksw
1128	default:
1129	    echo It is broken.
1130	endsw
1131 11. Fix sh.c for systems with no job control. [the new hup builtin sends
1132     SIGCONT].
1133 10. Don't add the suffix character when all completions fail, from michael
1134  9. Added histdup=erase, that deletes the oldest duplicate instead of
1135     the newest.
1136  8. Don't call .logout recursively if we receive more than one hup,
1137     and don't process hangups when we execute the .logout.
1138  7. $logout was set to a static string.
1139  6. Non printable binding listing was broken.
1140  5. Recursive sourced scripts would get mangled up because of input buffer
1141     confusion (thanks michael)
1142  4. M-space should not be counted as a space. Leads to infinite loop in
1143     word splitting.
1144  3. Pyramid fixes.
1145  2. Fixed '\' in sysv echo (from Mika)
1146  1. Missed fix_yp_bugs() when setting REMOTEHOST (From Casper)
1147
1148
1149V6.05.00, 06/19/94
1150113. 6.04.17 06/18/94
1151112. Realloc debug fix from John.
1152111. Completion fixes from Bruce.
1153110. Added -b option to bind.
1154109. Added tcsh.man2html from Dave. Looks great!
1155108. 6.04.16 06/06/94
1156107. Allow multi word glob in "`foo`" expressions.
1157     > if ("`ls`" == "a b c") then
1158106. Michaels lex() buffer patch version 2.
1159     the previous version core-dumped with
1160     > sleep | echo
1161105. Fix seg fault in find_cmd, when path is unset.
1162104. 6.04.15 05/28/94
1163103. the previous =~ fix, was a bit broken.
1164102. 6.04.14 05/25/94
1165101. expression parser fix for !~ and =~.
1166     if (foo =~ *) echo ok
1167     the * was taken for a multiply and parsed as 0 * 0 returning 0.
1168     and asked to match "foo" with "0"
1169100. Michael's lex() buffer patch.
1170 99. Bruce's Jumbo cleanup
1171 98. fixed Imakefile for X11R6
1172 97. fixed argument parsing in source command.
1173 96. added $sched to format scheduled events.
1174 95. 6.04.13 05/07/94
1175 94. added expand-command
1176 93. Alpha OSF-2.0 fixes
1177 92. 6.04.12 04/28/94
1178 91. Ignoreeof patch from Bruce.
1179 90. Dan's completion fix.
1180 89. 6.04.11 04/12/94
1181 88. Don't source .logout when killed with -HUP unless we are a login shell.
1182     [ actually $loginsh controls the behavior now ]
1183 87. ISC-4.0 posix exec() bug workaround
1184     (from Jonathan Broome <jon@wilbur.uucp>)
1185 86. Dan's patch for complete=enhance
1186 85. Kaveh's patches for memset, host.defs, _{U,G}ID_T
1187 84. 6.04.10 03/29/94
1188 83. Pathname completion bug fixes...
1189 82. Completion pathname(p) changes: Completion 'C' -> 'X'.
1190     Replaced 'p' with 'F' and added D,T,C.
1191 81. Next NLS fixes
1192     (From Paul Nevai <nevai@ops.mps.ohio-state.edu>)
1193 80. make spelling correction obey the current histchars setting.
1194 79. Fix rounding in limits so that 0 is a true 0. 
1195     (From Ken Lalonde <ken@cs.berkeley.edu>)
1196 78. 6.04.09 03/12/94
1197 77. Alarm race with remotehost.
1198 76. If you have in your .cshrc 
1199	set savehist=(100 merge)
1200	and execute
1201	#!./tcsh
1202	exec ps
1203     you get no output; [fixed]
1204 75. setenv SHLVL -1; tcsh = Segmentation fault [fixed]
1205 74. 6.04.08 02/10/94
1206 73. new machtype, ostype, vendor
1207 72. execute .logout on hangup.
1208 71. more man page fixes.
1209 70. 6.04.07 02/04/94
1210 69. Dynamic hash changes, globbing for which command from Michael.
1211 68. INBUFSIZE fixes for history.
1212 67. printenv returns 1 when a variable is not found, like the non builtin one
1213 66. Add quotes to the mismatch array so that:
1214     > touch foo
1215     > mail "oo bar"
1216     does not get corrected. The right fix would be to do correct parsing
1217     and quote the space...
1218 65. NULL terminate mismatch[] array in ed.inputl.c, since it is used in
1219     Strchr().
1220 64. renamed stat to filetest
1221 63. Afs and Hesiod patches.
1222 62. More manual page patches.
1223 61. 6.04.06 12/19/93
1224 60. Alarm for resolver timeouts (untested)
1225 59. Fixes for Henry Spenser's regex in the Makefiles
1226 58. Modifiers now work with $< and $< does not do :q by default.
1227     [incompatibility with csh] and $< can be interrupted.
1228 57. Added $histdup.
1229 56. source /etc/.login for Solaris 2.x
1230 55. don't remove trailing spaces in history searches.
1231 54. dirs -L and dirs -S spurious warning elimination.
1232 53. man page fixes from David.
1233 52. Kimmo's patch [makefile, gcc warning, netdb.h include]
1234 51. 6.04.05 12/12/93
1235 50. rewrote srcunit() to use st_save and st_restore. The code was
1236     too messy to be useful before.
1237 49. recdirs and rechist patches again!
1238 48. Harris hck port, and ISC imake update
1239 47. Eliminate the x windows :display.screen before looking for the 
1240     hostname in REMOTEHOST
1241 46. Patch for CDF filetype() recognition (hpux)
1242 45. 6.04.04 11/12/93
1243 44. Made =x obey nonomatch.
1244 43. Fixed rechist and recdirs not to depend on savehist and savedirs
1245 42. Removed aliases, bind, linedit builtins [ifdef'ed out as OBSOLETE]
1246 41. change REMHOST to REMOTEHOST for compatibility with SGI.
1247 40. $owd was not working correctly.
1248 39. Debugging printf elimination (from Kimmo)
1249 38. Typos in the new hup code in sh.c (from Matt)
1250 37. Imakefile fix for sequent (from Jaap)
1251 36. 6.04.03, 10/30/93
1252 35. New manual page in place.
1253 34. Fixed Makefile sed RE to work with gnu sed.
1254 33. Added hup builtin.
1255 32. Added $REMHOST in config_f.h
1256 31. Fixed random parsing bug in sh.exp.c in isa(). It checked cp[1]
1257     without checking cp[0] first... (should propagate to 4.4BSD)
1258 30. More sh.exp.c fixes from Bruce
1259 29. Always exit when the user types exit. 
1260     cat | tcsh -f -s
1261     exit
1262     ls
1263 28. savedirs fix and readlink() null termination fix from Peter.
1264 27. Added -p flag (force dirs printing in all directory functions and $owd
1265     variable
1266 26. Let $dirstack work by default without needing to be set.
1267 25. Fixed history -h to work with other history flags.
1268 24. Renamed ed-functions more consistently (dcs)
1269 23. Added missing filetests (dcs)
1270 22. Added NEWGRP define in config_f.h (dcs)
1271 21. More fixes for non blocking io recovery from Bruce
1272 20. 6.04.02, 10/08/93
1273 19. changed default prompt to %#
1274 18. New group 'g' completion.
1275 17. removed IIASA defs.
1276 16. fix for history -SL and dirs -SL to work when savedirs and savehist are
1277     not set.
1278 15. fix magic-space to understand :p
1279 14. make :u,:l work for history.
1280 13. Fixes for non-blocking i/o recovery. trap all non blocking styles under
1281     sunos.
1282 12. 6.04.01, 08/10/93
1283 11. Vi mode word moves [they work like vi and don't obey wordchars anymore].
1284 10. New file operators and stat builtin
1285  9. David's FIONREAD patch for SVR4
1286  8. Bruce's ignoreeof=n patch
1287  7. Dan's complete/correct enhancement
1288  6. Abort corrections patch.
1289  5. Print_by_columns, now does not use the rightmost column.
1290  4. Renamed config/config.$i to $i to avoid once and for all filename length
1291     problems.
1292  3. bbn butterfly config
1293  2. Beto's proc fixes
1294  1. Bruce's bug fix for ed.chared.c, signals
1295
1296
1297V6.04.00, 07/03/93
1298 92. Alpha prototypes, for gcc -Wall clean compile.
1299 91. Fixed alpha hashing. Did not work for directories > 31, Thanks to
1300     Dan Mosedale <mosedale@genome.Stanford.EDU> for all the help!
1301 90. Added USE(a) for unused parameters, to avoid compiler warnings.
1302 89. 6.03.10, 06/25/93
1303 88. Makefile and lint patches from Bruce.
1304 87. Posixsig patch from Peter for svr4
1305 86. 6.03.09, 06/11/93
1306 85. signal handling broke with the last job control patch...
1307     > (does-not-compute;)
1308     would hang.
1309 84. don't quit after the first modifier fails:
1310     > set i=aabbcc
1311     > echo $i:s/a/A/:s/b/B/
1312     AaBbcc
1313     > echo $i:s/x/A/:s/b/B/
1314     aabbcc
1315 83. Imakefile fixes for sequents from Jaap.
1316 82. Move past the bottom of input when we hit ^C, so that multi-line
1317     input commands don't get trashed.
1318 81. Look only at the first word in ${EDITOR,VISUAL} to determine the
1319     editor name.
1320 80. Last patch broke listmax.
1321 79. Remove extra sandbagging in exitstat(). Not needed anymore as value()
1322     will never return NULL.
1323 78. Save $status before calling aliasrun() otherwise:
1324     > alias precmd 'cd .'
1325     > true
1326     > echo $status
1327     0
1328     > false
1329     > echo $status
1330     0
1331 77. 6.03.08, 06/07/93
1332 76. missing prototypes/unused variables under SYSV4.
1333 75. savedirs should glob the filename argument.
1334 74. 6.03.07, 06/05/93
1335 73. Changed _Q, _Q1 macros in sh.lex.c, sh.dol.c, sh.char.? to _QF and _QB
1336     because today 4.4BSD <ctype.h> defined _Q to be ``Phonetics''
1337 72. listmaxrows variable.
1338 71. set -r would not make existing variables readonly.
1339 70. print usernames with ~user where possible in dirs and job cwd's
1340 69. Mika's fixes (missing args in sh.c set(), linux Makefile, SIGCHLD)
1341 68. FIONREAD argument is int everywhere except on SunOS where it is long.
1342     Tcsh used to think that it was long, and so it broke on the alpha where
1343     sizeof(int) != sizeof(long)
1344 67. 6.03.06 05/16/93
1345 66. Pipeline fixes. This should get rid of the dreaded Stopped tty output
1346     message.
1347 65. Michael's fix for history buffer cleanup:
1348     > alias foo 'echo \!:1:h'
1349     > foo a/b
1350     a
1351     > ^P [nothing happens]
1352 64. Unsigned long rlimit type for 64 bit machines (alpha)
1353 63. Fixed Imakefile for alpha
1354 62. tilde expansion now obeys $nonomatch
1355 61. readonly veriables. 'set -r x=3' will set x to a very sticky 3...
1356 60. Fixed bug in the new tab'ed completion that interfered with old listing.
1357 59. Fixed entry -> item in tw.parse.c
1358 58. Added -f option to unlimit
1359 57. Define __STDC__ in Imakefile for Irix
1360 56. Static redeclarations in tw.parse.c
1361 55. 6.03.05 04/26/93
1362 54. Don't echo history expansion in loops:
1363     > alias junk 'foreach i (\!:2*) \
1364     foreach? echo \!:1 $i; \
1365     foreach? end'
1366     > junk a b c d
1367     echo a $i ;
1368     a b
1369     echo a $i ;
1370     a c
1371     echo a $i ;
1372     a d
1373 53. Added complete-word-fwd and complete-word-back that scroll through
1374     the list of possible completions... Neat addition from 
1375     jfink@csugrad.cs.vt.edu (Jeff "$DOTDIR" Fink)
1376 52. Workaround hpux9.01 broken optimizer in sh.glob.c where 'ls *' breaks.
1377 51. Michael's editor fix.  With "magic margins" and 80 char width, try:
1378	> set prompt=
1379	<ESC>20a<CTRL>a<ESC>76b<CTRL>ac
1380 50. Reverted fix that does not glob the expanded back-quote text again.
1381 49. > cd /., echo $cwd
1382     /.
1383     Eliminate the . in this case...
1384 48. Matt's optimization in glob.c [retracted]
1385 47. Fixed bug with -S
1386 46. Renamed Makefile Makefile.std, and fixed the readme file
1387 45. 6.03.04 04/07/93
1388 44. Changed -s == !-z and -S == socket
1389 43. Fixed typo in sh.c, in phup [shpgrp != pr->pgrp]
1390 42. Multi-line aliases are not entered into the history when executed.
1391 41. Changed f_seek to a union to avoid gcc warnings on 4.4BSD
1392 40. Fixed 'unset home; dirs' bug
1393 39. fixed $HOME->$home memory problem.
1394 38. $?0 returns false now on interactive shells for csh compatibility.
1395 37. Default watch inteval was 10 hours not 10 minutes as advertized in the
1396     manual!
1397 36. Fixed clobbered veriable warning from gcc-1.39 in tw.parse.c
1398 35. Fixed typo with INVPTR in sh.lex.c
1399 34. 6.03.03 03/04/93
1400 33. Eliminate 'Reset tty pgrp error message'. It is normal for the
1401     walking process group stuff. Check about the killpg() above?
1402 32. More portability for 64 bit machines.
1403 31. Improved completion error messages.
1404 30. Fix bug with double globbing expansion on mirrored variables:
1405	> setenv TERM '?vt100'
1406 29. Avoid hanging when writing to pipes etc. (From Paul Close)
1407 28. Typo in the $HOME->$home mirroring.
1408 27. %p %P 'p'recise time formats that include seconds for prompt strings.
1409 26. Signal list fixes from Paul Close. nsig is now a variable.
1410 25. 6.03.02 02/12/93
1411 24. NEC SX3 "entry" is a reserved word!, changed entry to item...
1412     [this is as bad as cray typedefining "word" to int. Next thing I know,
1413      I'll have to prefix all the variables with tcsh_!]
1414 23. xxx
1415 22. Protected all include files to avoid warnings from lcc.
1416 21. Finally resolved the job control problems with linux and ISC (from Beto)
1417 20. More HUP,XFSZ,XCPU fixes. (with Beto)
1418 19. Dcanon would not canonicalize correctly in case where dnormalize()
1419     failed to find a directory, but the directory existed when not 
1420     crossing the symbolic link.
1421 18. sh.init.c fixes; give 65 signals for all POSIX machines.
1422 17. AMS mail fixes and cmu wm handling.
1423 16. Setenv would not ignore trim quoted names...
1424     > alias foo 'setenv "\!:1" bar'
1425     > setenv FOO 123
1426     > foo FOO
1427     > printenv
1428     ...
1429     FOO=123
1430     FOO=bar
1431     ...
1432 15. 6.03.01 08/01/93
1433 14. #undef SHORT_STRINGS gcc warning fixes...
1434 13. csh bug fix in foreach [quoteing problem]
1435     > foreach i ("*")
1436     > echo $i:q
1437     > end
1438     Should print *
1439 12. ls-F obeys showdots...
1440 11. After scheduled commands get executed, the editor could stay disabled
1441     until the first enter.
1442 10. sigset() bug in ed.init.c; ^C could get disabled sometimes.
1443  9. Don't glob in dowhich(); otherwise \pat does not work if pat is aliased.
1444  8. When completion patterns are used $ and ~ expansion did not work right.
1445  7. Printenv builtin and long backquote expansion fix from Harald.
1446  6. $:-1, $:-0 enhancement from Paul and Michael.
1447  5. Lynx/OS patches
1448  4. Apollo bugs [Setenv -> tsetenv, typedef in pid_t]
1449  3. ^@ did not work correctly in bindkey.
1450  2. Fix vms/posix ifdefs in tc.alloc.c
1451  1. Elide gcc-2.3.1 warnings
1452
1453
1454V6.03.00, 11/20/92
1455102. Solaris2 patches, renamed sunosX to sosX to fit in 14 character filenames.
1456101. 6.02.12 11/12/92
1457100. Decreased BUFSIZE to 1K...
145899. Don't use sbrk() in tc.alloc.c on VMS
145998. EINTR error handling from Michael
146097. Overwrite mode takes effect immediately, not delayed by a command.
146196. Emx fixes.
146295. SIGHUP gain...
146394. Coherent times()/ <sys/file.h> fixes.
146493. 6.02.11 10/27/92
146592. Mach setpath fixes.
146691. Which now globs its arguments
146790. Again POSIX SIGHUP fixes... Maybe we got it right this time...
146889. Increased BUFSIZE to 4K. Smaller machines may want to decrease this.
1469    [ Now one can edit up to 4K of buffer! ]. From Harald.
147088. : is now a true builtin that does nothing, instead of being treated like
1471    the last character of a label. This is so it can take args. From Harald.
147287. More fixes for hpux limits from Harald.
147386. Login shell if ppid == 1 and argc == 1 for VMS.
147485. Typo in sh.exec.c from Harry.
147584. Per's editor fixes.
147683. 6.02.10 10/17/92
147782. Don't free STRNULL in freelex(). Update linked list in copylex() to
1478    do the same insert as in lex().
147981. Fixed spurious tilde printing in %c prompt.
148080. Fixed dumb wild free in AddXKey... 
1481    (thanks Harald for the complex bindings! :-)
1482    > bindkey "\e10z" expand-line # Any editor command will do
1483    > bindkey -[cs] "\e10z" "foo" # Any string or command will do
1484    Free(%x) ....
148579. coherent additions.
148678. fixes for hpux8 resource limits [Thanks Harald]
148777. 6.02.09 10/10/92
148876. More vms cleanups.
148975. Removed #include CONFIGH from sh.h. There was no way to make it work 
1490    under VMS/POSIX
149174. Added t completion (Gray Watson)
149273. Memory leaks in sh.dir.c and sh.glob.c [thanks purify :-)]
149372. IRIX 5.0 patches (from Paul Close)
149471. BSD resource limits for hpux8.0 (From Andreas Stolcke)
149570. NGROUPS_MAX fixes (from Matt Day)
149669. 6.02.08 10/04/92
149768. VMS port additions.
149867. Added $%var, which == strlen(var)
149966. Added ^X^I and ^X^D to override programmable listing+completion
150065. Added case insensitive globbing for OS/2
150164. FIOCLEX and FIONCLEX are only used if we don't have FD_CLOEXEC.
150263. Added emx termio support, and emx pathsep support; emx compiles and runs:
1503    needs job-debugging and finishing touches.
150462. Horrible bug with the lex linked list; from Loic Grenie, grenie@ens.fr
1505    > echo a !#
1506    echoed 'echo a echo a echo'!
150761. Shell -w,-x were incompatible with the same for test [POSIX] (beto)
150860. builtin newgrp did not accept the - argument.
150959. FIOCLEX for the masses (POSIX FD_CLOEXEC addition)
151058. Old style csh completion bug fix [not used] (beto)
151157. A background process waiting for input from tty
1512    blocks when being foregrounded doesn't read its input and
1513    doesn't get <cntl-c> and <cntl-z> signals.
1514    It can only be killed from another session. (beto)
1515    > cat > foo
1516    #!/bin/csh -f
1517    echo ">>>>>>"
1518    set x = $<
1519    echo $x
1520    ^D
1521    > chmod +x foo
1522    > foo &
1523    > fg
1524    ^Z,^C # Nothing happens
152556. history > 1000 fix (beto)
152655. 6.02.07 9/18/92
152754. Added e_stuff_char() to put back a character in cooked mode in
1528    the input stream... Useful for status (^T)
152953. $? == $status and $# == $#argv like in the bourne shell.
153052. Added $dirstack. Problems: off by one since =0 == $cwd, but 
1531    $dirstack[1] == $cwd... Suggestions welcome.
153251. Leading spaces would confuse the run-help function.
153350. Don't expand imported environment variables:
1534    > setenv HOME \*
1535    > tcsh
1536    > echo "$home"
1537    > echo "$HOME"
153849. %C0n displays the number of directories omitted as /usr/local/bin /<2>bin/
153948. Added POSIXSIGS as a configuration option.
154047. Per's fixes for history format and arrow key binding.
154146. Expand-variables expands array variables too
154245. 6.02.06 8/14/92 
154344. Separated limit stuff from BSDTIMES and added BSDLIMIT
154443. History searching inconsistent with HistLit:
1545    > echo foo
1546    foo
1547    > ^foo^bar
1548    bar
1549    > ec[M-p]
1550    echo foo
155142. 6.02.05 8/8/92 
155241. sourcing a script that contains 'onintr -; onintr' would disable 
1553    interrupts on the command line
155440. cd ../... with symlinks=ignore would work !@#!@
155539. No more BACKPIPE for POSIX machines...
155638. SUNOS NLS bug workarounds...
155737. New HASHBANG define for #! emulation... even 386BSD does not have it
1558    yet...
155936. Added new -b -c file operators from SGI csh.
156035. 6.02.04 7/23/92 
156134. Walking process group fixes.
156233. $0 contains now argv[0] when we are not executing a shell script.
156332. New Getwd() was broken.
156431. 6.02.03 7/17/92
156530. We kill our last foreground process group on HUP, for POSIX systems.
156629. Walking process group fix.
156728. $shlvl gets reset to 1 for login shells.
156827. Macros can now involve multiple commands, i.e.
1569    bindkey -s "^[OP" "ls\n^P"
157026. 6.02.02 7/6/92
157125. nostat accepts now a list shell patterns.
157224. Avoid print_exit_value in if ( { foo } )
157323. Symbolic key names for bindkey [arrow keys].
157422. Smarter getwd() that avoids some of the NFS hangs...
157521. Use memmove() where possible.
157620. 6.02.01 6/16/92
157719. Fix automatic correction to work with the new completion.
157818. Globbing bug with brace expansion, when arguments need to be realloced...
1579    e.g. echo 134{6,7}{0,1,2,3,4,5,6,7,8,9}{0,1,2,3,4,5,6,7,8,9}
158017. shift and left operators update variables correcly ('shift path' did not 
1581    work)
158216. apollo fixes for cd.
158315. STRNULL <-> NULL bug fixes.
158414. %S in xprintf for short strings.
158513. history -LSc, dirs -LSc additions, builtins builtin [oxymoron]
158612. history formatting string, who formatting string, prompt formatting
1587    all use tprintf() now.
158811. $history accepts a second formatting argument..
158910. History timestamps preserved in .history
15909.  Backquotes were broken: echo hi | cat > `echo foo`
15918.  SGI -t operator problem.
15927.  Dnix fixes.
15936.  Fix history file writing bug when autologout.
15945.  Change from TCSETA to TCSETAW, since we affect the output.
15954.  Per's fixes for display margin bugs.
15963.  Linux fixes.
15972.  Collapse adjacent stars in glob.c to avoid exponential behavior.
15981.  Fixed parseescape to put ^ literally if not followed by alpha.
1599
1600
1601V6.02.00, 5/15/92
160294. Default echo_style was not being set correctly.
160393. $< did not work correctly with NLS chars.
160492. 6.01.15 (5/11/92)
160591. Minor cleanups in refresh code.
160690. 6.01.14 (5/8/92)
160789. Print \n in the right margin always to be consistent.
160888. Linux patches.
160987. 6.01.13 (5/2/92) 
161086. Fixes in listing and completion of non-unique commands.
161185. Fix =stack entries > 9... from Bill Petro
161284. Fix for last character at margin. [on terminals that have am & xm move
1613    the cursor manually to the next line]
161483. Fix for complete completions 
161582. small typo in tc.alloc.c from Mark Moraes.
161681. small typo in tw.parse.c from Richard.
161780. Man page fixes from Per.
161879. 6.01.12 (4/24/92) [release version for 6.02]
161978. Autosuffix was not getting reset all the time.
162077. Don't limit completion patterns to 1K.
162176. Naming changes in ed.screen.c from Justin.
162275. 6.01.11 (4/10/92)
162374. Fixed magic-space ! expand bug:
1624    > echo a b123 45.{6,7}
1625    > echo !:2!:3[magic-space]
162673. Work-around for apollo optimizer in tc.bind.c
162772. Problem with setjmp in tw.parse.c
162871. symlinks=expand from Yumin.
162970. tenematch() fixes from Michael;
163069. 6.01.10 (4/3/92)
163168. Fixed Gnmatch.
163267. Removed ignore_symlinks and chase_symlinks. Replaced by symlinks variable.
163366. Backquote from completion was broken for machines with no dup2()
163465. No $printexitvalue for `` jobs.
163564. Added ultrix stuff for PW_AUTH [from Mike Potter mpotter@lampf.lanl.gov]
163663. Fixed bug in Gnmatch(), added 'N' command 'x' completion.
163762. Fixed fg_proc_entry() so autologout gets disabled when a process
1638    is foregrounded.
163961. 6.01.09 (3/26/92)
164060. source builtin takes arguments now that are passed in the script e.g.:
1641    > ./tcsh -i a b c
1642    > cat test
1643    echo $argv
1644    > echo $argv
1645    a b c
1646    > source test 1 2 3
1647    1 2 3
1648    > echo $argv
1649    a b c
165059. Eliminate $margin_bug, add more intelligent margin code [from Justin]
165158. expand_symlinks variable Urgh...
165257. SGI CONTROL() fixes...
165356. new dnormalize(), expand_symlinks flag.
165455. interrupting completion restores the current line. [from Marc]
165554. 6.01.08 (3/20/92)
165653. inputmode affects the first line too.
165752. Searches in vi do not destroy the current line.
165851. -drwX test enhancement.
165950. Generalized completion syntax and added more completion builtins.
166049. Don't print '\n' on the right margin if we can avoid it.
166148. 6.01.07 (3/9/92)
166247. New completion style. [[<pattern>[ ]],=<completion action>]
166346. 6.01.06 (3/7/92)
166445. complete styles are ignored after shell metachars eg.
1665    > complete mail =u
1666    > mail christos < [tab]
1667    completes filenames.
166844. $echo_style is initialized to the default style of the machine.
166943. SGI 4.0 CTRL() macro is busted. So we ignore it.
167042. Fixed bug with the new margin code (thanks justin)
167141. Fixed mirroring of variables. Now set and setenv affect
1672    HOME, TERM, PATH, SHLVL, USER and their csh counterparts. Unset affects
1673    affects only the csh copies of the variables, and unsetenv only the
1674    environment variables.
167540. Fixed gcc-2.0 warnings in sh.sem.c (needed for vfork() -O2 optimization)
167639. 6.01.05 (2/21/92)
167738. signal masking for BSD machines was still wrong in tw.init.c
167837. Added $margin_bug, and now the editor outputs on the rightmost 
1679    column by default. This should fix the xterm cut-n-paste problem.
168036. AU/X 2.0 and SGI compiles with POSIX as a default now.
168135. sysv_echo is gone too. Now we have a variable called echo_style
1682    which can be set to "none", "bsd", "sysv", "both" that defines
1683    the builtin echo_style. The default is "bsd" for systems with
1684    SYSVREL == 0, "sysv" otherwise. This can be overriden in config.h
1685    by defining ECHO_STYLE ro be BSD_ECHO, SYSV_ECHO, BOTH_ECHO, 
1686    or NONE_ECHO.
168734. asynchronous notification in run-fg-editor would try to change the 
1688    tty settings and print an extra prompt.
1689    > set notify 
1690    > sleep 10 &
1691    > vi^Z
1692    > ^[^Z
169333. alias x /bin/true
1694    x<esc>?
1695    reported .//bin/true instead of /bin/true
169632. 6.01.04 (2/12/92)
169731. fixed vi_substitute_line
169830. binding completion addition.
169929. showdots=-A addition
170028. sysv_echo addition; deleted bsd_echo which is now the default.
170127. dunique could crash.
170226. Don't clear lines after an asynchronous notification, because it
1703    might erase the message.
170425. 6.01.03 (1/29/92)
170524. `` were not working correctly when tcsh is started with 0,1,2 closed.
170623. Correction was picking up the wrong thing in cases like .rhosts hosts
170722. Correction with names with quoted spaces was broken.
170821. Added sysv_echo and bsd_echo.
170920. Added and documented the complete builtin.
171019. Added dunique and cd -.
171118. Per's fix for alarm functions. Things would break if time went backwards.
171217. Realloc bug fix (copy min of old and new size)
171316. Fix for csh compatible braces.
171415. Brace globbing and negation globbing for Gmatch.
171514. 6.01.02 (1/16/92)
171613. Completion builtin, new tw* files.
171712. 6.01.01 (1/6/92)
171811. Changed w_ fields in tc.who.c to who_ to avoid redefinitions in
1719    <sys/wait.h> in some os's.
172010. Setting savehist to an empty string makes savehist use the value
1721    in $history.
17229.  echotc did not use the internal termcap descriptions.
17238.  echotc did not work right for single argument termcap strings.
17247.  DGUX needs SAVESIGVEC, updated type protection, and disabled CSWTCH.
17256.  Changed SVID to SYSVREL, since there is no SVID == 4 (yet).
17265.  Typo in tc.sig.h: UNRELSIGS was not getting defined.
17274.  Globbing bug fix. tglob() should ignore globbing characters inside 
1728    backquotes otherwise things get expanded twice:
1729    % echo 'bar?' > 'foo?'
1730    % echo `cat foo\?`
1731    echo: No match.
17323.  Mach setpath fix.
17332.  Alliant process group fix.
17341.  Xenix fixes for broken vi and help path with no suffixes.
1735
1736
1737V6.01.00, 12/19/91 [for comp.sources.unix]
173822. Restore the original prompt in automatic correction when the user
1739    asks to re-edit the command.
174021. Better error for unreadable files in tw.parse.c
174120. Sequent patches.
174219. (V6.00.08 beta 12/14/91)
174318. Filenames containing # were spelled/expanded incorrectly.
174417. Stellar/stellix port.
174516. Hpux 8.0 has SIGWINDOW but we cannot get the window size. Protect
1746    against window changes updating $LINES and $COLUMNS.
174715. Mach setpath did not work right.
174814. Mach does not need setenv in lib; in fact that does not work right.
174913. shell level gets decremented when we exec.
175012. restart_fg_editor picked the wrong editor if arg contained a slash.
1751    e.g vi ~/.cshrc
175211. (V6.00.07 beta 12/08/91)
175310. Allow use of vfork() on systems that do not have job control.
17549.  Avoid NUMCC from being defined twice.
17558.  (V6.00.06 beta 12/05/91)
17567.  SunOS3's FIOCLEX dups...
17576.  Yet another globbing bug fix from Michael (echo .[^.])
17585.  Ultrix now wants __ before cpp symbols.
17594.  Workaround sun's header files inconsistency so tcsh can be compiled
1760    with #undef POSIX
17613.  Fixed limit stuff so that large values don't cause errors.
17622.  Fixed =1 and ~user error messages (Per)
17631.  (beta-5 6.00.04 == 6.00.05)
1764
1765$#*
1766$#* New numbering scheme (The last 2 digits are reserved for beta releases
1767$#* from now on. So we start at 6.00.06 which is 6.00.04 beta 6, and we are
1768$#* going to release 6.01.00...
1769$#*
1770
1771V6.00.04, (never released)
177234. (beta-5 11/25/91)
177333. Simplify code in BindArrowKeys()
177432. Get rid of the PNULL's
177531. Support for shadow password in locking code. (From Kimmo)
177630. Normalize-path editor function.
177729. (beta-4 11/21/91)
177828. minix additions
177927. bindkey fixes (-c addition, casting cleanups)
178026. (beta-3 11/16/91)
178125. Prompt length checking. 
178224. Michael's fixes for the watching code. Tcsh could core dump when using
1783    a corrupted utmp.
178423. overwrite mode flag, and autologout locking code.
178522. overwrite mode would still insert digits!
178621. Get the value of _POSIX_VDISABLE from pathconf...
178720. Hpux 8.0 fixes. Sigstack botches with shared libraries. Ansi mode
1788    static initialization of structures with prototyped function pointers
1789    gives spurious warnings...
179019. Onintr in /etc rc files is disabled.
179118. (beta-2 11/03/91)
179217. Multi-line aliases with `` bug fix.
179316. Sticky emacs overwrite mode.
179415. Autolist option.
179514. Fix for redirection with wildcard filanames.
179613. No error correction for multi-line commands.
179712. Esix-4 re-defines p_pid. Argh...
179811. (beta-1 10/28/91)
179910. Foreach loops were broken again.
18009.  SUNOS localtime() bug does not only happen on the 8th byte. [Michael]
18018.  sh.dir.c, memory corruption in dinit(). Thanks Michael.
18027.  uts broken <sys/stat.h> work-around, and has a wait3()
18036.  SGI (-t filename) extension, returns true when filename is a tty.
18045.  'default:' addition in all switch() statements.
18054.  oflag was not being updated correctly in Rawmode()
18063.  missing 'break;' in prompt code '%y'.
18072.  infinite loop in :a<mod> code.
18081.  hashstat was not reporting hits+misses
1809
1810
1811V6.00.03, 10/21/91
181231. watch code now accepts shell patterns.
181330. new hashing code portability fixes.
181429. $foo:gs/:/ / fix and 'a' modifier addition.
181528. Added $! (the pid of the last background job forked)
181627. exec does not kill the shell when it fails.
181726. Irix4.0 decls.
181825. SVR4 uthost fixes from Kimmo Suominen
181924. Imake addition from marc
182023. New i-search from Per.
182122. ibmesa fixes
182221. convex fixes.
182320. t command for vi.
182419. SVR4 fixes (reverse pipeline and sigaction()) from David Dawes.
182518. New hashing from Marc
182617. Added : to the ~name separators so ~foo:~bar works.
182716. New ed.init.c. Added ed.term.c
182815. Still can't get the history exactly csh-like... !-2$ was broken...
182914. vi character searches.
183013. -Dvar=name command line option for the apollos.
183112. Prompt format changes for date/directory.
183211. Vi searches.
183310. Emacs i-search. [currently not bound]
18349.  Vi additions ([dc]-{w,$,f<c>},Undo)
18358.  tcsh -n parses now builtin structures.
18367.  seek to the end on errors in loops.
18376.  echotc -s was broken
18385.  Better !event parsing. !foo;!bar was broken.
18394.  foreach loops and if statements in aliases.
18403.  .cshdirs would corrupt the heap if some directories were not there.
18412.  System V echo was broken with \
18421.  Fixed echo '!-1', history would eat the quote.
1843
1844V6.00.02, 08/05/91 [For comp.sources.unix]
18458.  tcsh will always set $LOGNAME and $USER if not already set in the
1846    environment.
18477.  added $histfile.
18486.  echo `echo` * and  echo ~ {} were broken
18495.  setty builtin addition
18504.  Multiple : modifiers [experimental, disabled with -DCOMPAT]
18513.  7 bit fixes, and hp9000s500.
18522.  #undef DEBUG in tc.alloc.c, so we continue if we get a bad free() 
18531.  getn() is now protected against NULL strings.
1854
1855V6.00.01, 07/16/91
185617. added beepcmd, and fixed small tenematch bugs.
185716. Renamed DUP2 flag to HAVEDUP2 cause AIXPS2 defines DUP2 already.
185815. More ANSI fixes, and mit additions (load-average)
185914. don't clear ECHOE, background programs might need it.
186013. Refresh bug fix...
186112. getpwent() should not be interrupted (yellow pages), cause it might
1862    leave dangling pointers, that endpwent() will trash.
186311. ChangeSize is now responsible to set the screen size to something
1864    sane, but it should not affect the environment if the information
1865    it received is not valid
186610. Find out if we are running under emacs using $TERM. It is more 
1867    reliable.
18689.  tcsh was broken if SHORT_STRINGS was not defined (glob() problem)
18698.  If GetSize() fails it should always return reasonable screen sizes.
18707.  globbing should not fail if one or more patterns match.
18716.  increased the number of aliases in the loop detection code.
18725.  DGUX has size_t and pid_t defined now...
18734.  ESIX does not have EWOULDBLOCK or EAGAIN & POSIX... That was not handled
1874    correctly.
18753.  rs6000 needs BSDWAIT.
18762.  Hpux susp key could not be changed.
18771.  Apollo fixes.
1878
1879V6.00.00, 07/04/91
188045. Fixed quoting of VSTART/VSTOP on termios
188144. Memory leak every time you pipe in or out.
188243. echo {foo bar.[ch]}. Did not check for end of word.
188342. ANSI prototypes
188441. dmove() would leave the source descriptor open when using dup2()
1885    e.g.
1886    while (1)
1887	echo foo >>! bar
1888    end
1889    runs out of file descriptors
189040. recursive `` expanded via aliases would abort.
189139. set home=../relative-path-name was broken.
1892    e.g.
1893    set home=../..; cd ..;
1894    <abort>
189538. Incorrect error when changing to directory:
1896    e.g.
1897    mkdir not-in-cd-path; chmod -x not-in-cd-path; cd not-in-cd-path;
1898    echoed:
1899       not-in-cd-path: No such file or directory.
1900    it should have said
1901       not-in-cd-path: Permission denied.
190237. if ( \! =~ [\!] ) echo ok, did not echo ok. Quoting inside [] pattern.
190336. More than 127 jobs caused job # to go negative
190435. unsetenv <pattern> ... Added support for more than one pattern.
190534. More background process status report fixes.
190633. Apollo builtin support.
190732. Glob fix. echo '*' * was not handled properly.
190831. Glob fix. setenv FOO `sleep 1` would either cause a segmentation fault.
1909    or print ambiguous.
191030. Glob fix. Quoted characters inside [] were not handled properly.
191129. Removed TELL and VMUNIX defines. I think we cannot compile on V6 anyway
191228. Overflow check for expansions.
191327. Added matchbeep, shell pattern history searching.
191426. Added code to handle /dev/std{in,out,err}
191525. Fixed POSIX speed handling in raw mode.
191624. Fixed a flushing bug in the filec code in sh.file.c
191723. Compiled and added hp9000s700 to the list of hosts.
191822. Fixed horrible bug in gmatch() 
1919	switch (4)
1920	case [a-z]:
1921		echo bug;
1922		breaksw;
1923	case 4:
1924		echo ok;
1925		breaksw;
1926	endsw
192721. Fixes for _SEQUENT_ ut_host.
192820. FLUSHO added
192919. mkdir foo\`bar; cd foo\`bar; was broken
193018. EWOULDBLOCK == EAGAIN on RENO check for that too.
193117. Dword() simplified and removed the gotos.
193216. Hpux now compiles with POSIX. Moved the local chars modes in ed.init.c
1933    after the tty modes.
193415. Process group fixes for POSIX
193514. We need <sys/filio.h> on the suns for FIOCLEX!!! We did not close
1936    our file descriptors before...
193713. A/UX fixes.
193812. History events that start with a number are not necessarily numeric:
1939    > !3d
1940    3d: Event not fount
194111. History loop detection added.
1942    > alias a \!#
1943    > b; a
194410. Alias loop detection code was ineffective on eager optimizers.
1945 9. All errors should now go through our table. Next step we should
1946    add nls error messages.
1947 8. Unsetenv now globs its arguments! Before it did not...
1948 7. Added tilde cache and -l flag.
1949 6. Added autocorrect
1950 5. Fixed for so that background jobs in scripts get process groups
1951 4. Fixed amazing memory leak in setenv()...
1952 3. Added short2qstr() so that we can form quoted strings to be used with glob()
1953 2. str2short and short2str allocate space dynamically.
1954 1. Fixed bug related to the is*() routines called with shorts.
1955    [only if NLS and SHORT_STRINGS are defined].
1956    (The _ctype_ was getting indexed with shorts...)
1957 0. Complete overhaul. Brought in the 4.4 csh stuff. Separated most
1958    tcsh and csh code except where I would have to add more global
1959    variables. Compiled correctly with both lint and gcc -Wall on
1960    a sparc running 4.1
1961
1962V5.20.03, 03/20/91.	- Never released
196325. Kanji, SXA additions.
196424. (exec foo) should not fail if they are suspended jobs.
196523. Support kernel paging stuff on aix 370.
196622. Now we handle correctly the environment variables LINES, COLUMNS,
1967    TERMCAP for window size changes...
196821. Tcsh 5.18c+ had broken NULL chars on scripts.
1969    > cat > foo 
1970    #!/usr/local/bin/tcsh -f
1971    echo "foo"
1972    echo "^V^@"
1973    echo "bar"
1974    ^D
1975    > chmod +x foo; foo
1976    foo
197720. Posix has EAGAIN and not EWOULDBLOCK
197819. Don't set ECHOK; makes kill ^U ugly.
197918. $shell is SHELLPATH and not $SHELL any more.
198017. Added -n flag to cd, pushd, popd and dirs. Documented -l and -v
1981    flags.
198216. Documented and fixed chase_symlinks and ignore_symlinks.
198315. Call endpwent() when you get interrupted...
1984    cd ~chri<tab>^C
1985    cd ~christos/<enter>
1986    <stuck>
198714. Exec when you have suspended jobs asks for verification.
198813. Variable length fixes:
1989    >set abcdefghijklmnopqrstuvwxyz=1
1990    >echo $abcdefghijklmnopqrstuvwxyz
1991    abcdefghijklmnopqrs: Undefined variable
1992    Now we have better messages too...
199312. Icon fixes...
199411. Quote expanded glob and history chars too.
199510. If someone sets SHIN to O_NDELAY we died... Now we set it back...
1996 9. unset path; unsetenv PATH; ls-F; (poof) fixed...
1997 8. Patches for masscomp, and ${var123} lexical analysis fix...
1998 7. Patch for sunview bug: A partially covered suntool sends SIGWINCH every
1999    time the text is scrolled, causing annoying redraw effects. Now tcsh
2000    checks if the size really changed before doing anything.
2001 6. Interrupt in the middle of cwdcmd, and periodic does not remove the
2002    aliases.
2003 5. prompt2 and prompt3 fixes:
2004    Prompt2 now prints the status of the parser by default.
2005    Prompt3 can now have the standard prompt escape sequences.
2006 4. eval file descriptor re-direction fix.
2007    >set p='w | tail +3'
2008    >eval $p
2009    (originally | tail +3 was ignored)
2010 3. $edit != emacs anymore; it was misleading, 'set edit' enables editing
2011    'unset edit' disables it.
2012 2. PERROR define fix. 
2013 1. irix3.3.1 line discipline fix.
2014
2015V5.20.02, 12/15/90.
201632. /etc/Logout added and merged with /etc/Login flag.
201731. Fixed tty chars in ed.init.c. Some of them were not handled correctly.
201830. Command execution does not leak memory any more, and doing
2019    ~ four times does not core-dump.
202029. Fixed the notorious csh 'if(' bug (part of the convex fixes)
202128. Intelligent getwd() on startup, and canonicalization.
202227. Intelligent directory stack. Gets updated when $HOME changes.
202326. Directory stack/save-restore additions
202425. Convex Fixes.
202524. Fixed onlret, and echonl getting stuck on svid.
202623. Shouldn't leave tty in raw mode at auto-logout (e.g. when su'ing from a
2027    csh, this is annoying).
202822. Some users had environment EMACS set to something, and with my bad fix
2029    at pl 1 found that they didn't have echo... (of course, even before my
2030    "fix", they didn't have editing...). Anyway, refined the check to be
2031    for EMACS=t, which is what emacs sets when running a subshell.
203221. kill -CONT %job, would not update the status of the job, but it would
2033    just restart it.
203420. Sequent fixes.
203519. AIX370 signal and TCF fixes.
203618. fixed ls-F -l, SIGINT problem.
203717. aix on the ps2 does not have strcoll() either.
203816. Bind [A - [D and OA to OD in vi mode to the arrow key functions
2039    so that they work from insert mode.
204015. %~ was not working correctly for /home/news and /home/newsbin...
204114. Removed Rcs Log
204213. ISC unix fixes.
204312. sunos3.x wants <sys/dir.h> not <dirent.h>
204411. Remove precmd's, cwdcmd's and periodic cmds that had errors.
204510. Compile sunos4.1 using termio. 
2046 9. Rs6000 line discipline fixes. 
2047 8. T_Tabs was wrong for termio machines.
2048 7. Don't bind single keystroke arrow keys, when they are already bound!
2049 6. Test for newline and tab before deciding not to send shell scripts
2050    to the bourne shell.
2051 5. Added LITERAL prompt stuff.
2052 4. Fixed gethostname() in sh.rest.c to return the nodename.
2053 3. Do not quote spell checked stuff. This is not very intelligent but
2054    works better than before.
2055 2. Fixes for relative path components. (paths that start with a .)
2056 1. Fixed so that Rawmode() is not called when we are not editing
2057    (breaks running under emacs)
2058
2059V5.20.01, 11/15/90.
206012. Recognize environment variables too.
206111. Always start in Rawmode()
206210. don't try to execute binary files using the bourne shell.
2063 9. Vi change to end of line updates correctly now.
2064 8. Prompt in continuation lines.
2065 7. Prompt in if statements fix.
2066 6. System V ^C works right now.
2067 5. ^Z works correctly in bindings
2068 4. Better error messages for variables.
2069 3. dinit() now is more robust.
2070 2. Added aux2.0 patches.
2071 1. Fixed bug with arrow key bindings in ed.screen.c. All the keys
2072    were bound to up-history!
2073
2074V5.20.00, 11/10/90.
207526. Fixed system V and POSIX time reporting.
207625. Fixed ed.screen.c so that it does not use malloc().
207724. Fixed SIGWINCH on the iris
207823. Fixed ed.screen.c, so that settc works correcly. It used to set
2079    the termcap with a string that was allocated from the stack!
208022. Fixed listing of commands, where the last command was not checked.
208121. Fixed which command. It did not work for
2082    \<command>, if command was aliased.
208320. Eliminated CSH4.3 define. You've had enough time to upgrade from 4.2
208419. Fixed GotTermCaps to be called only once.
208518. Added bindkey -r
208617. Attributes were not getting reset correctly.
208716. history -t does not print the time-stamp.
208815. AddXkey, works now for single character xkeys.
208914. filetype() knows better about symlinks.
209013. ls-F works with filenames that have metachars
209112. Completion/spelling works with quoted things.
209211. Fixed refresh bug. Repeat by:
2093    On an intelligent terminal that has insert and delete chars (xterm)
2094    > orphan
2095    > vi orphan.c
2096    > ^P^P
209710. Fixed so that if we don't have a tty on stdin editing is disabled.
2098 9. Check for nested process forking, to avoid loops such as:
2099    > alias foo 'set bar=`foo`'
2100    > foo
2101 8. Fix setting of AsciiOnly (Per)
2102 7. tw.spell.c, defined F_OK for systems that don't have it.
2103 6. ourwait.h had typo in ifdef.
2104 5. BSD compilers need a cast to int for enums used in 
2105    switches (Matthew Day)
2106 4. Found the cause for the core-dump in long backquote 
2107    expansions (Mark Davies)
2108 3. Some externs in ed.h needed to be truly externs...
2109    reported by Mark Davies, bug appeared only on hp9000s800.
2110 2. Changed $tcsh, and $version strings.
2111 1. Added internal sprintf function, renamed putchar to CSHputchar,
2112    printf to CSHprintf, sprintf to CSHsprintf.
2113
2114V5.19.02, 10/23/90.
211536. Added /etc/cshrc for the SGI irises.
211635. Added expand-variables function.
211734. Documented $time in tcsh.man
211833. Shell variables are now 'recognized' when expanding/listing things.
211932. ls-F does not eat the last slash on the / directory!
212031. Strings bound to keys are printed inside double quotes.
212130. History now remembers the exact line, not just an unparsed version of
2122    the tokens.
212329. Renamed itoa to Itoa(), so things in libc that use itoa() don't break.
212428. Ported to IBM aix/ps2. 
212527. Fixed eval so that it forks when the output is piped
2126    Repeat by:
2127    > who | grep $user
2128    > eval who | grep $user
212926. Fixed so that 'nice <builtin changing the working directory>' does not
2130    nice or fork.
2131    Consider doing:
2132    nice cd /tmp && rm *.c (don't try it!!!)
2133    [what actually happens is that nice has to fork, then the child executes
2134     chdir, and the parent stays where it was]
213525. Added Dan's patches (nls, builtin bindkey, fixes to the editor).
213624. Added aix370, migrate, getspath, getspath, getxvers, setxvers
213723. Added builtin echotc, removed sl and el.
213822. Ported to 4.4 BSD. This involved changing the way lots of flags worked,
2139    cleanup of the SVID stuff, and addition of more compilation flags.
2140    Now POSIX can work whed BSD is defined...
214121. Fixed so that el, sl work. Actually they are to be removed soon and
2142    be replaced with echotc.
214320. Avoid the Quoted Space hack for alias when printing jobs!
2144    [aliases to the same name avoid further alias expansion, by 
2145     inserting a quoted space in front of the command. In SHORT_STRINGS
2146     QUOTE is the 15th bit so print ignores it thinking it is the
2147     end of the string. So we just skip the Quoted Space....]
2148    Repeat by:
2149    > set notify
2150    > alias ls ls -F
2151    > (ls) &
2152    Prints        Exit 0 (
2153    Should print: Exit 0 ( ls -F )
215419. Fixed so that "", '', ``, all produce ': Command not found',
2155    and not the spurious messages.
2156    Repeat by:
2157    > set path = (/bin /usr/bin .... .)
2158    > ""
2159    /some/path/name/: Command not found
216018. Enable the use of <ctype.h> macros if they exist and NLS is defined.
2161    NLS code is not ready yet.
216217. Fixed rmstar and continue_jobs code, so that they are not compile
2163    options, but shell variables. Now you need to 'set rmstar' to get
2164    enable rmstar.
216516. Fixed SIGWINCH, SIGWINDOW, and setting of li, co, that broke
2166    suntools, and others.
2167    Repeat by:
2168    Start a shelltool of size other than 80x34
2169    > telltc
2170    > stty -a
2171    do not report the same number of lines and columns.
217215. More fixes to tw.parse.c, and tw.spell.c.
217314. More fixes to sh.char.c.
217413. Fixed coredump caused by ``.
217512. Fixed spell-line code..
217611. Trapped SIGCHLD in sh.sem.c, while forking. Still there is a small
2177    race, but the probability of happening is smaller!
217810. Fixed sh.char.c to be ISO compliant.
2179 9. Added expand-glob
2180 8. Fixed ourwait.h for little endians.
2181 7. Fixed that foreach i (^D expands correctly.
2182 6. Fixed so that listmax is ignored in ls-F.
2183 5. Fixed spelling correction so that single letter words and words that
2184    contain globbing chars do not get spell checked.
2185 4. Changed NeXT HOSTTYPE to next, since all HOSTTYPE's are lower case.
2186 3. Fixed symmetry, and changed symmetry HOSTTYPE from sequent to symmetry.
2187 2. Added boldfacing, underlining chars.
2188 1. Added IRIX3.3.1 support.
2189
2190V5.19.01, 9/26/90.
2191 7. Brought the README file up-to-date, and changed the bug report
2192    address to point to me.
2193 6. sh.lex.c. In addla(), overflow computation was wrong.
2194 5. Fixed SHELLPATH, to be set correctly when $SHELL is not set.
2195 4. Fixed print statement in sh.proc.c that contained \215.
2196 3. Fixed the Makefile and MAKEDIFFS so that a tahoe diff can be made.
2197 2. RS6000: hacked around execv bug, and ed.init.c warning.
2198 1. Editor should not be enabled when we don't have a tty.
2199