diff options
Diffstat (limited to 'lisp/mail/mail-utils.el')
-rw-r--r-- | lisp/mail/mail-utils.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/mail-utils.el b/lisp/mail/mail-utils.el index fd00dd19bc2..24015858b02 100644 --- a/lisp/mail/mail-utils.el +++ b/lisp/mail/mail-utils.el @@ -56,7 +56,7 @@ also the To field, unless this would leave an empty To field." (looking-at "BABYL OPTIONS:")))) (defun mail-string-delete (string start end) - "Returns a string containing all of STRING except the part + "Return a string containing all of STRING except the part from START (inclusive) to END (exclusive)." (if (null end) (substring string 0 start) (concat (substring string 0 start) |