diff options
author | 2012-01-05 05:20:39 -0500 | |
---|---|---|
committer | 2012-01-05 05:20:39 -0500 | |
commit | 2ab6deaecb4576c932dd63186927e9481bf5dedc (patch) | |
tree | 2574adf1f9c7a789456c1e467c0d98a17a4609b6 /modules/textadept/session.lua | |
parent | 6143b96a6d71a0d8d04ed7d4ddc3696a141112c7 (diff) | |
download | textadept-2ab6deaecb4576c932dd63186927e9481bf5dedc.tar.gz textadept-2ab6deaecb4576c932dd63186927e9481bf5dedc.zip |
Rename '_m' to '_M'.
Diffstat (limited to 'modules/textadept/session.lua')
-rw-r--r-- | modules/textadept/session.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/textadept/session.lua b/modules/textadept/session.lua index 99ac0c46..4e007674 100644 --- a/modules/textadept/session.lua +++ b/modules/textadept/session.lua @@ -5,7 +5,7 @@ local M = {} --[[ This comment is for LuaDoc. --- -- Session support for the textadept module. -module('_m.textadept.session')]] +module('_M.textadept.session')]] -- Markdown: -- ## Settings @@ -28,7 +28,7 @@ M.MAX_RECENT_FILES = 10 -- @param filename The absolute path to the session file to load. Defaults to -- `DEFAULT_SESSION` if not specified. -- @return `true` if the session file was opened and read; `false` otherwise. --- @usage _m.textadept.session.load(filename) +-- @usage _M.textadept.session.load(filename) -- @name load function M.load(filename) local not_found = {} @@ -104,7 +104,7 @@ events.connect('arg_none', function() if M.SAVE_ON_QUIT then M.load() end end) -- details. -- @param filename The absolute path to the session file to save. Defaults to -- either the current session file or `DEFAULT_SESSION` if not specified. --- @usage _m.textadept.session.save(filename) +-- @usage _M.textadept.session.save(filename) -- @name save function M.save(filename) local session = {} |