summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Functions/Calendar/calendar_show4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 7f81ce31a..a5b9e08f5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-08-23 Peter Stephenson <pws@csr.com>
+
+ * unposted: Functions/Calendar/calendar_show: used subscript
+ 0 instead of 1, hence broken since 23562.
+
2007-08-22 Peter Stephenson <pws@csr.com>
* 23794: Src/Zle/compresult.c: completing on 'echo "foo$"<TAB>'
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