aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2009-01-19 23:25:32 -0500
committermitchell <70453897+667e-11@users.noreply.github.com>2009-01-19 23:25:32 -0500
commitf31e0c7fe39794bec4cdb8cb0886137190800fe9 (patch)
tree240c91e3bfb376fc75df0cb5edbc4ad6b67e84cc /modules
parent791fc92dc7bf15efff444004128b90b8b53ca14f (diff)
downloadtextadept-f31e0c7fe39794bec4cdb8cb0886137190800fe9.tar.gz
textadept-f31e0c7fe39794bec4cdb8cb0886137190800fe9.zip
Use the 'shows_messages' buffer for run commands; modules/textadept/run.lua
Diffstat (limited to 'modules')
-rw-r--r--modules/textadept/run.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/textadept/run.lua b/modules/textadept/run.lua
index 23c6d4cf..8edf3ef6 100644
--- a/modules/textadept/run.lua
+++ b/modules/textadept/run.lua
@@ -177,7 +177,7 @@ local error_details = {
-- @param line_num The line double-clicked.
-- @see error_details
function goto_error(pos, line_num)
- if buffer.shows_errors then
+ if buffer.shows_messages then
line = buffer:get_line(line_num)
for _, error_detail in pairs(error_details) do
local captures = { line:match(error_detail.pattern) }