aboutsummaryrefslogtreecommitdiffhomepage
path: root/common.c
Commit message (Expand)AuthorAge
* remove trailing spacesGravatar Grissiom2010-09-18
* Check return value of a few write calls and retry on EINTR, and fix a few oth...Gravatar axel2009-02-23
* Make proper autoconf test for availability of posix nan function instead of f...Gravatar axel2009-02-03
* Make fish avoid iterating through user list when completing file part of dire...Gravatar axel2009-02-03
* Add lots of new code comments.Gravatar liljencrantz2008-01-14
* Second part of improved execve errors - this patch makes the memory limits ni...Gravatar liljencrantz2007-10-15
* Make completion system not use quoted string escapes, since it generally look...Gravatar liljencrantz2007-10-06
* Comment updates, minor code cleanups and other janitorial jobsGravatar liljencrantz2007-10-02
* Replace variadic functions like sb_append and contains_str with variadic macr...Gravatar liljencrantz2007-09-29
* Make escaping of the empty string return two quotes instead of the empty stringGravatar liljencrantz2007-09-26
* Make escaped strings more readableGravatar liljencrantz2007-09-26
* Minor polish like adding missing whitespace, switch to using --argument switc...Gravatar liljencrantz2007-09-24
* Fix narrow/wide encoding issues found through new test suite additionsGravatar liljencrantz2007-09-24
* Fix bug caused by new escap beutification code. Some strings containing a sin...Gravatar liljencrantz2007-09-24
* Use quoted escaping if possible. Most people find that more readable.Gravatar liljencrantz2007-09-23
* Fix incorrect escape character in unescape functionGravatar axel2007-09-09
* Fix compilation with Sun Studio compiler changing \e to \x1b as it does not s...Gravatar Claes Nästén2007-08-22
* 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