* lisp/mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.

This commit is contained in:
Glenn Morris 2011-03-09 19:41:17 -08:00
parent ec6ecaed88
commit ccb55d277a
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2011-03-10 Glenn Morris <rgm@gnu.org>
* mail/rmail.el (rmail-msgend, rmail-msgbeg): Doc fixes.
2011-03-10 Julien Danjou <julien@danjou.info>
* avoid.el (mouse-avoidance-ignore-p): Do not move the cursor if

View file

@ -2306,11 +2306,11 @@ change; nil means current message."
;;;; *** Rmail Message Selection And Support ***
(defun rmail-msgend (n)
"Return the start position for message number N."
"Return the end position for message number N."
(marker-position (aref rmail-message-vector (1+ n))))
(defun rmail-msgbeg (n)
"Return the end position for message number N."
"Return the start position for message number N."
(marker-position (aref rmail-message-vector n)))
(defun rmail-apply-in-message (msgnum function &rest args)