sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit 68fcb8ec7763739ddcdf570a1df301129695a3ca
parent c16623b75ad17a7689c6013d7e64d4a1108b8f5c
Author: Dan Callaghan <djc@djc.id.au>
Date:   Sun,  8 May 2022 09:47:14 +1000

fix "warning: `*' interpreted as argument prefix"

Diffstat:
M lib/sup/colormap.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/sup/colormap.rb b/lib/sup/colormap.rb
@@ -236,7 +236,7 @@ class Colormap
     @@instance.send meth, *a
   end
   # Performance shortcut
-  def self.color_for *a; @@instance.color_for *a; end
+  def self.color_for(*a); @@instance.color_for(*a); end
 end
 
 end