From 572ad667e7c868dbcb2c609cd7d421c3359589b9 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Fri, 15 Sep 2006 18:22:19 +0000 Subject: zsh-users/10720: a couple of checkmail fixes --- Functions/Misc/checkmail | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Functions') diff --git a/Functions/Misc/checkmail b/Functions/Misc/checkmail index 1e03d10a1..fc987e871 100644 --- a/Functions/Misc/checkmail +++ b/Functions/Misc/checkmail @@ -9,6 +9,7 @@ # This function requires zsh-3.0.1 or newer. # +emulate -L zsh local file message for file in "${@:-${mailpath[@]:-${MAIL:-/var/spool/mail/$LOGNAME}}}" @@ -18,7 +19,7 @@ do if [[ -d "$file" ]] then file=( "$file"/**/*(.ND) ) if (($#file)) then - checkmail "${^file}\?$message" + checkmail ${^file}\?$message fi elif test -s "$file" -a -N "$file"; then # this also sets $_ to $file print -r -- "${(e)message:-You have new mail.}" -- cgit 1.4.1