fix remaining survivors of the return(a) cleanup

This commit is contained in:
Denis Vlasenko
2006-11-27 16:59:15 +00:00
parent d9e15f2068
commit 097c324f59
4 changed files with 11 additions and 11 deletions

View File

@ -4804,9 +4804,9 @@ exptilde(char *startp, char *p, int flag)
while ((c = *++p) != '\0') {
switch(c) {
case CTLESC:
return (startp);
return startp;
case CTLQUOTEMARK:
return (startp);
return startp;
case ':':
if (flag & EXP_VARTILDE)
goto done;