summaryrefslogtreecommitdiff
path: root/Src/builtin.c
AgeCommit message (Collapse)AuthorFilesLines
2005-08-10Make printf %s handle an embedded null (21579).Wayne Davison1-7/+10
2005-08-0921581: Thorsten Dahlheimer: Src/builtin.c: fixed error outputWayne Davison1-5/+12
for unknown signal names when using "trap -".
2005-08-08Fixed a recently-introduced bug where printf %b with an empty argWayne Davison1-1/+1
would output a single space instead of nothing.
2005-08-01Silenced a compiler warning about a variable that might be usedWayne Davison1-1/+1
unassigned.
2005-08-0121552: Thorsten Dahlheimer: various fixes to print builtinPeter Stephenson1-31/+40
2005-07-26Fixed bin_print() to handle \c escapes as per POSIX (truncating theWayne Davison1-5/+16
output at the \c). (Based on a patch by Thorsten Dahlheimer.)
2005-06-1721352: Harald van Dijk: handle null after % in printf format specifierOliver Kiddle1-1/+1
2005-06-01unposted: need const for result of getsigname()Peter Stephenson1-1/+1
2005-06-0121296: Add ERR alias for ZERR where possible.Peter Stephenson1-3/+15
"trap" reports alias names.
2005-04-25Fix handling of metafied characters in trailing whitespace on readPeter Stephenson1-2/+11
2005-03-0920955: "unset foo" should return status 0 if foo was not setPeter Stephenson1-1/+5
2005-02-06fix autoloaded trap bug; rejig use of trapfuncsPeter Stephenson1-6/+4
(now traplists); improve trap tests
2005-01-14c.f. 20675: improve zle as a basis for Unicode.Peter Stephenson1-1/+1
unposted: update version to 4.2.3-dev-1
2004-12-0720605: Use separate structure with get/set/unset methods fro parameters.Peter Stephenson1-58/+113
Separate justification width of parameters from base/precision.
2004-11-2220572: Allow alternative signal namesPeter Stephenson1-6/+12
2004-10-21Use the new gettempfile() function.Wayne Davison1-6/+4
2004-10-18- Fixed an unsafe use of gettempname().Wayne Davison1-3/+5
- Call gettempname() with its new args.
2004-10-0520412, tweaked: Make test builtin more POSIX compatiblePeter Stephenson1-1/+1
20435: Make pattern.c not alter strings.
2004-10-01- Call saveandpophiststack() with its new writeflags arg.Wayne Davison1-3/+6
- Use the new HFILE_NO_REWRITE flag when saving the history file after a signal was received.
2004-10-01Use convbase() instead of a "%d" format to convert a zlong.Wayne Davison1-3/+5
2004-09-0920331: Use internal zlong variables for consistencyPeter Stephenson1-10/+15
20332: Add WIDGETSTYLE zle parameter
2004-09-0820320: rewrite of 20318, for sanity.Bart Schaefer1-12/+9
2004-09-0420318: Fix xtrace output bug introduced by 20308.Bart Schaefer1-4/+5
2004-09-0320308: add EVAL_LINENO optionPeter Stephenson1-3/+18
2004-07-0720141: Crash restoring exported special parametersPeter Stephenson1-18/+11
2004-06-02Marked unused parameters with the new UNUSED() macro.Wayne Davison1-23/+23
2004-05-21- Added the -a option to "fc" and "history".Wayne Davison1-4/+5
- Call saveandpophiststack() using the newest calling syntax.
2004-05-20- Added the -p (push) and -P (pop) options to the "fc" builtin.Wayne Davison1-4/+42
- Allow -p/-P to be given to "history". - On exit, save & pop any pushed history stacks before we call the normal savehistfile() function.
2004-04-2319810: ksh autoloadingPeter Stephenson1-8/+6
19812: autoloaded traps which are still buggy.
2004-04-2019801: implement autoloading of trap functionsPeter Stephenson1-3/+21
2004-04-2019767, 19785: store flags for -z and -k options to autoload allowing theOliver Kiddle1-7/+9
completion system to be used with ksh_autoload set
2004-04-2019767, 19785: store flags for -z and -k options to autoload allowing theOliver Kiddle1-1/+8
completion system to be used with ksh_autoload set
2004-04-06Peter Castro: Cygwin improvements for dynamic libraries, text/binary, pathsPeter Stephenson1-0/+10
2004-03-1619140: release process group on exit if acquiredPeter Stephenson1-0/+3
2004-03-0719549: correct buffer size for printf specOliver Kiddle1-1/+1
2004-01-1219361: Memory leaksPeter Stephenson1-0/+8
2004-01-05Changed bin_eval() to default lastval to 0, just in case we have anWayne Davison1-0/+1
empty eval string.
2003-11-1319242: Make job table dynamically reallocatable.Peter Stephenson1-2/+2
2003-10-29a la 19209: zcalloc -> zshcallocPeter Stephenson1-4/+4
2003-09-25Fix the old-style typeset -T (without the new separator arg).Wayne Davison1-1/+1
2003-09-2419129: extra argument to typeset -T gives character for joining arrayPeter Stephenson1-9/+32
2003-09-1119059: add -v, -V and -p flags required by POSIX to the command builtinOliver Kiddle1-2/+15
2003-09-0319014: add alias -s suf=handlerPeter Stephenson1-21/+51
2003-07-0918836: read with metafied delimiter didn't work.Peter Stephenson1-1/+2
2003-05-2418578: 18559 caused typeset failuresPeter Stephenson1-3/+3
2003-05-1518530: print option states with `set -o' or `set +o'Oliver Kiddle1-2/+2
2003-04-0418435: unsetting readonly returned status 0Peter Stephenson1-2/+4
2003-03-28Prevent "print -m" from crashing (complains about missing pattern).Wayne Davison1-1/+5
2003-03-2618392: read with -p and -t and no coprocess crashed.Peter Stephenson1-1/+2
2003-02-1718242: add -d option to read for specifying delimiter to terminate inputOliver Kiddle1-10/+29