aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/ext/pm/ctags_browser.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ext/pm/ctags_browser.lua b/core/ext/pm/ctags_browser.lua
index 5166b423..94e10f03 100644
--- a/core/ext/pm/ctags_browser.lua
+++ b/core/ext/pm/ctags_browser.lua
@@ -98,7 +98,7 @@ local container_construct = {
--- Matches 'ctags:[/absolute/path/to/ctags/file]'
function matches(entry_text)
- return entry_text:sub(1, 5) == 'ctags' and true or false
+ return entry_text:sub(1, 5) == 'ctags'
end
---