emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/rcirc-color cfe5774293 1/2: Remove 'help-echo' from /co


From: Philip Kaludercic
Subject: [elpa] externals/rcirc-color cfe5774293 1/2: Remove 'help-echo' from /color output
Date: Fri, 14 Apr 2023 15:50:47 -0400 (EDT)

branch: externals/rcirc-color
commit cfe577429305b4652192e829a6873f7c100fa6ce
Author: Philip Kaludercic <philipk@posteo.net>
Commit: Philip Kaludercic <philipk@posteo.net>

    Remove 'help-echo' from /color output
    
    * rcirc-color.el (rcirc-do-color): Do not assume the structure of
    VALUE, which causes issues when 'rcirc-color' contains symbolic face
    names.
---
 rcirc-color.el | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/rcirc-color.el b/rcirc-color.el
index 26ab582799..be47dfb75d 100644
--- a/rcirc-color.el
+++ b/rcirc-color.el
@@ -1,6 +1,6 @@
 ;;; rcirc-color.el --- color nicks  -*- lexical-binding:t -*-
 
-;; Copyright (C) 2005-2022  Free Software Foundation, Inc.
+;; Copyright (C) 2005-2023  Free Software Foundation, Inc.
 
 ;; Author: Alex Schroeder <alex@gnu.org>
 ;; Maintainer: Alex Schroeder <alex@gnu.org>
@@ -165,10 +165,7 @@ commands."
   (if (not nick)
       (let (names)
         (maphash (lambda (key value)
-                   (add-text-properties
-                    0 (length key)
-                    `(face (,value) help-echo ,(cdr value))
-                    key)
+                   (add-text-properties 0 (length key) `(face (,value)) key)
                    (setq names (cons key names)))
                  rcirc-color-mapping)
         (rcirc-print process (rcirc-nick process) "NOTICE" target



reply via email to

[Prev in Thread] Current Thread [Next in Thread]