aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/adeptsense.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2013-09-16 22:02:02 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2013-09-16 22:02:02 -0400
commita274210f459e32c11c227f55c2cf7a9cb50af2ad (patch)
tree83c62bae40fe5381913a51bcd007b67107061090 /modules/textadept/adeptsense.lua
parent095980fbbc1f5f4956afdee2802b87ce45f245e7 (diff)
downloadtextadept-a274210f459e32c11c227f55c2cf7a9cb50af2ad.tar.gz
textadept-a274210f459e32c11c227f55c2cf7a9cb50af2ad.zip
Removed the `SC` prefix from most constants in `_SCINTILLA.constants`.
Diffstat (limited to 'modules/textadept/adeptsense.lua')
-rw-r--r--modules/textadept/adeptsense.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/textadept/adeptsense.lua b/modules/textadept/adeptsense.lua
index be350c75..4987f0cf 100644
--- a/modules/textadept/adeptsense.lua
+++ b/modules/textadept/adeptsense.lua
@@ -827,7 +827,7 @@ function M.goto_ctag(sense, kind, title)
if not tonumber(line) then
-- /^ ... $/
buffer.target_start, buffer.target_end = 0, buffer.length
- buffer.search_flags = buffer.SCFIND_REGEXP
+ buffer.search_flags = buffer.FIND_REGEXP
if buffer:search_in_target(line:sub(2, -2)) >= 0 then
buffer:goto_pos(buffer.target_start)
end