emacs-diffs
[Top][All Lists]
Advanced

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

emacs-28 6243a43: Fix search string generation in nnimap-make-thread-que


From: Lars Ingebrigtsen
Subject: emacs-28 6243a43: Fix search string generation in nnimap-make-thread-query
Date: Sat, 6 Nov 2021 14:25:55 -0400 (EDT)

branch: emacs-28
commit 6243a43ac2b575435efb65d9bdbb15980ea14d78
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Fix search string generation in nnimap-make-thread-query
    
    * lisp/gnus/nnimap.el (nnimap-make-thread-query): Remove text
    properties before constructing the search string (bug#49926).
---
 lisp/gnus/nnimap.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/gnus/nnimap.el b/lisp/gnus/nnimap.el
index 059101c..6b627a4 100644
--- a/lisp/gnus/nnimap.el
+++ b/lisp/gnus/nnimap.el
@@ -2287,7 +2287,7 @@ Return the server's response to the SELECT or EXAMINE 
command."
          nnimap-incoming-split-list)))
 
 (defun nnimap-make-thread-query (header)
-  (let* ((id  (mail-header-id header))
+  (let* ((id (substring-no-properties (mail-header-id header)))
         (refs (split-string
                (or (mail-header-references header)
                    "")))



reply via email to

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