aboutsummaryrefslogtreecommitdiff
path: root/mdir.lua
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2009-10-05 00:10:47 +0200
committerAdrian C. (anrxc) <anrxc@sysphere.org>2009-10-05 00:10:47 +0200
commit4602ca2fa5e8e2e408713f72ae7e4cd14480bc01 (patch)
treebfbf75b8afd738f5a036737404f3eafe87586c66 /mdir.lua
parentaf4e85f99d0ac63127f19640ef47d768d7bed7cd (diff)
downloadvicious-legacy-4602ca2fa5e8e2e408713f72ae7e4cd14480bc01.tar.xz
Lots of coding style changes
Diffstat (limited to 'mdir.lua')
-rw-r--r--mdir.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/mdir.lua b/mdir.lua
index 5aafdd1..8fc7ac6 100644
--- a/mdir.lua
+++ b/mdir.lua
@@ -20,12 +20,12 @@ local function worker(format, mdir)
local count = { new = 0, cur = 0 }
-- Recursively find new messages
- local f = io.popen("find " .. mdir .. " -type f -wholename '*/new/*'")
+ local f = io.popen("find "..mdir.." -type f -wholename '*/new/*'")
for line in f:lines() do count.new = count.new + 1 end
f:close()
-- Recursively find "old" messages lacking the Seen flag
- local f = io.popen("find " .. mdir .. " -type f -regex '.*/cur/.*2,[^S]*$'")
+ local f = io.popen("find "..mdir.." -type f -regex '.*/cur/.*2,[^S]*$'")
for line in f:lines() do count.cur = count.cur + 1 end
f:close()