mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-13 23:31:08 +02:00
45583/0001: internal: Remove a redundant assignment.
The value is overwritten five lines below, without being read in the interim.
This commit is contained in:
parent
fb3ef09f2d
commit
e94e828efd
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2020-03-22 Daniel Shahaf <d.s@daniel.shahaf.name>
|
||||||
|
|
||||||
|
* 45583/0001: Src/exec.c: internal: Remove a redundant
|
||||||
|
assignment.
|
||||||
|
|
||||||
2020-03-20 Daniel Shahaf <d.s@daniel.shahaf.name>
|
2020-03-20 Daniel Shahaf <d.s@daniel.shahaf.name>
|
||||||
|
|
||||||
* unposted: Src/Builtins/rlimits.c: Deconfuse $EDITOR's balanced
|
* unposted: Src/Builtins/rlimits.c: Deconfuse $EDITOR's balanced
|
||||||
|
|
|
@ -5166,7 +5166,6 @@ execfuncdef(Estate state, Eprog redir_prog)
|
||||||
|
|
||||||
end = beg + WC_FUNCDEF_SKIP(state->pc[-1]);
|
end = beg + WC_FUNCDEF_SKIP(state->pc[-1]);
|
||||||
names = ecgetlist(state, *state->pc++, EC_DUPTOK, &htok);
|
names = ecgetlist(state, *state->pc++, EC_DUPTOK, &htok);
|
||||||
nprg = end - beg;
|
|
||||||
sbeg = *state->pc++;
|
sbeg = *state->pc++;
|
||||||
nstrs = *state->pc++;
|
nstrs = *state->pc++;
|
||||||
npats = *state->pc++;
|
npats = *state->pc++;
|
||||||
|
|
Loading…
Reference in a new issue