summary refs log tree commit diff
BranchCommit messageAuthorAge
masterAdd NetBSD support to configurepara11 days
somasis/tokiponaRevert "handle.c: o pana e toki lon pana/weka kule lon pona/ike"Kylie McClain3 years
vimodeImplement h, lJune McEnroe3 years
enrollDo basic word-wrapping at runtimeJune McEnroe3 years
twitchUse twitch display-name tagJune McEnroe3 years
 
TagDownloadAuthorAge
2.2acatgirl-2.2a.tar.gz  catgirl-2.2a.zip  June McEnroe9 months
2.2catgirl-2.2.tar.gz  catgirl-2.2.zip  June McEnroe19 months
2.1catgirl-2.1.tar.gz  catgirl-2.1.zip  June McEnroe3 years
2.0acatgirl-2.0a.tar.gz  catgirl-2.0a.zip  June McEnroe3 years
2.0catgirl-2.0.tar.gz  catgirl-2.0.zip  June McEnroe3 years
1.9acatgirl-1.9a.tar.gz  catgirl-1.9a.zip  June McEnroe4 years
1.9catgirl-1.9.tar.gz  catgirl-1.9.zip  June McEnroe4 years
1.8catgirl-1.8.tar.gz  catgirl-1.8.zip  June McEnroe4 years
1.7catgirl-1.7.tar.gz  catgirl-1.7.zip  June McEnroe4 years
1.6catgirl-1.6.tar.gz  catgirl-1.6.zip  June McEnroe4 years
1.5catgirl-1.5.tar.gz  catgirl-1.5.zip  June McEnroe4 years
1.4catgirl-1.4.tar.gz  catgirl-1.4.zip  June McEnroe4 years
1.3catgirl-1.3.tar.gz  catgirl-1.3.zip  June McEnroe4 years
1.2catgirl-1.2.tar.gz  catgirl-1.2.zip  June McEnroe4 years
1.1p1catgirl-1.1p1.tar.gz  catgirl-1.1p1.zip  June McEnroe5 years
1.1catgirl-1.1.tar.gz  catgirl-1.1.zip  June McEnroe5 years
1.0catgirl-1.0.tar.gz  catgirl-1.0.zip  June McEnroe5 years
@ when it's inside double quotes. In fact there is another bug while we're playing with $@/$*. When IFS is set to a non-whitespace character such as :, $* outside quotes won't remove empty fields as it should. This patch fixes both problems. Reported-by: Martijn Dekker <martijn@inlv.org> Suggested-by: 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