fix a few expansion substitutions to do tilde expansion
issue spotted by izabera and confirmed by Geoff Clare
This commit is contained in:
parent
c10a8b5809
commit
d4aa35212c
13
eval.c
13
eval.c
@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
#include "sh.h"
|
#include "sh.h"
|
||||||
|
|
||||||
__RCSID("$MirOS: src/bin/mksh/eval.c,v 1.174 2015/10/09 19:29:47 tg Exp $");
|
__RCSID("$MirOS: src/bin/mksh/eval.c,v 1.175 2015/12/12 17:28:10 tg Exp $");
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* string expansion
|
* string expansion
|
||||||
@ -498,10 +498,11 @@ expand(
|
|||||||
sp += (d ? d : p) - s - 1;
|
sp += (d ? d : p) - s - 1;
|
||||||
tpat0 = wdstrip(s,
|
tpat0 = wdstrip(s,
|
||||||
WDS_KEEPQ | WDS_MAGIC);
|
WDS_KEEPQ | WDS_MAGIC);
|
||||||
pat = substitute(tpat0, 0);
|
pat = substitute(tpat0, DOTILDE);
|
||||||
if (d) {
|
if (d) {
|
||||||
d = wdstrip(p, WDS_KEEPQ);
|
d = wdstrip(p, WDS_KEEPQ);
|
||||||
rrep = substitute(d, 0);
|
rrep = substitute(d,
|
||||||
|
DOTILDE);
|
||||||
afree(d, ATEMP);
|
afree(d, ATEMP);
|
||||||
} else
|
} else
|
||||||
rrep = null;
|
rrep = null;
|
||||||
@ -608,9 +609,11 @@ expand(
|
|||||||
}
|
}
|
||||||
case '#':
|
case '#':
|
||||||
case '%':
|
case '%':
|
||||||
/* ! DOBLANK,DOBRACE,DOTILDE */
|
/* ! DOBLANK,DOBRACE */
|
||||||
f = (f & DONTRUNCOMMAND) |
|
f = (f & DONTRUNCOMMAND) |
|
||||||
DOPAT | DOTEMP | DOSCALAR;
|
DOPAT | DOTILDE |
|
||||||
|
DOTEMP | DOSCALAR;
|
||||||
|
tilde_ok = 1;
|
||||||
st->quotew = quote = 0;
|
st->quotew = quote = 0;
|
||||||
/*
|
/*
|
||||||
* Prepend open pattern (so |
|
* Prepend open pattern (so |
|
||||||
|
Loading…
x
Reference in New Issue
Block a user