From: Simon Ruderich Date: Wed, 11 Sep 2013 11:42:42 +0000 (+0200) Subject: xinitrc: Fix incorrect use of "$@" in error(). X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=00b1df174cf33da23c6084c38a607b5371d19355 xinitrc: Fix incorrect use of "$@" in error(). --- diff --git a/xinitrc b/xinitrc index 2294e31..f262cae 100755 --- a/xinitrc +++ b/xinitrc @@ -42,7 +42,7 @@ error() { xmessage "$@" & else # Log message to a file which is displayed by my Zsh setup on startup. - echo "$@" >> "$HOME/.xinitrc.errors" + echo "$*" >> "$HOME/.xinitrc.errors" fi } # Save PID of the most recently started background process. Used to terminate