aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/run.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2010-10-28 18:05:18 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2010-10-28 18:05:18 -0400
commit81f276e1e001dac8709bd5f1772b557770a7b6f5 (patch)
tree20640b33141de2a733dc348dda593190c35c6a9f /modules/textadept/run.lua
parentef27dd85a00687a8b4a21b56a6ea9170b1c146b5 (diff)
downloadtextadept-81f276e1e001dac8709bd5f1772b557770a7b6f5.tar.gz
textadept-81f276e1e001dac8709bd5f1772b557770a7b6f5.zip
Fixed syntax error in modules/textadept/run.lua.
Diffstat (limited to 'modules/textadept/run.lua')
-rwxr-xr-xmodules/textadept/run.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/textadept/run.lua b/modules/textadept/run.lua
index 3210f7d4..3cae9e86 100755
--- a/modules/textadept/run.lua
+++ b/modules/textadept/run.lua
@@ -121,7 +121,7 @@ function goto_error(pos, line_num)
local msg = captures[error_detail.message]
if msg then buffer:call_tip_show(buffer.current_pos, msg) end
else
- error(string.format('"%s" %s', utf8_filename, L('does not exist'))
+ error(string.format('"%s" %s', utf8_filename, L('does not exist')))
end
break
end