diff options
author | 2011-01-21 00:41:36 -0500 | |
---|---|---|
committer | 2011-01-21 00:41:36 -0500 | |
commit | 78bcda2db6b0b8669a6fbcf63b1143602f544416 (patch) | |
tree | df837e91e357573ca84be0b20155189252337cec /modules/textadept/session.lua | |
parent | 2247eeb38c71da492cb96711e133b353e7c3129d (diff) | |
download | textadept-78bcda2db6b0b8669a6fbcf63b1143602f544416.tar.gz textadept-78bcda2db6b0b8669a6fbcf63b1143602f544416.zip |
Code cleanup.
Diffstat (limited to 'modules/textadept/session.lua')
-rw-r--r-- | modules/textadept/session.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/textadept/session.lua b/modules/textadept/session.lua index 6127c779..503ee248 100644 --- a/modules/textadept/session.lua +++ b/modules/textadept/session.lua @@ -93,8 +93,8 @@ function load(filename) end return true end -events.connect('arg_none', -- load session when no args are present - function() if SAVE_ON_QUIT then load() end end) +-- Load session when no args are present. +events.connect('arg_none', function() if SAVE_ON_QUIT then load() end end) --- -- Saves a Textadept session to a file. |