From 0194a626fcb17bcb037341fc6c2f586f54d26035 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Thu, 8 Jan 2009 15:54:26 -0500 Subject: Reformatted all C and Lua code to a single standard for each language. --- core/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/init.lua') diff --git a/core/init.lua b/core/init.lua index 57d06a3d..8a7b96de 100644 --- a/core/init.lua +++ b/core/init.lua @@ -35,7 +35,7 @@ end -- Displays a CocoaDialog of a specified type with given arguments returning -- the result. -- @param kind The CocoaDialog type. --- @param ... A table of key, value arguments. Each key is a --key switch with +-- @param opts A table of key, value arguments. Each key is a --key switch with -- a "value" value. If value is nil, it is omitted and just the switch is -- used. -- @return string CocoaDialog result. @@ -57,7 +57,7 @@ function cocoa_dialog(kind, opts) return lua_dialog.run(args) else local cocoa_dialog = '/CocoaDialog.app/Contents/MacOS/CocoaDialog ' - local p = io.popen( _HOME..cocoa_dialog..table.concat(args, ' ') ) + local p = io.popen(_HOME..cocoa_dialog..table.concat(args, ' ')) local out = p:read('*all') p:close() return out -- cgit v1.2.3