aboutsummaryrefslogtreecommitdiffhomepage
path: root/parser.c
Commit message (Expand)AuthorAge
* Minor code polish for the validation codeGravatar axel2006-05-26
* Add validator check to make sure the second argument to 'for' is 'in'Gravatar axel2006-05-22
* Rewrite small amount of code in parameter expansion to use wide character str...Gravatar axel2006-05-22
* Major update to the ahead-of-time syntax checkerGravatar axel2006-05-22
* Minor cleanupGravatar axel2006-05-18
* Remove two minor memory leaksGravatar axel2006-05-15
* Fix bug that caused block level io redirection to break on while loopsGravatar axel2006-05-15
* Add a few NULL checks to the codebase to avoid crashes on minor bugsGravatar axel2006-05-10
* Make sure tokenization errors in eval_args doesn't cause fish to crash while ...Gravatar axel2006-05-10
* Tweaks to a few error messages (Thanks to Philip Ganchev)Gravatar axel2006-04-22
* Add more descriptive error messages when trying to use variables in command n...Gravatar axel2006-04-22
* If PATH is unset, use a default valueGravatar axel2006-04-21
* Do not return to the shell until all processes of a job have finished (Previo...Gravatar axel2006-04-04
* Make parser_is_block publicGravatar axel2006-03-30
* Add support for the -n switch to skip execution of any commandsGravatar axel2006-03-18
* Move all fallbacks for standard and not-so-standard unix functions to fallbac...Gravatar axel2006-02-28
* Protect against double-free of the process argument listGravatar axel2006-02-23
* Add some input validation code to various functionsGravatar axel2006-02-23
* API documentation, code style cleanup, etc.Gravatar axel2006-02-20
* Make fish continue parsing/executing a file if a command is not foundGravatar axel2006-02-20
* Minor edits, additional comments, etc.Gravatar axel2006-02-19
* Fix bug causing fish to occasionally reset line number for error reportingGravatar axel2006-02-19
* Fix bug in fish causing occasionally incorrect signal handlersGravatar axel2006-02-16
* Spelling fixes from HJBGravatar axel2006-02-14
* Change a few chars to be longGravatar axel2006-02-13
* Remova a few calls to free that are handled by halloc nowGravatar axel2006-02-13
* Optimize the halloc implementation so that mutiple calls to halloc can be sat...Gravatar axel2006-02-11
* Another halloc:ification of fish. Halloc has been extended to allow registeri...Gravatar axel2006-02-10
* Fix bug where recursive function loading crashed fishGravatar axel2006-02-09
* Fix crash bug caused by trying to free halloc:ed memoryGravatar axel2006-02-09
* Do not use CDPATH when completing arguments starting with a '.'Gravatar axel2006-02-09
* Fis function signature for a few functions in parser.cGravatar axel2006-02-08
* Autoloaded functionsGravatar axel2006-02-08
* Further halloc:ification if fishGravatar axel2006-02-07
* Second checkin of halloc changeover. Make the argv array, but not it's conten...Gravatar axel2006-02-07
* First checkin of transition to using a new hierarchical memory allocator, som...Gravatar axel2006-02-07
* Remove duplicate line counting code. Make the remaining implementation have a...Gravatar axel2006-02-05
* Minor tweaks, including a few small performance improvementsGravatar axel2006-02-04
* Remove some unneeded debug messagesGravatar axel2006-02-04
* Make sure completions aren't run in interactive modeGravatar axel2006-02-04
* Make children set their own process group instead of waiting for their parent...Gravatar axel2006-02-04
* Make stack traces print absolute filenamesGravatar axel2006-02-03
* Generalize the stack tracing code, add support for showing events and command...Gravatar axel2006-02-02
* Readd the terminal flag for jobs, as not all jobs under job control should be...Gravatar axel2006-02-01
* Improve the status builtinGravatar axel2006-01-31
* Rename the 'terminal' flag to 'job_control', make sure fg and bg only conside...Gravatar axel2006-01-31
* Add support for calculating completions for arbitrary commands through the 'c...Gravatar axel2006-01-31
* Display use of . (source) builtin in stack tracesGravatar axel2006-01-28
* Fix glitches in stack traceGravatar axel2006-01-27
* Small output string tweaksGravatar axel2006-01-27