mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-07 11:41:16 +02:00
unposted (cf. 34218): : remove -m from zmodload calls
This commit is contained in:
parent
aaa19267c2
commit
5caf317c3a
5 changed files with 8 additions and 4 deletions
|
@ -12,6 +12,10 @@
|
||||||
|
|
||||||
2015-01-10 Barton E. Schaefer <schaefer@zsh.org>
|
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
|
* 34212, 34313: Src/builtin.c: do not change unset-ness of special
|
||||||
parameters when exporting them
|
parameters when exporting them
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ local pager w="${(qq)words}"
|
||||||
integer debug_fd=-1
|
integer debug_fd=-1
|
||||||
{
|
{
|
||||||
if [[ -t 2 ]]; then
|
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 &&
|
zf_ln -fn =(<<<'') $tmp &&
|
||||||
exec {debug_fd}>&2 2>| $tmp
|
exec {debug_fd}>&2 2>| $tmp
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
emulate -L zsh
|
emulate -L zsh
|
||||||
setopt extendedglob
|
setopt extendedglob
|
||||||
|
|
||||||
zmodload -m -F zsh/files b:zf_ln || return 1
|
zmodload -F zsh/files b:zf_ln || return 1
|
||||||
|
|
||||||
local key
|
local key
|
||||||
local compcontext=-default-
|
local compcontext=-default-
|
||||||
|
|
|
@ -12,7 +12,7 @@ local -A reply
|
||||||
|
|
||||||
zmodload -i zsh/datetime || return 1
|
zmodload -i zsh/datetime || return 1
|
||||||
zmodload -i zsh/zutil || 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}
|
autoload -Uz calendar_{add,parse,read,scandate,show,lockfiles}
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# function zfget_match {
|
# function zfget_match {
|
||||||
|
|
||||||
emulate -L zsh
|
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
|
# the zfcd hack: this may not be necessary here
|
||||||
if [[ $1 == $HOME || $1 == $HOME/* ]]; then
|
if [[ $1 == $HOME || $1 == $HOME/* ]]; then
|
||||||
|
|
Loading…
Reference in a new issue