From c90e2ae7970ca0911a9c4388a2c8c3e444b11a04 Mon Sep 17 00:00:00 2001 From: Qingping Hou Date: Sun, 4 Nov 2012 11:20:28 +0800 Subject: [PATCH] delete dulplicate code --- reader.lua | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/reader.lua b/reader.lua index 0e82245e0..ff465a0e3 100755 --- a/reader.lua +++ b/reader.lua @@ -121,26 +121,11 @@ if ARGV[argidx] then if lfs.attributes(ARGV[argidx], "mode") == "directory" then showFileManager(ARGV[argidx]) elseif lfs.attributes(ARGV[argidx], "mode") == "file" then - showReader(ARGV[argidx], optarg["p"]) + showReader(ARGV[argidx]) end UIManager:run() elseif last_file and lfs.attributes(last_file, "mode") == "file" then - showReader(last_file, optarg["p"]) - UIManager:run() -else - return showusage() -end - - -if ARGV[optind] then - if lfs.attributes(ARGV[optind], "mode") == "directory" then - showFileManager(ARGV[optind]) - elseif lfs.attributes(ARGV[optind], "mode") == "file" then - showReader(ARGV[optind], optarg["p"]) - end - UIManager:run() -elseif last_file and lfs.attributes(last_file, "mode") == "file" then - showReader(last_file, optarg["p"]) + showReader(last_file) UIManager:run() else return showusage()