diff options
| author | Lars Ingebrigtsen | 2021-11-06 19:25:42 +0100 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2021-11-06 19:25:50 +0100 |
| commit | 6243a43ac2b575435efb65d9bdbb15980ea14d78 (patch) | |
| tree | b1a170b7f757832d775864b818fc0371dbf23099 | |
| parent | f05b8a939b7ad57e9526510d510ff24484dcb520 (diff) | |
| download | emacs-6243a43ac2b575435efb65d9bdbb15980ea14d78.tar.gz emacs-6243a43ac2b575435efb65d9bdbb15980ea14d78.zip | |
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).
| -rw-r--r-- | lisp/gnus/nnimap.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/nnimap.el b/lisp/gnus/nnimap.el index 059101c8907..6b627a4b756 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." | |||
| 2287 | nnimap-incoming-split-list))) | 2287 | nnimap-incoming-split-list))) |
| 2288 | 2288 | ||
| 2289 | (defun nnimap-make-thread-query (header) | 2289 | (defun nnimap-make-thread-query (header) |
| 2290 | (let* ((id (mail-header-id header)) | 2290 | (let* ((id (substring-no-properties (mail-header-id header))) |
| 2291 | (refs (split-string | 2291 | (refs (split-string |
| 2292 | (or (mail-header-references header) | 2292 | (or (mail-header-references header) |
| 2293 | ""))) | 2293 | ""))) |