diff options
author | 2008-03-03 22:12:42 -0500 | |
---|---|---|
committer | 2008-03-03 22:12:42 -0500 | |
commit | bdc82eaee1c444bb79e5c926bd9f2a2c1ee816a3 (patch) | |
tree | d6e850f2bbc9c173527cc87847186d0bcf4d6f70 | |
parent | 63da421a2987c5d71c7adb99d0b82c32116c55ba (diff) | |
download | textadept-bdc82eaee1c444bb79e5c926bd9f2a2c1ee816a3.tar.gz textadept-bdc82eaee1c444bb79e5c926bd9f2a2c1ee816a3.zip |
Modified some package paths for consistency.
-rw-r--r-- | core/init.lua | 2 | ||||
-rw-r--r-- | init.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/init.lua b/core/init.lua index f25fb5e2..5f349634 100644 --- a/core/init.lua +++ b/core/init.lua @@ -34,7 +34,7 @@ function cocoa_dialog(kind, opts) return out end -package.path = package.path..';'.._HOME..'/core/?.lua' +package.path = _HOME..'/core/?.lua;'..package.path require 'iface' require 'events' @@ -5,7 +5,7 @@ require 'ext/find' require 'ext/mime_types' require 'ext/keys' -local mpath = _HOME..'modules/?.lua;'.._HOME..'/modules/?/init.lua' +local mpath = _HOME..'/modules/?.lua;'.._HOME..'/modules/?/init.lua' package.path = mpath..';'..package.path -- modules to load on startup |