summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2015-04-26 22:18:13 +0300
committerEli Zaretskii <eliz@gnu.org>2015-04-26 22:18:13 +0300
commit33cb25bdc02a631aabfac76200ead93f93618942 (patch)
tree947a4c91696e9253001ee65253a425d232f37e22
parent2f3b409a28241c88cdaca8778430121a736f7c77 (diff)
downloademacs-33cb25bdc02a631aabfac76200ead93f93618942.tar.gz
Fix a typo in rmail.el
* lisp/mail/rmail.el (rmail-ensure-blank-line): Fix a typo in the last commit. (Bug#20429)
-rw-r--r--lisp/mail/rmail.el2
1 files changed, 1 insertions, 1 deletions
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 ()