aboutsummaryrefslogtreecommitdiffhomepage
path: root/exec.c
Commit message (Expand)AuthorAge
* Allow named arguments to function instead of only $argv. Philip Ganchev once ...Gravatar axel2007-04-17
* Fix a bug where io redirection of builtins would not truncate files if the bu...Gravatar axel2007-03-25
* Do not use stdout to report errors when stderr is dead - take the hint instea...Gravatar axel2007-01-22
* Use constant instead of hardcoded value for sleeptime on failed fork callGravatar axel2007-01-22
* Minor code simplification in exec.cGravatar axel2007-01-22
* Print stack trace when execting due to fatal problem or bugGravatar axel2007-01-22
* Minor code edits. Add curly brackets in various places, add or rewrite variou...Gravatar axel2007-01-22
* Check error code when writing output from builtins - try to report errorsGravatar axel2007-01-22
* Make it possible to buffer input to other file descriptors than stdin. It is ...Gravatar axel2007-01-08
* Make sure errno is not changed when error reporting after a failed call to ex...Gravatar axel2007-01-08
* Fix bug in IO redirection making is possible for the IO redirections to fail ...Gravatar axel2007-01-08
* Update to the ':' patch by Nicholas Burlett. This patch makes sure that ':' s...Gravatar axel2006-12-12
* colon-command supportGravatar nickburlett2006-12-09
* Update documentation display code to run roff on the client system instead of...Gravatar axel2006-11-18
* A few additional input checks, minor code simplifications, and some indentati...Gravatar axel2006-11-15
* Remove getpgid prototype from exec.c - this prototype seems to be no longer m...Gravatar axel2006-11-15
* Use fcntl to automatically close fishd socken on exec instead of handling it ...Gravatar axel2006-11-15
* Fix file descriptor leakage from completion pagerGravatar axel2006-11-12
* Make sure signals aren't blocked while autoloading, also add a few consistenc...Gravatar axel2006-10-30
* Change the way the umask is used so that executable bits are ignored on file ...Gravatar axel2006-10-27
* Use bitset to implement flags for jobs instead of wasting a whole int for eve...Gravatar axel2006-10-26
* Fix a number of bugs found using the warnings generated by earlier patchGravatar axel2006-10-20
* Be more rigorous with the exit codes set by the parser and builtinsGravatar axel2006-10-09
* Make it possible to save a function when defining it using the -S switchGravatar axel2006-09-09
* Fix bug reportad by Martin Bähr that causes fish fail when using blocks in p...Gravatar axel2006-08-27
* Minor tweaks to previous fish_pager patch to fix two bugsGravatar axel2006-08-22
* Add support for buffering of input to a command, the first step to piping dat...Gravatar axel2006-08-13
* Rearrange includes so that config.h is always the first file to be includedGravatar axel2006-08-11
* Use the new array_list functions in exec.cGravatar axel2006-08-01
* Include siginfo.h in all signal-using files to make Solaris happy. Thanks to ...Gravatar axel2006-07-31
* Remove translate.c. The gettext fallback functionality is moved to fallback.c...Gravatar axel2006-07-20
* Switch from die_mem function to DIE_MEM macro in order to be able to give a l...Gravatar axel2006-07-03
* Check exit status of close and fclose in a few extra placesGravatar axel2006-06-21
* Update input validation. Always use the magic CHECK macro, which prints an er...Gravatar axel2006-06-21
* Add more function input validation checksGravatar axel2006-06-09
* Minor code tweaks, including making sure builtins are not run if an io redire...Gravatar axel2006-06-04
* Minor cleanupGravatar axel2006-05-18
* Fix bug that caused block level io redirection to break on while loopsGravatar axel2006-05-15
* Do not return to the shell until all processes of a job have finished (Previo...Gravatar axel2006-04-04
* 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
* Add some input validation code to various functionsGravatar axel2006-02-23
* A flag got reversed, causing children to execute even if an IO redirection fa...Gravatar axel2006-02-20
* Add support for sending arguments whenusing the source builtinGravatar axel2006-02-15
* Another halloc:ification of fish. Halloc has been extended to allow registeri...Gravatar axel2006-02-10
* 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
* Make execution of functions use wcsdup to make sure no memory errors happen i...Gravatar axel2006-02-06
* Tweaks to some source commentsGravatar axel2006-02-05