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

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

[elpa] externals/nano-modeline 255136d3fc: Bugfix: Elfeed tite having %


From: ELPA Syncer
Subject: [elpa] externals/nano-modeline 255136d3fc: Bugfix: Elfeed tite having % in their title
Date: Fri, 2 Jun 2023 09:59:00 -0400 (EDT)

branch: externals/nano-modeline
commit 255136d3fc4bf09b2869eceb1ffc4c60f7cc70bc
Author: Nicolas P. Rougier <Nicolas.Rougier@inria.fr>
Commit: Nicolas P. Rougier <Nicolas.Rougier@inria.fr>

    Bugfix: Elfeed tite having % in their title
---
 nano-modeline.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/nano-modeline.el b/nano-modeline.el
index 62a6788fdb..d17274357f 100644
--- a/nano-modeline.el
+++ b/nano-modeline.el
@@ -638,7 +638,8 @@ delay needs to be set to 0."
 (defun nano-modeline-elfeed-entry-title ()
   "Elfeed entry title"
   
-  (let* ((title (elfeed-entry-title elfeed-show-entry)))
+  (let* ((title (elfeed-entry-title elfeed-show-entry))
+         (title (string-replace "%" "%%" title)))
     (propertize title 'face (nano-modeline-face 'name))))
 
 (defun nano-modeline-elfeed-search-filter ()



reply via email to

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