From 6279921553f434018045c103a7dc8fe79e500cbe Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 29 Mar 2025 17:26:21 +0100 Subject: [PATCH] Fix misplaced control characters in docstring Found by flymake. --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index f05bd88..e5171d8 100644 --- a/init.el +++ b/init.el @@ -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)))))