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:
parent
2f3b409a28
commit
33cb25bdc0
1 changed files with 1 additions and 1 deletions
|
@ -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 ()
|
||||
|
|
Loading…
Add table
Reference in a new issue