aboutsummaryrefslogtreecommitdiffhomepage
path: root/builtin.c
Commit message (Expand)AuthorAge
* Fix bug in read builtin - signal handlers where not correctly set, causiong ^...Gravatar axel2007-02-01
* Fix occasional duplicate stack trace, reported by Mike Roberts. Also make fis...Gravatar axel2007-02-01
* Add support for -s switch to read builtin, enables shell syntax highlighting ...Gravatar axel2007-01-30
* Drop unneeded generic descriptions for completion of functions and builtins. ...Gravatar axel2007-01-27
* Make all error messages from options parsin in builtins redirectableGravatar axel2007-01-22
* Make sure read returns with a non-zero status if no string was actually givenGravatar axel2007-01-16
* Fix typo in user message, remove a few warnings, minor indentation editsGravatar axel2007-01-09
* Make the bg builtin check that all specified jobs exist before sending any of...Gravatar axel2007-01-09
* Two very minor code touch upsGravatar axel2007-01-08
* Allow the user to specify name of history file to use with the read builtinGravatar axel2007-01-07
* Code cleanup: Use a macro constant instead fo a literal for builtin exit codesGravatar axel2006-12-14
* Update functions builtin so that default behaviour when not given any argumen...Gravatar axel2006-12-14
* Update documentation display code to run roff on the client system instead of...Gravatar axel2006-11-18
* Add a bugreport function for writing out a message about how to file bug reportsGravatar axel2006-11-18
* Minor editsGravatar axel2006-10-29
* Make the fish manpage in Doxygen and add it to the main fish documentationGravatar axel2006-10-26
* Use bitset to implement flags for jobs instead of wasting a whole int for eve...Gravatar axel2006-10-26
* If the builtin help won't fit on-screen, and it can't be shortened, don't pri...Gravatar axel2006-10-26
* Remove the --key-binding switch for fishGravatar axel2006-10-26
* Drop switch for saving of functions to file from the function builtinGravatar axel2006-10-25
* Make any character except '/' legal in function namesGravatar axel2006-10-20
* Minor code fixesGravatar axel2006-10-20
* First stab at directory transition. Test with care...Gravatar axel2006-10-19
* Be more rigorous with the exit codes set by the parser and builtinsGravatar axel2006-10-09
* Drop the optional checking of block type for the end builtinGravatar axel2006-10-05
* Minor code cleanupGravatar axel2006-10-05
* Add the possibility to set the cursor position using the commandline builtinGravatar axel2006-10-05
* Minor tweaks to code validation for the for builtin (again)Gravatar axel2006-10-02
* Add syntax check to see that the for builtin is not given an insufficient num...Gravatar axel2006-09-26
* Fix bug in for that causes crash on syntax errorGravatar axel2006-09-20
* Minor bugfix in the switch parsing for the status builitnGravatar axel2006-09-20
* Make it possible to save a function when defining it using the -S switchGravatar axel2006-09-09
* Optionally add type of block to the end builtin to verify block nesting corre...Gravatar axel2006-09-06
* Fix bug where using the return builtin inside an if-block could cause the els...Gravatar axel2006-09-01
* Minor code tweaks, mostly things like indentation, but also a ferw code reord...Gravatar axel2006-08-28
* Rearrange includes so that config.h is always the first file to be includedGravatar axel2006-08-11
* Use the new array_list functions in builtin.cGravatar axel2006-08-01
* Remove translate.c. The gettext fallback functionality is moved to fallback.c...Gravatar axel2006-07-20
* Add -q/--query switch to the functions builtin. Works just like the same swit...Gravatar axel2006-07-13
* The begin builtin should not alter the exit statusGravatar axel2006-07-13
* Switch from die_mem function to DIE_MEM macro in order to be able to give a l...Gravatar axel2006-07-03
* Update input validation. Always use the magic CHECK macro, which prints an er...Gravatar axel2006-06-21
* Various code polish, including minor rearangement of builtin code to export f...Gravatar axel2006-06-21
* Documentation updates. Fixes a few formating bugs, adds various minor missing...Gravatar axel2006-06-17
* Give the 'random' builtin it's own seed state, to keep other users of random ...Gravatar axel2006-06-15
* Major restructuring of the buildsystem, meaning that the documentation doesn'...Gravatar axel2006-06-13
* Do not change status when the 'exit' builtin is called with no argumentGravatar axel2006-06-13
* Do not change status when the 'return' builtin is called with no argumentGravatar axel2006-06-13
* Use halloc in a few more places, including the highlight codeGravatar axel2006-06-13
* Minor code edits - add a few braces, a few minor safety checks, etc.Gravatar axel2006-06-09