aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/init.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2013-08-26 22:36:10 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2013-08-26 22:36:10 -0400
commit92a1e1cae3029a3c4dde56c8dcc5d212fdc11e26 (patch)
tree53d4645ebc30698f4a782bc76232b0b54fe82507 /modules/textadept/init.lua
parentacda712a50dbebafa295ccd07ce8186d9b82aa10 (diff)
downloadtextadept-92a1e1cae3029a3c4dde56c8dcc5d212fdc11e26.tar.gz
textadept-92a1e1cae3029a3c4dde56c8dcc5d212fdc11e26.zip
Renamed `_M.textadept` to `textadept`; `_M` is for language modules only now.
Diffstat (limited to 'modules/textadept/init.lua')
-rw-r--r--modules/textadept/init.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/textadept/init.lua b/modules/textadept/init.lua
index e97d6b10..9dd072b7 100644
--- a/modules/textadept/init.lua
+++ b/modules/textadept/init.lua
@@ -1,13 +1,13 @@
-- Copyright 2007-2013 Mitchell mitchell.att.foicica.com. See LICENSE.
local M = {}
-_M.textadept = M
+textadept = M
--[[ This comment is for LuaDoc.
---
-- The textadept module.
-- It provides utilities for editing text in Textadept.
-module('_M.textadept')]]
+module('textadept')]]
M.adeptsense = require('textadept.adeptsense')
M.bookmarks = require('textadept.bookmarks')