aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/builtin_jobs.cpp
Commit message (Collapse)AuthorAge
* Don't print the jobs header when stdout is redirectedGravatar ridiculousfish2015-12-03
|
* Fix the error message not being outputedGravatar Max Nordlund2015-12-03
|
* Fix wrong exit code for `jobs` #2505Gravatar Max Nordlund2015-12-03
|
* Eliminate global variables associated with builtin IOGravatar ridiculousfish2015-09-22
| | | | | | | This change eliminates global variables like stdout_buffer. Instead we wrap up the IO information into a new struct io_streams_t, and thread that through every builtin. This makes the intent clearer, gives us a place to hang new IO data, and eliminates the ugly global state management like builtin_push_io.
* Eliminate wgetopt global variablesGravatar ridiculousfish2015-07-25
| | | | | Replace them with a new struct wgetopter_t that uses instance variables instead.
* 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