diff options
author | Robin Gareus <robin@gareus.org> | 2016-08-30 23:41:07 +0200 |
---|---|---|
committer | Robin Gareus <robin@gareus.org> | 2016-08-30 23:41:07 +0200 |
commit | d4f4342bb232e87b7954f46fa44e56b49a3cda5f (patch) | |
tree | 85681777ac3b0982ac61fe78429a69327a0d0b7f | |
parent | 43078f7e888288cb2f124bf811cda3e1ad07e012 (diff) | |
download | ardour-d4f4342bb232e87b7954f46fa44e56b49a3cda5f.zip ardour-d4f4342bb232e87b7954f46fa44e56b49a3cda5f.tar.gz ardour-d4f4342bb232e87b7954f46fa44e56b49a3cda5f.tar.bz2 |
fix jump out of local scope
-rw-r--r-- | scripts/tomsloop.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/tomsloop.lua b/scripts/tomsloop.lua index 72e7607..7d03bab 100644 --- a/scripts/tomsloop.lua +++ b/scripts/tomsloop.lua @@ -124,7 +124,6 @@ function factory (params) return function () end print ("bounced " .. n_regions_created .. " regions from loop range (" .. loop:length() .. " frames) to playhead @ frame # " .. playhead) - ::errorout:: -- when this script is called as an action, the output will be printed to the ardour log window function print_help() @@ -274,5 +273,6 @@ function factory (params) return function () print("See also: Lua Action Bounce+Replace Regions") print("") end -- print_help() + ::errorout:: end -- end of anonymous action script function end -- end of script factory |