From 33cb25bdc02a631aabfac76200ead93f93618942 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sun, 26 Apr 2015 22:18:13 +0300 Subject: [PATCH] Fix a typo in rmail.el * lisp/mail/rmail.el (rmail-ensure-blank-line): Fix a typo in the last commit. (Bug#20429) --- lisp/mail/rmail.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 74533f88fdf..7efcf695b24 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -2127,7 +2127,7 @@ Value is the size of the newly read mail after conversion." Call with point at the end of the message." (unless (bolp) (insert "\n")) - (unless (looking-back "\n\n" (- (point 2))) + (unless (looking-back "\n\n" (- (point) 2)) (insert "\n"))) (defun rmail-add-mbox-headers () -- 2.11.4.GIT