From 7e13bfd4a852bcca39ccb4adfd1c317dde13c947 Mon Sep 17 00:00:00 2001
From: Philip Kaludercic <philipk@posteo.net>
Date: Tue, 27 Jul 2021 20:01:49 +0200
Subject: [PATCH] Remove removal of text properties from rcirc-buffer-alist
 keys

* rcirc.el (rcirc-mode): Remove set-text-properties call
---
 lisp/net/rcirc.el | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/lisp/net/rcirc.el b/lisp/net/rcirc.el
index 559f579c0a1..b850ac00648 100644
--- a/lisp/net/rcirc.el
+++ b/lisp/net/rcirc.el
@@ -1318,9 +1318,7 @@ PROCESS is the process object used for communication.
   (when target				; skip server buffer
     (let ((buffer (current-buffer)))
       (with-rcirc-process-buffer process
-        (push (cons (set-text-properties 0 (length target) nil target)
-                    buffer)
-              rcirc-buffer-alist)))
+        (push (cons target buffer) rcirc-buffer-alist)))
     (rcirc-update-short-buffer-names))
 
   (add-hook 'completion-at-point-functions
-- 
2.39.5