diff options
author | Kim Alvefur <zash@zash.se> | 2016-02-25 22:33:58 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-02-25 22:33:58 +0100 |
commit | 1452ca3d5fe5fcc8fa7f5229c7122de979c5d8b7 (patch) | |
tree | a14155d2ce92e9877ad326715cb64209ea26d20f /util | |
parent | 73a51150e034bb2257b88bd82b54fa786e4d32d9 (diff) | |
download | prosody-1452ca3d5fe5fcc8fa7f5229c7122de979c5d8b7.tar.gz prosody-1452ca3d5fe5fcc8fa7f5229c7122de979c5d8b7.zip |
util.termcolours: Remove argument from noop function [luacheck]
Diffstat (limited to 'util')
-rw-r--r-- | util/termcolours.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/termcolours.lua b/util/termcolours.lua index e99294a4..279ff601 100644 --- a/util/termcolours.lua +++ b/util/termcolours.lua @@ -84,7 +84,7 @@ if windows then end end if not orig_color then - function setstyle(style) end + function setstyle() end end end |