about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBarton E. Schaefer <schaefer@zsh.org>2016-11-03 09:10:18 -0700
committerBarton E. Schaefer <schaefer@zsh.org>2016-11-03 09:13:03 -0700
commitad085f1dec0131b430760b739b59d9a74579199a (patch)
tree3715c97e35fd0836dbee4ab83e49e79dc6f28c30
parent060ff489155c1c35ffcabfcc0ee5647d8a606d75 (diff)
downloadzsh-ad085f1dec0131b430760b739b59d9a74579199a.tar.gz
zsh-ad085f1dec0131b430760b739b59d9a74579199a.tar.xz
zsh-ad085f1dec0131b430760b739b59d9a74579199a.zip
unposted: fix typo that was causing handling of "--" argument to fail
-rw-r--r--ChangeLog3
-rw-r--r--Completion/Unix/Type/_remote_files2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0ad122db1..659b4d1a9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,9 @@
 
 2016-11-03  Barton E. Schaefer  <schaefer@zsh.org>
 
+	* unposted: Completion/Unix/Type/_remote_files: fix typo that
+	was causing handling of "--" argument to fail
+
 	* 39820: Src/Zle/zle_vi.c: vi-repeat handles multi-key bindings
 
 2016-11-03  Peter Stephenson  <p.stephenson@samsung.com>
diff --git a/Completion/Unix/Type/_remote_files b/Completion/Unix/Type/_remote_files
index dbfb56134..1e9fed15e 100644
--- a/Completion/Unix/Type/_remote_files
+++ b/Completion/Unix/Type/_remote_files
@@ -40,7 +40,7 @@ if zstyle -T ":completion:${curcontext}:files" remote-access; then
 
   args=( ${argv[1,(i)--]} )
   shift ${#args}
-  [[ args[-1] = -- ]] && args[-1]=()
+  [[ $args[-1] = -- ]] && args[-1]=()
   # Command to run on the remote system.
   cmd="$1"
   shift