aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Collapse)AuthorAge
* Merge branch 'iwyu'Gravatar David Adam2015-07-29
|\ | | | | | | http://include-what-you-use.org/
* | Remove unused unload_all functionGravatar ridiculousfish2015-07-27
| |
* | Stop passing mutable references to completions aroundGravatar ridiculousfish2015-07-27
| | | | | | | | | | Replace uses of vector<completion_t>& with vector<completion_t>* This makes it clear at the call site that the object may be mutated.
* | Support file tab completion after = and : separatorsGravatar ridiculousfish2015-07-27
| | | | | | | | | | | | For example, env VAR=/usr<tab> will now work as expected Fixes #2178
* | Fix a warning with g++ about an unused function resultGravatar ridiculousfish2015-07-26
| |
| * src/wutil: drop <features.h> header, _BSD_SOURCE is defined by the compilerGravatar David Adam2015-07-26
| |
* | Handle getcwd failures to satisfy the linterGravatar ridiculousfish2015-07-26
| |
* | Cast getcwd() to void to defeat a warningGravatar ridiculousfish2015-07-26
| |
* | Continue to refine tokenizer interfaceGravatar ridiculousfish2015-07-26
| | | | | | | | Migrate some functions into tokenizer instance methods
* | Continue migration to the new tokenizer interfaceGravatar ridiculousfish2015-07-26
| |
* | Early reworking of tokenizer interfaceGravatar ridiculousfish2015-07-25
| |
* | Remove some dead codeGravatar ridiculousfish2015-07-25
| |
| * Merge branch 'master' into iwyuGravatar David Adam2015-07-26
|/
* Eliminate wgetopt global variablesGravatar ridiculousfish2015-07-25
| | | | | Replace them with a new struct wgetopter_t that uses instance variables instead.
* Make our wgettext() implementation a little less terrifyingGravatar ridiculousfish2015-07-25
| | | | Use wchar_t* directly instead of wcstring.c_str()
* Use the address-of operator when checking for weak symbolsGravatar ridiculousfish2015-07-25
| | | | This fixes a warning with gcc on OS X
* Migrate source files into src/ directoryGravatar ridiculousfish2015-07-25
| | | | | | | | This change moves source files into a src/ directory, and puts object files into an obj/ directory. The Makefile and xcode project are updated accordingly. Fixes #1866
* Migrate source files into src/ directoryGravatar ridiculousfish2015-07-24
This change moves source files into a src/ directory, and puts object files into an obj/ directory. The Makefile and xcode project are updated accordingly. Fixes #1866