From aebf1e0bf4aee64be475390ad3bd691d5f1049a1 Mon Sep 17 00:00:00 2001 From: Jonathan Rochkind Date: Mon, 27 Apr 2026 14:52:58 -0400 Subject: [PATCH] Ensure buffer empty string in mutable in new rubies that may have default frozen literals --- lib/yell/formatter.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/yell/formatter.rb b/lib/yell/formatter.rb index 3c9c2dc..76e1992 100644 --- a/lib/yell/formatter.rb +++ b/lib/yell/formatter.rb @@ -201,7 +201,7 @@ def call(event, time = nil, progname = nil, msg = nil) end def to_sprintf( table ) - buff, args, _pattern = "", [], @pattern.dup + buff, args, _pattern = +"", [], @pattern.dup while true match = PatternMatcher.match(_pattern)