aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* apply post-1.18.0 patches, bump version to 1.18.11_18_1Denys Vlasenko2010-12-211-21/+24
* fixes for bugs discovered by randomconfig builds and testsDenys Vlasenko2010-11-221-2/+4
* hush: fix improper handling of newline and hash chars in few corner casesDenys Vlasenko2010-11-221-123/+130
* hush: add support for "set -o pipefail"Denys Vlasenko2010-11-141-23/+101
* hush: preparatory patch for set -o pipefail supportDenys Vlasenko2010-11-141-4/+5
* *: whitespace fixesDenys Vlasenko2010-10-281-2/+2
* hush: remove "doesn't support brace expansion" from config help textDenys Vlasenko2010-10-041-2/+2
* hush: remove brace expansion from TODO list in comments. No code changes.Denys Vlasenko2010-10-031-4/+5
* hush: small code shrinkDenys Vlasenko2010-10-031-2/+6
* hush: implement brace expansionDenys Vlasenko2010-10-031-5/+20
* hush: preparatory patch, no code changesDenys Vlasenko2010-10-031-25/+26
* hush: use smaller EXP_FLAG_foo constantsDenys Vlasenko2010-09-211-11/+11
* hush: move shell_ver from globals to main's stack.Denys Vlasenko2010-09-161-8/+9
* shell/math: deconvolute and explain ?: handling. Give better error messageDenys Vlasenko2010-09-161-2/+2
* shell/math: return string error indicator, not integerDenys Vlasenko2010-09-151-25/+15
* shell/math.c: rename arith_eval_hooks to arith_state, put error code into itDenys Vlasenko2010-09-131-5/+6
* shell: shrink arith code; and prepare for returning text error codesDenys Vlasenko2010-09-131-4/+4
* hush: optional support for history savingDenys Vlasenko2010-09-121-0/+20
* hush: move the EXIT trap comment. no code changesDenys Vlasenko2010-09-121-2/+3
* hush: fix EXIT trap display inside exit trap handlerDenys Vlasenko2010-09-121-4/+4
* hush: fix handling of \" in quoted/unquoted `cmd`Denys Vlasenko2010-09-121-19/+29
* hush: remove forgotten commented-out block. no code changesDenys Vlasenko2010-09-101-4/+0
* hush: do fewer strdups in % and hash expansionsDenys Vlasenko2010-09-101-13/+16
* hush: better function and parameter namesDenys Vlasenko2010-09-101-20/+55
* hush: fix var_bash5.tests failureDenys Vlasenko2010-09-101-20/+23
* hush: fix var_bash3.tests failureDenys Vlasenko2010-09-101-13/+15
* hush: remove useless ESC_GLOB_CHARS clears/resotresDenys Vlasenko2010-09-101-15/+4
* hush: fix a bug where expand_one_var wasn't restoring 1st char of the encoded...Denys Vlasenko2010-09-091-17/+27
* hush: make parse_dollar flag quited status regardless of glob escaping statusDenys Vlasenko2010-09-091-8/+9
* hush: simplification in parse_stream, parse_stream_dquotedDenys Vlasenko2010-09-091-14/+14
* hush: simplify parse_stream_dquotedDenys Vlasenko2010-09-091-16/+6
* hush: straighten out the logic in parse_streamDenys Vlasenko2010-09-091-17/+10
* hush: eliminate redundant parameter of expand_vars_to_list()Denys Vlasenko2010-09-081-10/+12
* hush: replace flag bytes in struct o_string with bit flagsDenys Vlasenko2010-09-081-36/+40
* hush: remove unused enum typedefDenys Vlasenko2010-09-081-3/+3
* hush: fix set -- q w e; (IFS='' echo "$*"; IFS=''; echo "$*"); echo "$*"Denys Vlasenko2010-09-081-26/+39
* shell: unify endofname() in hush and ashDenys Vlasenko2010-09-071-19/+1
* hush: a few relatively trivial simplificationsDenys Vlasenko2010-09-071-58/+53
* hush: style cleanups. no code changesDenys Vlasenko2010-09-071-18/+16
* hush: revert a recent buggy change which resulted in two HUSH_VERSIONsDenys Vlasenko2010-09-061-6/+5
* fix typo in commentDenys Vlasenko2010-09-061-1/+1
* hush: fix another corner case with backslashes in heredocsDenys Vlasenko2010-09-061-2/+8
* hush: fix backslash and terminator handling in <<[-]["]heredoc["]Denys Vlasenko2010-09-061-5/+11
* hush: fix globbing+backslashes in unquoted $var expansionDenys Vlasenko2010-09-061-73/+61
* hush: remove disabled CMD_SINGLEWORD_NOGLOB_COND, rename o_glob->perform_globDenys Vlasenko2010-09-061-11/+1
* shell: remove lash and bbshDenys Vlasenko2010-09-061-19/+0
* hush: big reordering: move parser functions to the beginning. no code changesDenys Vlasenko2010-09-051-2042/+2042
* hush: rename o_quoted to has_quoted_part; small code shrinkDenys Vlasenko2010-09-051-26/+33
* hush: move variable expansion into a separate function. No logic changesDenys Vlasenko2010-09-051-249/+264
* hush: add support for ${var/pattern/repl}, conditional on bash compatDenys Vlasenko2010-09-051-29/+150