aboutsummaryrefslogtreecommitdiffhomepage
path: root/common.c
Commit message (Expand)AuthorAge
* Add missing file creation mask for open. This fixes a compilation bug on the ...Gravatar liljencrantz2007-08-15
* Minor code edits (comments, function rename)Gravatar axel2007-04-21
* Do not call getc if getwc fails - mixing wide and byte-based readin may cause...Gravatar axel2007-01-27
* Fix crash in tab completion code when completing an imcomplete backsalsh escapeGravatar axel2007-01-27
* Print stack trace when execting due to fatal problem or bugGravatar axel2007-01-22
* Add support for backtraces - if the compiler and libc version supports it (pr...Gravatar axel2007-01-20
* Make command specific completions handle quoted and otherwise escaped tokens ...Gravatar axel2007-01-19
* Fix bug in code for unescapiong strings - when not in unescape_special mode, ...Gravatar axel2007-01-19
* Handle out of memory condition in various parts of fish by shutting down inst...Gravatar axel2007-01-09
* Make sure debug() never alters errno, so that it can safely be called between...Gravatar axel2006-12-14
* Add a bugreport function for writing out a message about how to file bug reportsGravatar axel2006-11-18
* Do not escape the ':' character. Thanks to Tassilo Horn for pointing this out.Gravatar axel2006-11-08
* 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
* Do not use INTERNAL_SEPARATOR tokens to separate different parts of an unesca...Gravatar axel2006-10-10
* Allow escaped newlines within qoutes, expand them to themselvesGravatar axel2006-10-09
* Fix nagging warning messageGravatar axel2006-09-04
* Minor polishGravatar axel2006-09-04
* Make "$foo\[1]" not be an array slicing. Notice the extra backslashGravatar axel2006-09-01
* Add support for \cx backslash escapes for control sequences, syntax is borrow...Gravatar axel2006-09-01
* Add support for \a \f \v escape sequences, and make supåport for \e standard...Gravatar axel2006-08-24
* More header/autoconf fixes, improve winsize checkingGravatar axel2006-08-10
* Fix another typo in common.cGravatar axel2006-08-01
* Fix typo in common.cGravatar axel2006-08-01
* Provide fallback is struct winsize is not definedGravatar axel2006-07-31
* Include siginfo.h in all signal-using files to make Solaris happy. Thanks to ...Gravatar axel2006-07-31
* Include unistd.h and stropts.h in common.c to fix Solaris problems reported b...Gravatar axel2006-07-28
* Switch from die_mem function to DIE_MEM macro in order to be able to give a l...Gravatar axel2006-07-03
* Even more input validationGravatar axel2006-06-21
* Remove common_init and common_destroy. Use halloc instead.Gravatar axel2006-06-21
* 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
* Various code polish, including minor rearangement of builtin code to export f...Gravatar axel2006-06-21
* Minor comment edits, reindentation and other code formating changesGravatar axel2006-06-15
* Minor comment edits, reindentation and other code formating changesGravatar axel2006-06-15
* Fix segfault caused by a backslash followed by a null inside single quotesGravatar axel2006-06-15
* Add support for hishlighting potentially valid paths - default behaviour is t...Gravatar axel2006-06-14
* Major restructuring of the buildsystem, meaning that the documentation doesn'...Gravatar axel2006-06-13
* Add more function input validation checksGravatar axel2006-06-09
* Highlight invalid use of variable expansion operatorGravatar axel2006-06-02
* Increase size of buffer for parser error string. Should change this to a dyna...Gravatar axel2006-06-01
* Rename function expand_variable_array to tokenize_variable_array and move it ...Gravatar axel2006-05-29
* Add support for highlighting operators and escaped sequencesGravatar axel2006-05-27
* Minor editsGravatar axel2006-05-15
* Remove some hardcoded values in favour of constantsGravatar axel2006-05-14
* Fix broken method for sorting output of builtin commands 'functions', 'set' a...Gravatar axel2006-05-14
* Allow backslash escape fur null byteGravatar axel2006-05-10
* Fixed use of improper storage type for variableGravatar axel2006-05-10
* Fix segfault when using the 'set' command with no argumentsGravatar axel2006-05-03