summaryrefslogtreecommitdiff
path: root/Src
AgeCommit message (Collapse)AuthorFilesLines
2001-11-2816269: Fix crash on reserved-word completion.Bart Schaefer1-1/+1
2001-11-2116249: Clear here-documents on parse error.Bart Schaefer1-3/+22
2001-11-15Add Mandrake completion directory to installChmouel Boudjnah1-1/+1
2001-11-1516241: new rand48(param) math functionPeter Stephenson1-0/+106
2001-11-0916228: allow widths and precisions to work with printf's %b format specifierOliver Kiddle1-19/+27
2001-11-0616224: add -n option to kill and complete options from _killOliver Kiddle1-14/+25
2001-11-0316094: zopenmax() need only return the highest-numbered open descriptorBart Schaefer1-5/+25
2001-11-0316201: introduce the PM_NAMEDDIR flagBart Schaefer2-1/+6
2001-11-0316158: interpret TAB as "yes" only in spckword()Bart Schaefer1-3/+4
16201: introduce the PM_NAMEDDIR flag
2001-11-0316215: save and restore mult_isarr in singsub()Bart Schaefer1-0/+2
2001-11-0216198: add %j prompt expansion and j test character for no. of jobs in promptOliver Kiddle1-1/+16
2001-11-0116197: `limit' accepts `unlimited'.Bart Schaefer1-8/+14
2001-10-26Improved readhistline() to reject binary data better. (16184)Wayne Davison1-15/+18
2001-10-2616176: Src/Modules/tcp.c, Src/Modules/zftp.c: after fdclose(),Peter Stephenson2-6/+15
TCP control fd is no longer valid, but we still need to remove the session cleanly.
2001-10-2616172: freehostent -> zfreehostent to avoid name clashPeter Stephenson2-4/+4
2001-10-2615793: Src/Modules/zftp.c: require zsh/net/tcp explicitly.Peter Stephenson1-1/+2
15171: Doc/Zsh/zftpsys.yo: minor changes of phrasing
2001-10-2516145: try to handle identical RLIMIT_RSS and RLIMIT_VMEM better.Peter Stephenson1-7/+7
2001-10-2416063: add transientrprompt option to remove right prompt fromGeoff Wing4-8/+34
display when accepting commands
2001-10-23Fix infinite loop on `case' with xtrace.Bart Schaefer1-3/+2
2001-10-23zero %n value when reusing printf format (16122)Oliver Kiddle1-1/+2
2001-10-22Pavel Roskin <proski@gnu.org>: compilation for QNXPeter Stephenson1-0/+6
2001-10-22Report error on setting a limit to a string that os not a decimal number.Bart Schaefer1-41/+106
2001-10-20Fix segfault in checkrmall().Bart Schaefer1-0/+2
2001-10-18allow arguments to be specified in printf format specifications (16080)Oliver Kiddle1-37/+97
2001-10-16fix return code and tests of printf and comment above bslashquote func (16064)Oliver Kiddle2-4/+15
2001-10-1616062: use O_EXCL when opening a temporary file.Clint Adams1-1/+1
2001-10-15Fix HIST_NO_SPACE when INTERACTIVE_COMMENTS is set and we get aWayne Davison1-3/+3
comment.
2001-10-15use arithmetic evaluation for numeric arguments to printf (16042)Oliver Kiddle1-52/+77
2001-10-15for caching of compiled patterns: remember that singsub() might modify the ↵Sven Wischnowsky2-3/+3
string it gets, compare with unmodified string (16041)
2001-10-14Remove <arpa/telnet.h> from tcp.c.Bart Schaefer1-14/+16
2001-10-13Save/restore state around DEBUG trap call.Bart Schaefer1-2/+9
2001-10-09hide all but one match with the same string in the list even for unsorted ↵Sven Wischnowsky1-0/+13
groups (15991)
2001-10-08remove duplicated includes which caused problems on IRIX 5 (15987)Oliver Kiddle1-16/+0
2001-10-08add print -f option, %n format specifier and tests for print/printf (15973)Oliver Kiddle2-81/+91
2001-10-0815931: EXIT traps from exit in subshell; 15965: glob -> zglobPeter Stephenson4-4/+13
2001-10-0815964: use SOCKLEN_TAndrey Borzenkov1-1/+2
2001-10-05add printf builtin (15851, 15948)Oliver Kiddle1-0/+174
2001-10-05fix calculation of number of columns needed with list_packed (15946)Sven Wischnowsky1-1/+4
2001-10-0215919: use LinkLists in place of somewhat equivalent codeClint Adams3-72/+123
2001-09-28Zftp control connection management cleanup.Bart Schaefer1-19/+27
2001-09-2715886: use select if poll is not available, or complain if neither are availableClint Adams1-2/+25
2001-09-25Equivalence of $(...) and `...` in ${(e)...}.Bart Schaefer1-5/+8
2001-09-2515869Sven Wischnowsky1-3/+4
2001-09-25job text building code couldn't handle empty sublists (as in `coproc || ↵Sven Wischnowsky1-2/+4
test') (15868)
2001-09-24Fix out-of-memory on corrupt history files.Bart Schaefer1-25/+35
2001-09-24* Src/builtin.c, Src/exec.c: Unwind function calls before exitingPeter Stephenson2-9/+45
shell from exit command to allow EXIT traps to run.
2001-09-20Fix misleading error message.Bart Schaefer1-1/+1
2001-09-18Further modify the "fc -l" code to tolerate out-of range values.Wayne Davison1-9/+6
2001-09-17Fixed doisearch() to not switch lines unless zlereadflags hasWayne Davison1-1/+2
ZLRF_HISTORY set.
2001-09-15With HIST_NO_STORE, don't ignore what looks like a history command ifWayne Davison1-5/+11
we're really going to call a user-defined shell function.