disable glob expansion in summary composition

This commit is contained in:
Iris Lightshard 2022-01-22 13:38:46 -07:00
parent eb82854cc0
commit 7c5b6db116
Signed by: Iris Lightshard
GPG key ID: 3B7FBC22144E6398

View file

@ -21,7 +21,8 @@ oldnew=0
summary() {
i=0
for m in $(\ls -1r ${inbox}/new/*); do
# disable glob expansion
set -f
# if there are more than 3 new messages,
# just hint that there is more
i=$((i + 1))
@ -47,6 +48,8 @@ summary() {
set -- $subject
shift
echo ": \"${@}\""
#reenable glob expansion
set +f
done
}