]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix space parsing in gnus-base64-repad
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 29 Sep 2020 13:36:46 +0000 (15:36 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 29 Sep 2020 13:36:46 +0000 (15:36 +0200)
* lisp/gnus/gnus-util.el (gnus-base64-repad): Get the separator
regexp right -- there will often be spaces around the newlines.

lisp/gnus/gnus-util.el

index f8126906b873902c29aba74feeae02e3509f225d..e98af10e1a072c74c6e977d323bb238a0979a441 100644 (file)
@@ -1368,7 +1368,7 @@ CRLF (RFC 5321 SMTP)."
   ;;   input (3.1, 3.3)
   ;; - if line-length is set, error on input exceeding the limit (3.1)
   ;; - reject characters outside base encoding (3.3, also section 12)
-  (let ((splitstr (split-string str "[\r\n]" t)))
+  (let ((splitstr (split-string str "\\s-+" t)))
     (when (and reject-newlines (> (length splitstr) 1))
       (error "Invalid Base64 string"))
     (dolist (substr splitstr)