1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-02 10:01:11 +02:00

unposted (cf. 34218): : remove -m from zmodload calls

This commit is contained in:
Barton E. Schaefer 2015-01-10 18:06:17 -08:00
parent aaa19267c2
commit 5caf317c3a
5 changed files with 8 additions and 4 deletions

View file

@ -12,6 +12,10 @@
2015-01-10 Barton E. Schaefer <schaefer@zsh.org>
* unposted (cf. 34218): Completion/Base/Widget/_complete_debug,
Completion/compinstall, Functions/Calendar/calendar,
Functions/Zftp/zfget_match: remove -m from zmodload calls
* 34212, 34313: Src/builtin.c: do not change unset-ness of special
parameters when exporting them

View file

@ -9,7 +9,7 @@ local pager w="${(qq)words}"
integer debug_fd=-1
{
if [[ -t 2 ]]; then
zmodload -m -F zsh/files b:zf_ln 2>/dev/null &&
zmodload -F zsh/files b:zf_ln 2>/dev/null &&
zf_ln -fn =(<<<'') $tmp &&
exec {debug_fd}>&2 2>| $tmp
fi

View file

@ -3,7 +3,7 @@
emulate -L zsh
setopt extendedglob
zmodload -m -F zsh/files b:zf_ln || return 1
zmodload -F zsh/files b:zf_ln || return 1
local key
local compcontext=-default-

View file

@ -12,7 +12,7 @@ local -A reply
zmodload -i zsh/datetime || return 1
zmodload -i zsh/zutil || return 1
zmodload -m -F zsh/files b:zf_ln || return 1
zmodload -F zsh/files b:zf_ln || return 1
autoload -Uz calendar_{add,parse,read,scandate,show,lockfiles}

View file

@ -1,7 +1,7 @@
# function zfget_match {
emulate -L zsh
zmodload -m -F zsh/files b:zf_ln || return 1
zmodload -F zsh/files b:zf_ln || return 1
# the zfcd hack: this may not be necessary here
if [[ $1 == $HOME || $1 == $HOME/* ]]; then