diff options
Diffstat (limited to 'modules/textadept/bookmarks.lua')
-rw-r--r-- | modules/textadept/bookmarks.lua | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/textadept/bookmarks.lua b/modules/textadept/bookmarks.lua index 74a2ad7d..31ae08bb 100644 --- a/modules/textadept/bookmarks.lua +++ b/modules/textadept/bookmarks.lua @@ -1,7 +1,5 @@ -- Copyright 2007-2011 Mitchell mitchell<att>caladbolg.net. See LICENSE. -local L = locale.localize - local M = {} --[[ This comment is for LuaDoc. @@ -91,7 +89,7 @@ function M.goto_bookmark() markers[#markers + 1] = tostring(line + 1)..': '..text line = buffer:marker_next(line + 1, 2^MARK_BOOKMARK) until line < 0 - local line = gui.filteredlist(L('Select Bookmark'), 'Bookmark', markers) + local line = gui.filteredlist(_L['Select Bookmark'], _L['Bookmark'], markers) if line then _m.textadept.editing.goto_line(line:match('^%d+')) end end |