summaryrefslogtreecommitdiffstats
path: root/bin/sh/parser.c
Commit message (Expand)AuthorAgeFilesLines
* wordexp: Rewrite to make WRDE_NOCMD reliable.jilles2015-09-301-0/+33
* sh: Allow empty << EOF markers.jilles2015-09-021-2/+8
* sh: Don't create bad parse result when postponing a bad substitution error.jilles2015-08-231-2/+3
* sh: Avoid negative character values from $'\Uffffffff' etc.jilles2015-08-201-5/+6
* sh: Prefer "" to nullstr where possible.jilles2015-02-151-1/+1
* sh: Prepend "$0: " to error messages if there is no command name.jilles2014-11-221-0/+2
* sh: Allow backslash-newline continuation in more places:jilles2014-10-191-32/+43
* sh: Make parseredir() a proper function instead of an emulated nestedjilles2014-10-151-59/+58
* sh: Remove more gotos.jilles2014-10-151-10/+7
* sh: Fix LINENO and prompt after $'\0 and newline.jilles2014-10-031-0/+7
* sh: Remove arbitrary length limit on << EOF markers.jilles2014-09-141-21/+17
* sh: Make checkend() a real function instead of an emulated nested function.jilles2014-09-141-36/+39
* sh: Add some const keywords.jilles2014-09-141-1/+1
* sh: Allow aliases to force alias substitution on the following word.jilles2014-01-261-0/+6
* sh: Simplify list() in the parser.jilles2013-08-301-21/+22
* sh: Separate out nbinary allocation into a function.jilles2013-08-301-21/+22
* sh: Use makename() where possible.jilles2013-08-301-22/+5
* sh: Add a function for the case where one token is required in the parse.jilles2013-08-301-31/+23
* sh: Cast -1 to pointer rather than pointer to variable of wrong type.jilles2013-08-301-1/+1
* sh: Disallow empty simple commands.jilles2013-08-251-8/+4
* sh: Remove unnecessary reset functions.jilles2013-08-161-8/+1
* sh: Allow a lone redirection before '|', ';;' or ';&'.jilles2013-08-141-0/+3
* sh: Remove an incorrect comment.jilles2013-07-251-1/+1
* sh: Remove #define MKINIT.jilles2013-07-251-2/+2
* sh: Remove mkinit.jilles2013-07-251-4/+4
* sh: Fix various compiler warnings.jilles2013-04-011-5/+6
* sh: Fix crash when parsing '{ } &'.jilles2013-01-131-2/+2
* sh: Don't lose $? when backquoted command ends with semicolon or newline.jilles2013-01-131-1/+2
* sh: Remove special support for background simple commands.jilles2011-06-181-3/+2
* sh: Add case statement fallthrough (with ';&' instead of ';;').jilles2011-06-171-4/+10
* sh: Do parameter expansion before printing PS4 (set -x).jilles2011-06-091-0/+44
* sh: Expand aliases after assignments and redirections.jilles2011-05-211-0/+22
* sh: Allow terminating a heredoc with a terminator at EOF without a newline.jilles2011-05-201-3/+5
* sh: Add \u/\U support (in $'...') for UTF-8.jilles2011-05-081-0/+23
* sh: Add $'quoting' (C-style escape sequences).jilles2011-05-051-6/+139
* sh: Detect an error for ${#var<GARBAGE>}.jilles2011-05-041-0/+2
* sh: Do not word split "${#parameter}".jilles2011-04-201-2/+2
* sh: Fix some parameter expansion variants ${#...}.jilles2011-03-131-19/+30
* sh: Fix two things about {(...)} <redir:jilles2011-02-051-1/+4
* sh: Allow arbitrary large numbers in CHECKSTRSPACE.jilles2010-12-261-2/+1
* Remove duplicate check, turning dead code into live code.uqs2010-12-131-2/+0
* sh: Code size optimizations to "stack string" memory allocation:jilles2010-11-231-7/+6
* sh: Fix some issues with aliases and case, by importing dash checkkwd code.jilles2010-11-021-50/+49
* sh: Use iteration instead of recursion to evaluate semicolon lists.jilles2010-10-311-10/+17
* sh: Tweak some string constants to reduce code size.jilles2010-10-291-1/+1
* sh: Reject function names ending in one of !%*+-=?@}~jilles2010-10-291-1/+5
* sh: Detect various additional errors in the parser.jilles2010-10-291-3/+3
* sh: Error out on various specials/keywords in the wrong place in backticks.jilles2010-10-291-16/+16
* sh: Do IFS splitting on word in ${v+word} and ${v-word}.jilles2010-10-291-4/+12
* sh: Only accept a '}' inside ${v+-=?...} if double-quote state matches.jilles2010-10-281-4/+4
OpenPOWER on IntegriCloud