summaryrefslogtreecommitdiff
path: root/Src/builtin.c
AgeCommit message (Collapse)AuthorFilesLines
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
2003-02-1318223: satisfy POSIX requirement for a -v flag to unsetOliver Kiddle1-1/+1
2003-02-0718204: KSH_ARRAYSPeter Stephenson1-19/+28
2003-02-0518195: Timeouts for read builtin.Peter Stephenson1-10/+24
2002-12-1818013: Handle test of (( float == 0.0)) properlyPeter Stephenson1-3/+4
2002-12-1117996: better formatting for print -CPeter Stephenson1-15/+43
2002-11-2017940: Add -C and -a options to print builtinPeter Stephenson1-16/+58
2002-10-31- Save off the raw start-time of the $SECONDS special variable if we'reWayne Davison1-2/+8
creating a local value (avoids rounding problems with elapsed time). - Also changed a line where the newspecial enum was compared to 0 instead of NS_NONE.
2002-10-2917872: Fix `typeset SECONDS' when creating local parameterPeter Stephenson1-3/+22
2002-10-2917868: Allow $SECONDS to become floating point.Peter Stephenson1-9/+39
2002-10-1017794: fix bugs with tied parametersOliver Kiddle1-0/+5
2002-09-1917692: Prevent typeset of a positional parameter before it can do damage,Bart Schaefer1-2/+5
and improve the error message about it.
2002-09-1617678: ignore initial `--' argument to printf to satisfy POSIXOliver Kiddle1-3/+7
2002-09-0317608: comment on use and abuse of BINF_SKIPINVALIDPeter Stephenson1-1/+9
2002-09-0317602, 17603: Rationalise option handling, in particular for cd, pushd, popd.Peter Stephenson1-161/+150
2002-08-2717582: Improved option argument handling.Peter Stephenson1-308/+418
unposted: Updated version to 4.1.0-dev-6 because of interface change.
2002-08-2217544: implement read -s to suppress tty echoPeter Stephenson1-3/+26
2002-08-0517503: fix various typos and spelling mistakes in source code commentsOliver Kiddle1-6/+6
2002-08-0117497: getopts skipped over zero-length arguments.Peter Stephenson1-0/+2
2002-08-01Dan Nelson: 17492: Quote output from xtracePeter Stephenson1-4/+8
2002-07-2917485?: Incorrect test for TYPESET_SILENTPeter Stephenson1-1/+1
2002-06-2017334: TYPESET_SILENT shell option and typeset -p optionPeter Stephenson1-21/+38
2002-06-0717299: Use reference counts in Eprogs so as to be able to free them as soonPeter Stephenson1-0/+1
as finished with.
2002-06-0517292: shut up compiler if no OPEN_MEMSTREAMPeter Stephenson1-1/+4
2002-03-24Got rid of unused-variable compiler warning.Wayne Davison1-2/+2
2002-03-1916862: allow print's -s and -z options to be used with -fOliver Kiddle1-59/+99
2002-03-0416759: Src/builtin.c: from Eric Norum <eric.norum@usask.ca>:Peter Stephenson1-5/+7
cd prints output whenever the target directory is not obvious to the user. This confuses scripts, so restrict it to interactive mode.