diff options
author | 2010-10-28 18:05:18 -0400 | |
---|---|---|
committer | 2010-10-28 18:05:18 -0400 | |
commit | 81f276e1e001dac8709bd5f1772b557770a7b6f5 (patch) | |
tree | 20640b33141de2a733dc348dda593190c35c6a9f /modules/textadept | |
parent | ef27dd85a00687a8b4a21b56a6ea9170b1c146b5 (diff) | |
download | textadept-81f276e1e001dac8709bd5f1772b557770a7b6f5.tar.gz textadept-81f276e1e001dac8709bd5f1772b557770a7b6f5.zip |
Fixed syntax error in modules/textadept/run.lua.
Diffstat (limited to 'modules/textadept')
-rwxr-xr-x | modules/textadept/run.lua | 2 |
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 |