mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-05 23:11:11 +02:00
zsh-workers/9413
This commit is contained in:
parent
08f335e485
commit
8a1d0f50f6
3 changed files with 5 additions and 5 deletions
|
@ -2,7 +2,7 @@ emulate -L zsh
|
|||
|
||||
[[ $1 = -n ]] || zmodload -e zsh/zftp || zmodload -ia zsh/zftp zftp || return 1
|
||||
|
||||
if zmodload -i zutil; then
|
||||
if zmodload -i zsh/zutil; then
|
||||
local arr
|
||||
# Set defaults for styles if none set.
|
||||
zstyle -g arr ':zftp:*' progress || zstyle ':zftp:*' progress bar
|
||||
|
@ -31,7 +31,7 @@ autoload -U zfstat zftp_chpwd zftp_progress zftransfer zftype zfuget zfuput
|
|||
# zftp completions: only use these if new-style completion is not
|
||||
# active.
|
||||
#
|
||||
if [[ ${#_patcomps} -eq 0 || -z ${_patcomps[(r)zf*]} ]]; then
|
||||
if [[ ${#_patcomps} -eq 0 || -z ${_patcomps[(r)_zf*]} ]]; then
|
||||
# only way of getting that noglob out of the way: this is unnecessary with
|
||||
# widget-based completion
|
||||
setopt completealiases
|
||||
|
|
|
@ -785,7 +785,7 @@ rparseelt(RParseResult *result, jmp_buf *perr)
|
|||
RParseState *st;
|
||||
RParseBranch *br;
|
||||
char *pattern, *lookahead;
|
||||
int patternlen, lookaheadlen;
|
||||
int patternlen, lookaheadlen = 0;
|
||||
|
||||
l = strlen(s);
|
||||
if (!((2 <= l && s[l - 1] == '/') ||
|
||||
|
|
|
@ -52,9 +52,9 @@ execfor(Estate state, int do_exec)
|
|||
Wordcode end, loop;
|
||||
wordcode code = state->pc[-1];
|
||||
int iscond = (WC_FOR_TYPE(code) == WC_FOR_COND);
|
||||
char *name, *str, *cond, *advance;
|
||||
char *name, *str, *cond = NULL, *advance = NULL;
|
||||
zlong val = 0;
|
||||
LinkList args;
|
||||
LinkList args = NULL;
|
||||
|
||||
name = ecgetstr(state, 0);
|
||||
end = state->pc + WC_FOR_SKIP(code);
|
||||
|
|
Loading…
Reference in a new issue