Fix a typo in rmail.el

* lisp/mail/rmail.el (rmail-ensure-blank-line): Fix a typo in the
last commit.  (Bug#20429)
This commit is contained in:
Eli Zaretskii 2015-04-26 22:18:13 +03:00
parent 2f3b409a28
commit 33cb25bdc0

View file

@ -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 ()