comparison lisp/mh-e/mh-mime.el @ 77941:0bd276ce7806

(mh-mh-directive-present-p): Fix typos in docstrings.
author Juanma Barranquero <lekktu@gmail.com>
date Wed, 06 Jun 2007 22:36:31 +0000
parents e3694f1cb928
children 800dd75c042b e9f94688a064
comparison
equal deleted inserted replaced
77940:c37ffd8b2027 77941:0bd276ce7806
1665 1665
1666 ;;;###mh-autoload 1666 ;;;###mh-autoload
1667 (defun mh-mh-directive-present-p (&optional begin end) 1667 (defun mh-mh-directive-present-p (&optional begin end)
1668 "Check if the text between BEGIN and END might be a MH-style directive. 1668 "Check if the text between BEGIN and END might be a MH-style directive.
1669 The optional argument BEGIN defaults to the beginning of the 1669 The optional argument BEGIN defaults to the beginning of the
1670 buffer, while END defaults to the the end of the buffer." 1670 buffer, while END defaults to the end of the buffer."
1671 (unless begin (setq begin (point-min))) 1671 (unless begin (setq begin (point-min)))
1672 (unless end (setq end (point-max))) 1672 (unless end (setq end (point-max)))
1673 (save-excursion 1673 (save-excursion
1674 (block 'search-for-mh-directive 1674 (block 'search-for-mh-directive
1675 (goto-char begin) 1675 (goto-char begin)