about summary refs log tree commit diff
path: root/Functions/Calendar
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2007-08-23 09:17:02 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2007-08-23 09:17:02 +0000
commit437f67718cd03f1d2eff2331827c2e225dee4aaf (patch)
tree8dee3d86f42d12b98c7c4f869788036750d4fb7c /Functions/Calendar
parentd931eed82655f1cbb54e7e1749642c8965e6d414 (diff)
downloadzsh-437f67718cd03f1d2eff2331827c2e225dee4aaf.tar.gz
zsh-437f67718cd03f1d2eff2331827c2e225dee4aaf.tar.xz
zsh-437f67718cd03f1d2eff2331827c2e225dee4aaf.zip
unposted: calendar_show: error in subscripts
Diffstat (limited to 'Functions/Calendar')
-rw-r--r--Functions/Calendar/calendar_show4
1 files changed, 2 insertions, 2 deletions
diff --git a/Functions/Calendar/calendar_show b/Functions/Calendar/calendar_show
index 77f025ec5..13fc6a491 100644
--- a/Functions/Calendar/calendar_show
+++ b/Functions/Calendar/calendar_show
@@ -16,8 +16,8 @@ if [[ -n $DISPLAY &&  $start -eq $stop ]]; then
   if [[ -n ${commands[xmessage]} ]]; then
     cmd=(xmessage -center)
   fi
-  if [[ -n $cmd[0] ]] &&
-    ! ps -u$UID | grep $cmd[0] >/dev/null 2>&1; then
+  if [[ -n $cmd[1] ]] &&
+    ! ps -u$UID | grep $cmd[1] >/dev/null 2>&1; then
     # turn off job control for this
     ($cmd "$*" &)
   fi