diff options
author | 2013-04-25 09:34:01 -0400 | |
---|---|---|
committer | 2013-04-25 09:34:01 -0400 | |
commit | 02a014c3d865ce5a426d2fd0f69c801b7f5a0fc0 (patch) | |
tree | 5f51c20606a3cd81312237f305f3fe8845598e26 /modules/textadept/run.lua | |
parent | cb57c684e1fb68ac8b4fc9c26a33bce603265eba (diff) | |
download | textadept-02a014c3d865ce5a426d2fd0f69c801b7f5a0fc0.tar.gz textadept-02a014c3d865ce5a426d2fd0f69c801b7f5a0fc0.zip |
Code and documentation cleanup.
Diffstat (limited to 'modules/textadept/run.lua')
-rw-r--r-- | modules/textadept/run.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/textadept/run.lua b/modules/textadept/run.lua index 6f220385..3ee9d5df 100644 --- a/modules/textadept/run.lua +++ b/modules/textadept/run.lua @@ -18,7 +18,7 @@ local M = {} -- command. -- It is used for error messages with relative file paths. -- @field _G.events.COMPILE_OUTPUT (string) --- Called after executing a language's compile command. +-- Emitted after executing a language's compile command. -- By default, compiler output is printed to the message buffer. To override -- this behavior, connect to the event with an index of `1` and return `true`. -- Arguments: @@ -26,7 +26,7 @@ local M = {} -- * `lexer`: The lexer language name. -- * `output`: The string output from the command. -- @field _G.events.RUN_OUTPUT (string) --- Called after executing a language's run command. +-- Emitted after executing a language's run command. -- By default, output is printed to the message buffer. To override this -- behavior, connect to the event with an index of `1` and return `true`. -- Arguments: |