diff options
| author | Glenn Morris | 2018-02-16 15:16:15 -0500 |
|---|---|---|
| committer | Glenn Morris | 2018-02-16 15:16:15 -0500 |
| commit | 66a4e651f3cf38c320d1a9d5ae6f88dcc641792b (patch) | |
| tree | 0fa5ba9ab57893ae3bca46bd09d8b52105f8a17a /lisp/mh-e | |
| parent | 35e5c57db311c3d6c1c3a8dd4edc3d756d1d5d24 (diff) | |
| download | emacs-66a4e651f3cf38c320d1a9d5ae6f88dcc641792b.tar.gz emacs-66a4e651f3cf38c320d1a9d5ae6f88dcc641792b.zip | |
; Fix doc typos related to indefinite articles
Diffstat (limited to 'lisp/mh-e')
| -rw-r--r-- | lisp/mh-e/mh-e.el | 2 | ||||
| -rw-r--r-- | lisp/mh-e/mh-mime.el | 2 | ||||
| -rw-r--r-- | lisp/mh-e/mh-search.el | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/lisp/mh-e/mh-e.el b/lisp/mh-e/mh-e.el index 63d7a2973fb..05ff672da52 100644 --- a/lisp/mh-e/mh-e.el +++ b/lisp/mh-e/mh-e.el | |||
| @@ -831,7 +831,7 @@ This assumes that a temporary buffer is set up." | |||
| 831 | (expand-file-name "flists" dir))))))))) | 831 | (expand-file-name "flists" dir))))))))) |
| 832 | 832 | ||
| 833 | (defun mh-file-command-p (file) | 833 | (defun mh-file-command-p (file) |
| 834 | "Return t if file FILE is the name of a executable regular file." | 834 | "Return t if file FILE is the name of an executable regular file." |
| 835 | (and (file-regular-p file) (file-executable-p file))) | 835 | (and (file-regular-p file) (file-executable-p file))) |
| 836 | 836 | ||
| 837 | (defun mh-variant-set-variant (variant) | 837 | (defun mh-variant-set-variant (variant) |
diff --git a/lisp/mh-e/mh-mime.el b/lisp/mh-e/mh-mime.el index 967eb869a25..e2c682a3996 100644 --- a/lisp/mh-e/mh-mime.el +++ b/lisp/mh-e/mh-mime.el | |||
| @@ -1242,7 +1242,7 @@ MESSAGE number." | |||
| 1242 | "message/rfc822" | 1242 | "message/rfc822" |
| 1243 | (if (string= "" description) nil description) | 1243 | (if (string= "" description) nil description) |
| 1244 | "inline")) | 1244 | "inline")) |
| 1245 | (t (error "The message number, %s, is not a integer" msg))))) | 1245 | (t (error "The message number, %s, is not an integer" msg))))) |
| 1246 | 1246 | ||
| 1247 | (defun mh-mh-forward-message (&optional description folder messages) | 1247 | (defun mh-mh-forward-message (&optional description folder messages) |
| 1248 | "Add tag to forward a message. | 1248 | "Add tag to forward a message. |
diff --git a/lisp/mh-e/mh-search.el b/lisp/mh-e/mh-search.el index 3e591c65383..8b8ba964560 100644 --- a/lisp/mh-e/mh-search.el +++ b/lisp/mh-e/mh-search.el | |||
| @@ -443,7 +443,7 @@ search all folders." | |||
| 443 | (setq redo-flag t)) | 443 | (setq redo-flag t)) |
| 444 | ((mh-folder-exists-p new-folder) | 444 | ((mh-folder-exists-p new-folder) |
| 445 | ;; Folder exists but we don't have it open. That means they are | 445 | ;; Folder exists but we don't have it open. That means they are |
| 446 | ;; stale results from a old flists search. Clear it out. | 446 | ;; stale results from an old flists search. Clear it out. |
| 447 | (mh-exec-cmd-quiet nil "rmf" new-folder))) | 447 | (mh-exec-cmd-quiet nil "rmf" new-folder))) |
| 448 | (setq message (mh-search "+" mh-flists-results-folder | 448 | (setq message (mh-search "+" mh-flists-results-folder |
| 449 | redo-flag window-config) | 449 | redo-flag window-config) |
| @@ -1583,7 +1583,7 @@ If the folder returned doesn't exist then it is created." | |||
| 1583 | chosen-name)) | 1583 | chosen-name)) |
| 1584 | 1584 | ||
| 1585 | (defun mh-index-folder-search-regexp (folder) | 1585 | (defun mh-index-folder-search-regexp (folder) |
| 1586 | "If FOLDER was created by a index search, return the search regexp. | 1586 | "If FOLDER was created by an index search, return the search regexp. |
| 1587 | Return nil if FOLDER doesn't exist or the .mhe_index file is | 1587 | Return nil if FOLDER doesn't exist or the .mhe_index file is |
| 1588 | garbled." | 1588 | garbled." |
| 1589 | (ignore-errors | 1589 | (ignore-errors |
| @@ -1912,7 +1912,7 @@ origin-index) map is updated too." | |||
| 1912 | 1912 | ||
| 1913 | (defun mh-index-update-single-msg (msg checksum origin-map) | 1913 | (defun mh-index-update-single-msg (msg checksum origin-map) |
| 1914 | "Update various maps for one message. | 1914 | "Update various maps for one message. |
| 1915 | MSG is a index folder message, CHECKSUM its MD5 hash and | 1915 | MSG is an index folder message, CHECKSUM its MD5 hash and |
| 1916 | ORIGIN-MAP, if non-nil, a hash table containing which maps each | 1916 | ORIGIN-MAP, if non-nil, a hash table containing which maps each |
| 1917 | message in the index folder to the folder and message that it was | 1917 | message in the index folder to the folder and message that it was |
| 1918 | copied from. The function updates the hash tables | 1918 | copied from. The function updates the hash tables |