| Commit message (Expand) | Author | Age | Files | Lines |
* | opt: Copy data flow back up from the nested context in optimize() | Tavian Barnes | 2024-08-12 | 1 | -2/+11 |
* | sighook: Disable semaphores on NetBSD | Tavian Barnes | 2024-08-11 | 1 | -1/+2 |
* | bfstd: New sysoption() macro to check for POSIX option runtime support | Tavian Barnes | 2024-08-09 | 5 | -39/+84 |
* | xtime: Remove xgettime() | Tavian Barnes | 2024-08-09 | 4 | -37/+8 |
* | prelude: s/fallthru/_fallthrough/ for consistency with other attributes | Tavian Barnes | 2024-08-09 | 5 | -15/+15 |
* | bar: Hide the bar unless the TTY is tall enough | Tavian Barnes | 2024-08-07 | 1 | -13/+23 |
* | parse: Take umask into account in parse_mode() | Tavian Barnes | 2024-08-02 | 3 | -8/+22 |
* | parse: Fix names in parse_mode() | Tavian Barnes | 2024-08-02 | 1 | -14/+14 |
* | Update opengroup.org links to POSIX 2024 | Tavian Barnes | 2024-08-02 | 3 | -8/+8 |
* | Revert "typo: Raise the insert/delete cost" | Tavian Barnes | 2024-08-02 | 1 | -1/+1 |
* | bar: #include <unistd.h> for ioctl() on Illumos | Tavian Barnes | 2024-08-01 | 1 | -0/+1 |
* | bar: Use tcgetwinsize() from POSIX 2024 if available | Tavian Barnes | 2024-07-28 | 1 | -3/+10 |
* | prelude: Simplify attributes | Tavian Barnes | 2024-07-28 | 20 | -179/+125 |
* | xspawn: Fix error message if pthread_sigmask() fails | Tavian Barnes | 2024-07-27 | 1 | -2/+2 |
* | xspawn: Use _Fork() if available | Tavian Barnes | 2024-07-27 | 1 | -0/+4 |
* | opt: -empty implies -type f,d | Tavian Barnes | 2024-07-17 | 1 | -5/+22 |
* | opt: -lname implies -type l | Tavian Barnes | 2024-07-17 | 1 | -0/+7 |
* | xspawn: Test the right macro for posix_spawn_..._addfchdir() support | Tavian Barnes | 2024-07-16 | 1 | -1/+1 |
* | sighook: Make sigunhook() O(1) | Tavian Barnes | 2024-07-15 | 1 | -41/+51 |
* | Implement POSIX 2024's -mount | Tavian Barnes | 2024-07-08 | 1 | -4/+1 |
* | sighook: Replace sigtables with RCU-protected linked lists | Tavian Barnes | 2024-07-07 | 1 | -148/+68 |
* | color: Delay the case_sensitive decision | Tavian Barnes | 2024-07-02 | 1 | -90/+84 |
* | ioq: Do more in the branch-free slot helper | Tavian Barnes | 2024-06-20 | 1 | -11/+11 |
* | build: Rename CONFIG to CONFFLAGS | Tavian Barnes | 2024-06-18 | 3 | -9/+9 |
* | bftw: Only resize the string once in bftw_build_path() | Tavian Barnes | 2024-06-18 | 1 | -19/+22 |
* | Use dstrx*() over dstrn*() when we know the exact length | Tavian Barnes | 2024-06-18 | 2 | -7/+7 |
* | build: Include CC in bfs --version output | Tavian Barnes | 2024-06-13 | 3 | -0/+6 |
* | typo: Raise the insert/delete cost | Tavian Barnes | 2024-06-08 | 1 | -1/+1 |
* | xspawn: Check X_OK even without $PATH resolution | Tavian Barnes | 2024-06-08 | 1 | -2/+11 |
* | Embed more configuration info in bfs --version | Tavian Barnes | 2024-06-08 | 4 | -1/+45 |
* | sighook: Shard the signal table | Tavian Barnes | 2024-06-07 | 1 | -7/+24 |
* | sighook: Ignore sigaction() errors in atsigexit() | Tavian Barnes | 2024-06-07 | 1 | -10/+6 |
* | atomic: Fix RISC-V build with GCC < 14 | Tavian Barnes | 2024-06-06 | 1 | -1/+1 |
* | Minor formatting fixes | Tavian Barnes | 2024-06-06 | 2 | -22/+22 |
* | parse: Remove some unnecessary saving/restoring of errno | Tavian Barnes | 2024-06-05 | 1 | -14/+0 |
* | Replace some switch-case lookups with arrays | Tavian Barnes | 2024-06-05 | 3 | -83/+45 |
* | xtime: Add support for @epochseconds timestamps | Tavian Barnes | 2024-06-04 | 1 | -0/+18 |
* | bfstd: New xstrtoll() wrapper | Tavian Barnes | 2024-06-04 | 3 | -15/+48 |
* | Merge branch 'revert-eloop' | Tavian Barnes | 2024-06-03 | 2 | -1/+8 |
|\ |
|
| * | Make ELOOP an error again, except for -xtype.3.3.1 | Tavian Barnes | 2024-06-03 | 2 | -1/+8 |
* | | eval: Fix -D stat printed return value | Tavian Barnes | 2024-06-03 | 1 | -1/+1 |
* | | parse: Allow -Darg/-Sarg as well as -D arg / -S arg | Tavian Barnes | 2024-06-03 | 1 | -12/+20 |
* | | parse: Handle multiple flags at once like -LEXO2 | Tavian Barnes | 2024-06-03 | 1 | -26/+138 |
* | | sighook: Check that atomic size_t is lock-free | Tavian Barnes | 2024-06-03 | 1 | -0/+4 |
* | | list: New SLIST_SPLICE() macro | Tavian Barnes | 2024-05-31 | 2 | -5/+21 |
* | | trie: Don't pass a bitfield directly to has_single_bit() | Tavian Barnes | 2024-05-30 | 1 | -1/+1 |
* | | bit: Use <stdbit.h> if it exists, even without -std=c23 | Tavian Barnes | 2024-05-29 | 2 | -3/+7 |
* | | bit: Update to match C23 | Tavian Barnes | 2024-05-29 | 1 | -51/+45 |
|/ |
|
* | Implement the remaining regex types | Tavian Barnes | 2024-05-28 | 3 | -6/+71 |
* | xregex: Support non-capturing groups with -regextype emacs | Tavian Barnes | 2024-05-27 | 1 | -1/+7 |