summary refs log tree commit diff
Commit message (Expand)AuthorAge
...
* parser: Fix single-quoted patterns in here-documentsHerbert Xu2018-03-22
* parser: Add syntax stack for recursive parsingHerbert Xu2018-03-22
* parser: use pgetc_eatbnl() in more placesHarald van Dijk2018-03-22
* builtin: Greater resolution in test -nt / test -otMartijn Dekker2018-03-22
* mystring: fix "Illegal number" on FreeBSD & macOS for x=; echo $((x))Martijn Dekker2018-03-10
* expand: 'nolog' and 'debug' options cause "$-" to wreak havocMartijn Dekker2018-03-10
* histedit: fix build with musl libcBaruch Siach2018-03-10
* expand: Remove dependency on fmatch.h if it does not exitRink Springer2018-03-10
* input: Fix here-document redirection with vi/emacs onHarald van Dijk2018-03-10
* man: Small cleanup for Command Line EditingLarry Hynes2018-03-10
* builtin: describe_command - fix incorrect pathHarald van Dijk2018-03-10
* trap: Globally rename pendingsigs to pending_sigDenys Vlasenko2018-03-10
* Release 0.5.9.1.Herbert Xu2016-09-23
* expand - Fix dangling left square brackets in patternsHerbert Xu2016-09-23
* builtin: Fix echo -n early terminationHerbert Xu2016-09-02
* builtin: Fix handling of trailing IFS white spacesHerbert Xu2016-09-02
* eval: Return status in eval functionsHerbert Xu2016-09-02
* jobs: Handle string-based job descriptorsStephen Kitt2016-09-02
* trap: Implement POSIX.1-2008 trap reset behaviourHerbert Xu2016-09-02
* eval: Fix exit status when calling eval/dot with no commandsHarald van Dijk2016-06-07
* man: Document ulimit -vGioele Barabucci2016-06-06
* shell: Fix build on Solaris 9Jonathan Perkin2016-06-06
* jobs: Don't attempt to access job table for job %0Tobias Klauser2016-06-06
* builtin: Reject malformed printf specifications with digits after '*'Patrick Brown2016-06-06
* Release 0.5.9.Herbert Xu2016-06-06
* builtin: Reset t_wp_op in testcmdHerbert Xu2015-08-13
* man: Fix description of getopts when last argument reachedFelix Dietrich2015-06-11
* builtin: Clear LC_ALL in mkbuiltinsFredrik Fornwall2015-06-11
* input: Allow two consecutive calls to pungetcHerbert Xu2015-01-05
* input: Move all input state into parsefileHerbert Xu2015-01-05
* input: Remove HETIOHerbert Xu2015-01-05
* input: Make preadbuffer staticHerbert Xu2015-01-05
* expand: Fixed "$@" expansion when EXP_FULL is falseHerbert Xu2015-01-05
* builtin: create builtins.c properly on old cppkabe@sra-tohoku.co.jp2014-12-26
* man: Clarify two redirection mechanismsStéphane Aulery2014-12-26
* [BUILTIN] Fix "test -x" as root on FreeBSD 8Jonathan Nieder2014-11-17
* [MAN] Document redirection file descriptor limitationStéphane Aulery2014-11-17
* [MAN] Correct typo in manual pageStéphane Aulery2014-11-17
* [PARSER] Catch variable length expansions on non-existant specialsHerbert Xu2014-10-30
* [PARSER] Simplify EOF/newline handling in list parserHerbert Xu2014-10-28
* [PARSER] Removed unnecessary pungetc on EOF from parserHerbert Xu2014-10-28
* [BUILTIN] Handle -- in dotcmdHerbert Xu2014-10-27
* [BUILTIN] Simplify echo commandHerbert Xu2014-10-27
* [BUILTIN] Optimise handling of backslash octals in printfHerbert Xu2014-10-27
* [BUILTIN] Use error instead of warnx for fatal errors in printfHerbert Xu2014-10-27
* [BUILTIN] Remove getintmax in printfHerbert Xu2014-10-27
* [BUILTIN] Remove unnecessary restoration of format string in printfHerbert Xu2014-10-27
* [OUTPUT] Add ifdefs around MEM_OUT handling in outmemHerbert Xu2014-10-27
* [OUTPUT] Add likely tag in outmemHerbert Xu2014-10-27
* [INPUT] Replace open-coded flushall in preadbufferHerbert Xu2014-10-27
red.c?h=1.4.0&id=f04b8d5c99afdc55178f1a06ff1594f5f0cc4be6&follow=1'>Refactor cgit_parse_snapshots_mask()Lukas Fleischer Use Git string lists instead of str{spn,cspn,ncmp}() magic. This significantly improves readability. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-10Disallow use of undocumented snapshot delimitersLukas Fleischer Since the introduction of selective snapshot format configuration in dc3c9b5 (allow selective enabling of snapshots, 2007-07-21), we allowed seven different delimiters for snapshot formats, while the documentation has always been clear about spaces being the only valid delimiter: The value is a space-separated list of zero or more of the values "tar", "tar.gz", "tar.bz2", "tar.xz" and "zip". Supporting the undocumented delimiters makes the code unnecessarily complex. Remove them. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-10Replace most uses of strncmp() with prefixcmp()Lukas Fleischer This is a preparation for replacing all prefix checks with either strip_prefix() or starts_with() when Git 1.8.6 is released. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-09README: Fix dependenciesLukas Fleischer * Remove the dependency on Git (which can be obtained automatically when building, using either the Git submodule or `make get-git`). * Use proper upstream names of dependencies. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-08README: Spelling and formatting fixesLukas Fleischer * Several small spelling and capitalization fixes. * Use consistent and better-looking formatting that is compatible with AsciiDoc (and partly compatible with RST). Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-08Fix UTF-8 with syntax-highlighting.pyPřemysl Janouch Previously the script tried to encode output from Pygments with the ASCII codec, which failed. Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08Add a suggestion to the manpagePřemysl Janouch So that people wishing to use "enable-http-clone" don't have to find out the correct settings on their own. Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08Fix the example configurationPřemysl Janouch "enable-git-clone" doesn't exist, replaced with "enable-http-clone". Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08Fix about-formatting.shPřemysl Janouch dash failed to parse the script. Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08Fix some spelling errorsPřemysl Janouch Signed-off-by: Přemysl Janouch <p.janouch@gmail.com> 2014-01-08filters: highlight.sh: add css comments for highlight 2.6 and 3.8Ferry Huberts