emacs-diffs
[Top][All Lists]
Advanced

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

emacs-30 4c67f636c08: Fix decoding of non-ASCII email attachments


From: Eli Zaretskii
Subject: emacs-30 4c67f636c08: Fix decoding of non-ASCII email attachments
Date: Sun, 1 Dec 2024 03:16:59 -0500 (EST)

branch: emacs-30
commit 4c67f636c08b6190bb5ab8953d1956b3862a9fb1
Author: Visuwesh <visuweshm@gmail.com>
Commit: Eli Zaretskii <eliz@gnu.org>

    Fix decoding of non-ASCII email attachments
    
    * lisp/mail/rfc2231.el (rfc2231-parse-string): Fix logic when a
    non-ASCII file name is split between two filename*N* parts.
    (Bug#74624)
---
 lisp/mail/rfc2231.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/mail/rfc2231.el b/lisp/mail/rfc2231.el
index 33324cafb5b..632e270a922 100644
--- a/lisp/mail/rfc2231.el
+++ b/lisp/mail/rfc2231.el
@@ -193,7 +193,7 @@ must never cause a Lisp error."
                     (push (list attribute value encoded) cparams))
                    ;; Repetition of a part; do nothing.
                    ((and elem
-                         (null number))
+                         (null part))
                     )
                    ;; Concatenate continuation parts.
                    (t



reply via email to

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