SHA256
1
0
forked from pool/tcsh
2011-11-17 10:34:10 +00:00
committed by Git OBS Bridge
parent 02ddb26d49
commit fdcb383258
20 changed files with 704 additions and 1417 deletions

View File

@@ -1,3 +1,64 @@
-------------------------------------------------------------------
Thu Nov 17 08:44:05 UTC 2011 - werner@suse.de
- Split off tcsh-lang as its own package
- Make language catalogs work that is use tcsh instead of tcsh.cat
as this is the system default
-------------------------------------------------------------------
Wed Nov 16 14:21:12 UTC 2011 - werner@suse.de
- Update to tcsh minor version V6.17.06
* PR/110: Add $anyerror to select behavior. Default to the new one.
* Don't try to spell commands that are correct (Rouben Rostamian)
[./tcsh -f; set path=($path 2); mkdir foo2; cd foo2; touch foo;
chmod +x foo; set correct=cmd; ./foo -> ../foo]
* Don't push the syntax struct on the cleanup stack, because on foo;bar
if foo fails, we will free bar prematurely (Ben Miller)
* Avoid infinite loop while trying to print the pid of a dying process
to a closed file (Bob Arendt)
* Handle completion of ${ variables (Anthony Mallet)
* Add --disable-nls-catalogs (Corinna Vinschen)
* convert message catalogs to UTF-8 (Werner Fink)
* check that the NLS path works before setting $NLSPATH.
* use SYSMALLOC for GLIBC (Werner Fink)
* use mallinfo for SYSMALLOC (Corinna Vinschen)
* Use mkstemp() if there for here docs (Werner Fink)
* Fix handling of errors and exit values in builtins (Werner Fink)
* Better pty name detection (Werner Fink)
* Enable NLS catalogs on Cygwin (Corinna Vinschen)
* NLSPATH handling fixes (Corinna Vinschen)
* Avoid infrequent exit when tcsh cd's into a non-existent directory
https://bugzilla.novell.com/show_bug.cgi?id=293395 (Werner Fink)
* Don't try to spell check full path binaries that are correct because
they can cause hangs when other nfs partitions are hung. (Werner Fink)
* Avoid nested interrupts when exiting causing history writing to fail
https://bugzilla.novell.com/show_bug.cgi?id=331627 (Werner Fink)
* Instead of giving an error or ignoring lines with missing eol at eof,
process them.
* Avoid leaking fd's in mail check (Werner Fink)
* Recognize i686 (Corinna Vinschen)
* Avoid double slashes in cdpath (Corinna Vinschen)
* PR/102: Complain on input files with missing trailing \n
* PR/104: If atime == mtime we don't have new mail.
* PR/113: Don't allow illegal variable names to be set.
* PR/112: don't set $REMOTEHOST on the local machine.
* Add AUTOSET_KANJI which works around the Shift-JIS encoding that
translates unshifted 7 bit ASCII (Werner Fink)
* Handle mb{r,}towc() returning 0 by setting the return value to NUL
(Jean-Luc Leger)
* PR/109: make wait interruptible (Vojtech Vitek)
* resource limit fixes: signed vs. unsigned, megabyte issue, doc issues
(Robert Byrnes)
* Don't echo history while history -L or history -M
* Check for EOS before ** from Greg Dionne
* Don't fork in backeval from Bryan Mason
* Better globstar support from Greg Dionne
* Error out when processing the last incomplete line instead of silently
ignoring it (Anders Kaseorg)
* Fix SEGV from echo ``
* Better fixes for histchars and promptchars (nargs)
-------------------------------------------------------------------
Wed Nov 16 11:12:23 UTC 2011 - werner@suse.de