diff options
author | 2010-10-28 17:36:06 -0400 | |
---|---|---|
committer | 2010-10-28 17:36:06 -0400 | |
commit | 0ebbe321af357655d6833f9ca0792b3e212e57f8 (patch) | |
tree | 4f4bc44e6e315e991cc0e855f9ae82a57681639f | |
parent | 8eb22e6443ad10009dd4c89e77a593eb91bab19b (diff) | |
download | textadept-0ebbe321af357655d6833f9ca0792b3e212e57f8.tar.gz textadept-0ebbe321af357655d6833f9ca0792b3e212e57f8.zip |
Fixed bug in modules/textadept/run.lua from localization changes.
-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 772214cb..3210f7d4 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', L('does not exist'), utf8_filename)) + error(string.format('"%s" %s', utf8_filename, L('does not exist')) end break end |