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 | 9eda046093639bd46aa77d554e7e8aa90a5c1d18 (patch) | |
tree | a14155d2ce92e9877ad326715cb64209ea26d20f /util/termcolours.lua | |
parent | 403402d40c366f5f320138cbbec011f3121bd086 (diff) | |
download | prosody-9eda046093639bd46aa77d554e7e8aa90a5c1d18.tar.gz prosody-9eda046093639bd46aa77d554e7e8aa90a5c1d18.zip |
util.termcolours: Remove argument from noop function [luacheck]
Diffstat (limited to 'util/termcolours.lua')
-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 |