aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2012-10-03 17:53:23 -0300
committerHisham Muhammad <hisham@gobolinux.org>2012-10-03 17:53:23 -0300
commit93185e7a5d602635c278c8e218dd6b7ad29fade1 (patch)
tree4aa2441045f07aff8c9092ac52b34b62ab9df7ee /src
parent370c898db13a7768888f27a5d378cd4081aaa8b7 (diff)
downloadluarocks-93185e7a5d602635c278c8e218dd6b7ad29fade1.tar.gz
luarocks-93185e7a5d602635c278c8e218dd6b7ad29fade1.tar.bz2
luarocks-93185e7a5d602635c278c8e218dd6b7ad29fade1.zip
Remove unused third argument.
Diffstat (limited to 'src')
-rw-r--r--src/luarocks/search.lua4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/luarocks/search.lua b/src/luarocks/search.lua
index 4e0318c7..ec0fa69c 100644
--- a/src/luarocks/search.lua
+++ b/src/luarocks/search.lua
@@ -287,9 +287,7 @@ end
287-- @param results table: A table where keys are package names and versions 287-- @param results table: A table where keys are package names and versions
288-- are tables matching version strings to an array of rocks servers. 288-- are tables matching version strings to an array of rocks servers.
289-- @param show_repo boolean or nil: Whether to show repository 289-- @param show_repo boolean or nil: Whether to show repository
290-- @param long boolean or nil: Whether to show module files 290function print_results(results, show_repo)
291-- information or not. Default is true.
292function print_results(results, show_repo, long)
293 assert(type(results) == "table") 291 assert(type(results) == "table")
294 assert(type(show_repo) == "boolean" or not show_repo) 292 assert(type(show_repo) == "boolean" or not show_repo)
295 -- Force display of repo location for the time being 293 -- Force display of repo location for the time being