diff options
author | Barton E. Schaefer <schaefer@zsh.org> | 2015-01-10 18:06:17 -0800 |
---|---|---|
committer | Barton E. Schaefer <schaefer@zsh.org> | 2015-01-10 18:06:43 -0800 |
commit | 5caf317c3a29ca0091f7e19b4f923978aaa4b012 (patch) | |
tree | f211d0e2db71ecf2f2c380f9320624f5caa4d992 /Functions/Zftp/zfget_match | |
parent | aaa19267c29afdd4ef558264803a6a65120d2a12 (diff) | |
download | zsh-5caf317c3a29ca0091f7e19b4f923978aaa4b012.tar.gz zsh-5caf317c3a29ca0091f7e19b4f923978aaa4b012.tar.xz zsh-5caf317c3a29ca0091f7e19b4f923978aaa4b012.zip |
unposted (cf. 34218): : remove -m from zmodload calls
Diffstat (limited to 'Functions/Zftp/zfget_match')
-rw-r--r-- | Functions/Zftp/zfget_match | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Functions/Zftp/zfget_match b/Functions/Zftp/zfget_match index 3f2bbf30c..3a33c9886 100644 --- a/Functions/Zftp/zfget_match +++ b/Functions/Zftp/zfget_match @@ -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 |