about summary refs log tree commit diff
ModeNameSize
-rw-r--r--.gitignore80log plain blame
-rw-r--r--.gitmodules78log plain blame
-rw-r--r--COPYING18009log plain blame
-rw-r--r--Makefile3002log plain blame
-rw-r--r--README3107log plain blame
-rw-r--r--cache.c2328log plain blame
-rw-r--r--cache.h552log plain blame
-rw-r--r--cgit.c13169log plain blame
-rw-r--r--cgit.css5543log plain blame
-rw-r--r--cgit.h4806log plain blame
-rw-r--r--cgit.png1840log plain blame
-rw-r--r--cgitrc4918log plain blame
-rw-r--r--cmd.c2333log plain blame
-rw-r--r--cmd.h271log plain blame
-rw-r--r--configfile.c1426log plain blame
-rw-r--r--configfile.h220log plain blame
-rwxr-xr-xgen-version.sh392log plain blame
m---------git @ 1d2375d0log blame
-rw-r--r--html.c4024log plain blame
-rw-r--r--html.h673log plain blame
-rw-r--r--parsing.c4072log plain blame
-rw-r--r--shared.c7479log plain blame
d---------tests498log plain
-rw-r--r--ui-blob.c865log plain blame
-rw-r--r--ui-blob.h119log plain blame
-rw-r--r--ui-commit.c2837log plain blame
-rw-r--r--ui-commit.h109log plain blame
-rw-r--r--ui-diff.c7667log plain blame
-rw-r--r--ui-diff.h259log plain blame
-rw-r--r--ui-log.c3805log plain blame
-rw-r--r--ui-log.h177log plain blame
-rw-r--r--ui-patch.c3062log plain blame
-rw-r--r--ui-patch.h105log plain blame
-rw-r--r--ui-refs.c4501log plain blame
-rw-r--r--ui-refs.h182log plain blame
-rw-r--r--ui-repolist.c3455log plain blame
-rw-r--r--ui-repolist.h108log plain blame
-rw-r--r--ui-shared.c14702log plain blame
-rw-r--r--ui-shared.h1741log plain blame
-rw-r--r--ui-snapshot.c3368log plain blame
-rw-r--r--ui-snapshot.h205log plain blame
-rw-r--r--ui-summary.c867log plain blame
-rw-r--r--ui-summary.h142log plain blame
-rw-r--r--ui-tag.c1609log plain blame
-rw-r--r--ui-tag.h101log plain blame
-rw-r--r--ui-tree.c4936log plain blame
-rw-r--r--ui-tree.h119log plain blame
y: Harald van Dijk <harald@gigawatt.nl> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> 2018-04-02parser: Allow newlines within parameter substitutionHerbert Xu On Fri, Mar 16, 2018 at 11:27:22AM +0800, Herbert Xu wrote: > On Thu, Mar 15, 2018 at 10:49:15PM +0100, Harald van Dijk wrote: > > > > Okay, it can be trivially modified to something that does work in other > > shells (even if it were actually executed), but gets rejected at parse time > > by dash: > > > > if false; then > > : ${$+ > > } > > fi > > That's just a bug in dash's parser with ${} in general, because > it bombs out without the if clause too: > > : ${$+ > } This patch fixes the parsing of newlines with parameter substitution. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> 2018-04-02expand: Fix bugs with words connected to the right of $@Herbert Xu On Sun, Mar 04, 2018 at 12:44:59PM +0100, Harald van Dijk wrote: > > command: set -- a ""; space=" "; printf "<%s>" "$@"$space > bash: <a><> > dash 0.5.8: <a>< > > dash 0.5.9.1: <a>< > > dash patched: <a><> This is actually composed of two bugs. First of all our tracking of quotemark is wrong so anything after "$@" becomes quoted. Once we fix that then the problem is that the first space character after "$@" is not recognised as an IFS. This patch fixes both. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> 2018-03-25Revert "[BUILTIN] Remove unnecessary restoration of format string in printf"Herbert Xu This reverts commit 7bb413255368e94395237d789f522891093c5774. The commit breaks printf with more than argument. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> 2018-03-22parser: Fix backquote support in here-document EOF markHerbert Xu