diff options
| author | Mark D. Baushke | 2006-01-04 02:39:30 +0000 |
|---|---|---|
| committer | Mark D. Baushke | 2006-01-04 02:39:30 +0000 |
| commit | 836f286334b6ad3df1d651236c32cc58b08a2053 (patch) | |
| tree | 53d3bd6ae1b712598bbe6eb02e16793b28167868 | |
| parent | f9c53c973d9f182683fee67a5ce6ca8bc7bd51a7 (diff) | |
| download | emacs-836f286334b6ad3df1d651236c32cc58b08a2053.tar.gz emacs-836f286334b6ad3df1d651236c32cc58b08a2053.zip | |
* mh-e.el (mh-delete-a-msg): Fix whitespace nit.
* mh-index.el (mh-mairix-execute-search): Fix symbol quote.
| -rw-r--r-- | lisp/mh-e/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/mh-e/mh-e.el | 2 | ||||
| -rw-r--r-- | lisp/mh-e/mh-index.el | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index b679c78479c..1f17d15500e 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2006-01-03 Mark D. Baushke <mdb@gnu.org> | ||
| 2 | |||
| 3 | * mh-e.el (mh-delete-a-msg): Fix whitespace nit. | ||
| 4 | * mh-index.el (mh-mairix-execute-search): Fix symbol quote. | ||
| 5 | |||
| 1 | 2006-01-03 Bill Wohler <wohler@newt.com> | 6 | 2006-01-03 Bill Wohler <wohler@newt.com> |
| 2 | 7 | ||
| 3 | * mh-alias.el (mh-alias-add-alias): Grand message and error string | 8 | * mh-alias.el (mh-alias-add-alias): Grand message and error string |
diff --git a/lisp/mh-e/mh-e.el b/lisp/mh-e/mh-e.el index f1712f7b92c..8d0760f331f 100644 --- a/lisp/mh-e/mh-e.el +++ b/lisp/mh-e/mh-e.el | |||
| @@ -1526,7 +1526,7 @@ once when he kept statistics on his mail usage." | |||
| 1526 | (beginning-of-line) | 1526 | (beginning-of-line) |
| 1527 | (setq message (mh-get-msg-num t))) | 1527 | (setq message (mh-get-msg-num t))) |
| 1528 | (if (looking-at mh-scan-refiled-msg-regexp) | 1528 | (if (looking-at mh-scan-refiled-msg-regexp) |
| 1529 | (error "Message %d is refiled; undo refile before deleting" message)) | 1529 | (error "Message %d is refiled; undo refile before deleting" message)) |
| 1530 | (if (looking-at mh-scan-deleted-msg-regexp) | 1530 | (if (looking-at mh-scan-deleted-msg-regexp) |
| 1531 | nil | 1531 | nil |
| 1532 | (mh-set-folder-modified-p t) | 1532 | (mh-set-folder-modified-p t) |
diff --git a/lisp/mh-e/mh-index.el b/lisp/mh-e/mh-index.el index 787acc35333..c1a30ac68b2 100644 --- a/lisp/mh-e/mh-index.el +++ b/lisp/mh-e/mh-index.el | |||
| @@ -1168,7 +1168,7 @@ SEARCH-REGEXP-LIST is used to search." | |||
| 1168 | (set-buffer (get-buffer-create mh-index-temp-buffer)) | 1168 | (set-buffer (get-buffer-create mh-index-temp-buffer)) |
| 1169 | (erase-buffer) | 1169 | (erase-buffer) |
| 1170 | (unless mh-mairix-binary | 1170 | (unless mh-mairix-binary |
| 1171 | (error "Set `mh-mairix-binary appropriately'")) | 1171 | (error "Set `mh-mairix-binary' appropriately")) |
| 1172 | (apply #'call-process mh-mairix-binary nil '(t nil) nil | 1172 | (apply #'call-process mh-mairix-binary nil '(t nil) nil |
| 1173 | "-r" "-f" (format "%s%s/config" mh-user-path mh-mairix-directory) | 1173 | "-r" "-f" (format "%s%s/config" mh-user-path mh-mairix-directory) |
| 1174 | search-regexp-list) | 1174 | search-regexp-list) |