From 112cbc0a0e6089f2159f822b29ea5dd04fff1118 Mon Sep 17 00:00:00 2001 From: Joerg Woelke Date: Fri, 27 Aug 2010 20:06:02 +0200 Subject: [PATCH] zshrc: Fix passing of args in cdiff(). Use "$@" instead of "$*". --- etc/zsh/zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index ad5357c..c9ccee1 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -3369,7 +3369,7 @@ bk() { #f5# Copied diff cdiff() { emulate -L zsh - diff -crd "$*" | egrep -v "^Only in |^Binary files " + diff -crd "$@" | egrep -v "^Only in |^Binary files " } #f5# cd to directoy and list files cl() { -- 2.1.4