diff options
author | 2010-06-14 18:21:57 -0400 | |
---|---|---|
committer | 2010-06-14 18:21:57 -0400 | |
commit | 6169e7d42c434ef6a01b199e0f2729a25b389e43 (patch) | |
tree | e09ea3e68bb6c6962767ac8f520a97bc2e4de4bd /init.lua | |
parent | 2873c1499b1a88847b30ce93e8da3a8891754e3d (diff) | |
download | textadept-6169e7d42c434ef6a01b199e0f2729a25b389e43.tar.gz textadept-6169e7d42c434ef6a01b199e0f2729a25b389e43.zip |
Fixes from Robert Gieseke.
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -10,9 +10,7 @@ local paths = { } package.path = table.concat(paths, ';') -if not user_dofile('init.lua') then -require 'textadept' -end +if not user_dofile('init.lua') then require 'textadept' end if not RESETTING then -- for Windows, create arg table from single command line string (arg[0]) |