From bc3b9356b2c885b1ea268330afcf20e1ab3a4704 Mon Sep 17 00:00:00 2001 From: Alexander Momchilov Date: Thu, 28 Dec 2023 23:05:18 -0500 Subject: [PATCH] [ruby/reline] Replace `object_id` comparison with `equal?` (https://github.com/ruby/reline/pull/617) https://github.com/ruby/reline/commit/63deef4ae5 --- lib/reline/kill_ring.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 lib/reline/kill_ring.rb diff --git a/lib/reline/kill_ring.rb b/lib/reline/kill_ring.rb old mode 100644 new mode 100755 index bb3684b42b..84d94a7ff6 --- a/lib/reline/kill_ring.rb +++ b/lib/reline/kill_ring.rb @@ -14,7 +14,7 @@ class Reline::KillRing end def ==(other) - object_id == other.object_id + equal?(other) end end