mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.2.0187: reduntant code
Problem: Reduntant code. Solution: Remove unused assignments. (Dominique Pelle, closes #5557)
This commit is contained in:
@@ -1653,7 +1653,7 @@ compile_arguments(char_u **arg, cctx_T *cctx, int *argcount)
|
||||
compile_call(char_u **arg, size_t varlen, cctx_T *cctx, int argcount_init)
|
||||
{
|
||||
char_u *name = *arg;
|
||||
char_u *p = *arg + varlen + 1;
|
||||
char_u *p;
|
||||
int argcount = argcount_init;
|
||||
char_u namebuf[100];
|
||||
ufunc_T *ufunc;
|
||||
@@ -2058,7 +2058,6 @@ compile_get_env(char_u **arg, cctx_T *cctx)
|
||||
int ret;
|
||||
char_u *name;
|
||||
|
||||
start = *arg;
|
||||
++*arg;
|
||||
len = get_env_len(arg);
|
||||
if (len == 0)
|
||||
|
Reference in New Issue
Block a user