Fix misplaced control characters in docstring

Found by flymake.
This commit is contained in:
Daniel Borchmann 2025-03-29 17:26:21 +01:00
parent bd451a954a
commit 6279921553
No known key found for this signature in database
GPG Key ID: 784AA8DF0CCDF625

View File

@ -1976,7 +1976,7 @@ Note that this workaround is incomplete, as explained in this comment."
;; tested with Outlook proper.
(define-advice mml-smime-epg-sign (:after (cont) add-crlf-when-pkcs7)
"If CONT signifies encryption with smime, replace all \n with \r\n."
"If CONT signifies encryption with smime, replace all \\n with \\r\\n."
(when (and (eq (car cont) 'part)
(string= "smime" (or (cdr (assq 'encrypt cont)) "")))
(db/convert-lf-to-crlf-in-buffer)))))