summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2013-11-03 15:08:18 -0500
committerJune McEnroe <june@causal.agency>2013-11-03 15:08:18 -0500
commite026eb12054fca9651a51405a83ad41670de58a4 (patch)
tree2698492e25290a21627c04933be06b46d056828c
parentAdd bindings for CtrlPBufTag and CtrlPLine (diff)
downloadsrc-e026eb12054fca9651a51405a83ad41670de58a4.tar.gz
src-e026eb12054fca9651a51405a83ad41670de58a4.zip
Update jellybeans
m---------bundle/jellybeans.vim0
1 files changed, 0 insertions, 0 deletions
diff --git a/bundle/jellybeans.vim b/bundle/jellybeans.vim
-Subproject d49aa7dc7b5b48b712e44c91a3bd89160acd30f
+Subproject 0f08126929bce42c5bd9ef6b44008fb33829514
ject'>parser: 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