ebf9b31727
- do not resend signal on termination (#1092132) - fix brace expansion on/off - fix incorrect rounding of numsers 0.5 < |x| <1.0 in printf (#1080940) - fix parser errors related to the end of the here-document marker - ksh hangs when command substitution fills out the pipe buffer - using typeset -l with a restricted variabled caused segmentation fault - monitor mode was documented incorrectly - do not crash when unsetting running function from another one (#1105139) - should report an error when trying to cd into directory without execution bit - job locking mechanism did not survive compiler optimization - reading a file via command substitution did not work when any of stdin, stdout or stderr were closed (#1070308) - fix lexical parser crash
33 lines
1.3 KiB
Diff
33 lines
1.3 KiB
Diff
diff -up ksh-20120801/src/cmd/ksh93/sh/lex.c.heresub ksh-20120801/src/cmd/ksh93/sh/lex.c
|
|
--- ksh-20120801/src/cmd/ksh93/sh/lex.c.heresub 2014-05-21 16:48:42.635700984 +0200
|
|
+++ ksh-20120801/src/cmd/ksh93/sh/lex.c 2014-05-21 16:48:42.678700772 +0200
|
|
@@ -1557,6 +1557,7 @@ static int comsub(register Lex_t *lp, in
|
|
{
|
|
register int n,c,count=1;
|
|
register int line=lp->sh->inlineno;
|
|
+ struct ionod *inheredoc = lp->heredoc;
|
|
char *first,*cp=fcseek(0),word[5];
|
|
int off, messages=0, assignok=lp->assignok, csub;
|
|
struct lexstate save;
|
|
@@ -1683,7 +1684,7 @@ done:
|
|
lp->lexd.dolparen--;
|
|
lp->lex = save;
|
|
lp->assignok = (endchar(lp)==RBRACT?assignok:0);
|
|
- if(lp->heredoc)
|
|
+ if(lp->heredoc && !inheredoc)
|
|
errormsg(SH_DICT,ERROR_exit(SYNBAD),e_lexsyntax5,lp->sh->inlineno,lp->heredoc->ioname);
|
|
return(messages);
|
|
}
|
|
diff -up ksh-20120801/src/cmd/ksh93/sh/macro.c.heresub ksh-20120801/src/cmd/ksh93/sh/macro.c
|
|
--- ksh-20120801/src/cmd/ksh93/sh/macro.c.heresub 2014-05-21 16:48:42.650700910 +0200
|
|
+++ ksh-20120801/src/cmd/ksh93/sh/macro.c 2014-05-21 16:48:42.678700772 +0200
|
|
@@ -2085,7 +2085,7 @@ static void comsubst(Mac_t *mp,register
|
|
}
|
|
sfputc(stkp,c);
|
|
}
|
|
- sfputc(stkp,' ');
|
|
+ sfputc(stkp,'\n');
|
|
c = stktell(stkp);
|
|
str=stkfreeze(stkp,1);
|
|
/* disable verbose and don't save in history file */
|