From 1812cf10492e0dbfc9fe6e696bee0d5f2142af63 Mon Sep 17 00:00:00 2001 From: Paul Ackersviller Date: Mon, 29 Oct 2007 17:49:14 +0000 Subject: Merge of users/10720: arno + pws: bad recursive argument handling and need to be safer about options. --- Functions/Misc/checkmail | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Functions') diff --git a/Functions/Misc/checkmail b/Functions/Misc/checkmail index 9cc743db4..fc987e871 100644 --- a/Functions/Misc/checkmail +++ b/Functions/Misc/checkmail @@ -1,7 +1,7 @@ #! /usr/local/bin/zsh # # This autoloadable function checks the folders specified as arguments -# for new mails. The arguments are interpeted in exactly the same way +# for new mails. The arguments are interpreted in exactly the same way # as the mailpath special zsh parameter (see zshparam(1)). # # If no arguments are given mailpath is used. If mailpath is empty, $MAIL @@ -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