diff options
Diffstat (limited to 'lisp/mh-e/ChangeLog')
| -rw-r--r-- | lisp/mh-e/ChangeLog | 208 |
1 files changed, 208 insertions, 0 deletions
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index 1f37898af76..d0dcac9c728 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog | |||
| @@ -1,3 +1,211 @@ | |||
| 1 | 2005-10-27 Bill Wohler <wohler@newt.com> | ||
| 2 | |||
| 3 | * mh-customize.el (mh-adaptive-cmd-note-flag) | ||
| 4 | (mh-scan-format-file, mh-scan-prog): Sync docstrings with manual. | ||
| 5 | |||
| 6 | * mh-e.el (mh-scan-format-mh, mh-note-deleted, mh-note-refiled) | ||
| 7 | (mh-note-cur, mh-scan-good-msg-regexp) | ||
| 8 | (mh-scan-deleted-msg-regexp, mh-scan-refiled-msg-regexp) | ||
| 9 | (mh-scan-valid-regexp, mh-scan-cur-msg-number-regexp) | ||
| 10 | (mh-scan-date-regexp, mh-scan-rcpt-regexp, mh-scan-body-regexp) | ||
| 11 | (mh-scan-subject-regexp, mh-scan-format-regexp) | ||
| 12 | (mh-folder-font-lock-keywords, mh-set-cmd-note): Sync docstrings | ||
| 13 | with manual. | ||
| 14 | |||
| 15 | * mh-funcs.el (mh-note-copied): Sync docstrings with manual. | ||
| 16 | |||
| 17 | * mh-utils.el (mh-goto-msg): Use mh-scan-msg-search-regexp instead | ||
| 18 | of hard-coded string. | ||
| 19 | (mh-mail-header-separator, mh-signature-separator-regexp): Use | ||
| 20 | "regular expression" in docstring instead of regexp. | ||
| 21 | (mh-scan-msg-number-regexp) | ||
| 22 | (mh-scan-msg-overflow-regexp, mh-scan-msg-format-regexp) | ||
| 23 | (mh-scan-msg-format-string, mh-scan-msg-search-regexp) | ||
| 24 | (mh-cmd-note): Sync docstrings with manual. | ||
| 25 | |||
| 26 | * mh-comp.el (mh-insert-signature, mh-insert-auto-fields): | ||
| 27 | Checkdoc fixes. | ||
| 28 | |||
| 29 | * mh-customize.el (mh-compose-insertion, mh-x-face-file): Ditto. | ||
| 30 | |||
| 31 | * mh-mime.el (mh-mh-to-mime, mh-mml-attach-file) | ||
| 32 | (mh-mml-secure-message-sign, mh-mml-secure-message-encrypt) | ||
| 33 | (mh-mml-secure-message-signencrypt): Ditto | ||
| 34 | |||
| 35 | 2005-10-24 Bill Wohler <wohler@newt.com> | ||
| 36 | |||
| 37 | * mh-gnus.el: Load mml.el in order to see if | ||
| 38 | mml-minibuffer-read-disposition is defined or not. | ||
| 39 | |||
| 40 | * mh-mime.el: Now that mh-gnus.el loads mml, we shouldn't need the | ||
| 41 | mml autoloads. | ||
| 42 | |||
| 43 | 2005-10-23 Miles Bader <miles@gnu.org> | ||
| 44 | |||
| 45 | * .arch-inventory: New file. | ||
| 46 | |||
| 47 | 2005-10-23 Bill Wohler <wohler@newt.com> | ||
| 48 | |||
| 49 | * mh-customize.el (mh-interpret-number-as-range-flag): Sync | ||
| 50 | docstring with manual. | ||
| 51 | |||
| 52 | * mh-identity.el (mh-assoc-ignore-case): Merge with version in | ||
| 53 | mh-alias.el and move to mh-acros.el | ||
| 54 | |||
| 55 | * mh-alias.el (mh-assoc-ignore-case): Merge with version in | ||
| 56 | mh-identity.el and move to mh-acros.el | ||
| 57 | |||
| 58 | * mh-acros.el (mh-assoc-ignore-case): Merge of function from | ||
| 59 | mh-identity.el and mh-alias.el. | ||
| 60 | |||
| 61 | * mh-mime.el: Autoload mm-uu for mm-uu-dissect to avoid compiler | ||
| 62 | warning in Emacs 22. | ||
| 63 | |||
| 64 | 2005-10-23 Satyaki Das <satyaki@theforce.stanford.edu> | ||
| 65 | |||
| 66 | * mh-identity.el (mh-assoc-ignore-case): New macro that uses | ||
| 67 | assoc-string (if the function is available) and falls back on | ||
| 68 | assoc-ignore-case if assoc-string is not found. | ||
| 69 | (mh-identity-field-handler): Use mh-assoc-ignore-case since | ||
| 70 | assoc-ignore-case is a obsolete function in Emacs 22. | ||
| 71 | |||
| 72 | * mh-e.el (mh-folder-buttons-init-flag): New variable that keeps | ||
| 73 | track of whether the tool-bar in mh-folder-mode has been | ||
| 74 | initialized yet. | ||
| 75 | (mh-folder-mode): Initialize the tool-bar for folders the first | ||
| 76 | time we get into mh-letter-mode. | ||
| 77 | |||
| 78 | * mh-customize.el (mh-buffer-exists-p): New function which tests | ||
| 79 | presence of buffers of a given mode. | ||
| 80 | (mh-tool-bar-define): New functions | ||
| 81 | mh-tool-bar-folder-buttons-init and | ||
| 82 | mh-tool-bar-letter-buttons-init are defined. These functions are | ||
| 83 | used to create the tool-bar from the corresponding customizable | ||
| 84 | variables. | ||
| 85 | |||
| 86 | * mh-comp.el (mh-letter-buttons-init-flag): New variable that | ||
| 87 | keeps track of whether the tool-bar in mh-letter-mode has been | ||
| 88 | initialized yet. | ||
| 89 | (mh-letter-mode): Initialize the tool-bar for drafts the first | ||
| 90 | time we get into mh-letter-mode. | ||
| 91 | |||
| 92 | 2005-10-23 Bill Wohler <wohler@newt.com> | ||
| 93 | |||
| 94 | * mh-comp.el (mh-letter-menu): Rename | ||
| 95 | mh-mhn-compose-external-compressed-tar to | ||
| 96 | mh-mh-compose-external-compressed-tar. Rename | ||
| 97 | mh-mhn-compose-anon-ftp to mh-mh-compose-anon-ftp. Rename | ||
| 98 | mh-edit-mhn to mh-mh-to-mime. Rename mh-mhn-directive-present-p to | ||
| 99 | mh-mh-directive-present-p. Rename mh-revert-mhn-edit to | ||
| 100 | mh-mh-to-mime-undo. Rename mh-gnus-pgp-support-flag to | ||
| 101 | mh-pgp-support-flag. Rename mh-compose-insertion value from 'mhn | ||
| 102 | to 'mh. | ||
| 103 | (mh-insert-signature): Rename mh-mhn-directive-present-p to | ||
| 104 | mh-mh-directive-present-p. | ||
| 105 | (mh-send-letter): Rename mh-mhn-directive-present-p to | ||
| 106 | mh-mh-directive-present-p. Rename mh-edit-mhn to mh-mh-to-mime. | ||
| 107 | (mh-letter-mode-map): Rename mh-edit-mhn to mh-mh-to-mime. Rename | ||
| 108 | mh-mhn-compose-anon-ftp to mh-mh-compose-anon-ftp. Rename | ||
| 109 | mh-mhn-compose-external-compressed-tar to | ||
| 110 | mh-mh-compose-external-compressed-tar. Rename mh-revert-mhn-edit | ||
| 111 | to mh-mh-to-mime-undo. Rename mh-mhn-compose-external-type to | ||
| 112 | mh-mh-compose-external-type. Rename mh-mhn-compose-anon-ftp to | ||
| 113 | mh-mh-compose-anon-ftp. Rename | ||
| 114 | mh-mhn-compose-external-compressed-tar to | ||
| 115 | mh-mh-compose-external-compressed-tar. Rename mh-revert-mhn-edit | ||
| 116 | to mh-mh-to-mime-undo. Rename mh-mhn-compose-external-type to | ||
| 117 | mh-mh-compose-external-type. | ||
| 118 | (mh-send-letter, mh-letter-mode-map): Rename mh-edit-mhn to | ||
| 119 | mh-mh-to-mime, mh-revert-mhn-edit to mh-mh-to-mime-undo. | ||
| 120 | (mh-reply, mh-yank-cur-msg, mh-insert-prefix-string): Rename | ||
| 121 | mh-yank-from-start-of-msg to mh-yank-behavior. | ||
| 122 | (mh-letter-mode, mh-to-field, mh-to-fcc, mh-insert-signature) | ||
| 123 | (mh-check-whom, mh-insert-auto-fields, mh-send-letter) | ||
| 124 | (mh-insert-letter, mh-yank-cur-msg, mh-insert-prefix-string) | ||
| 125 | (mh-fully-kill-draft, mh-open-line, mh-letter-complete) | ||
| 126 | (mh-letter-complete-or-space, mh-letter-confirm-address) | ||
| 127 | (mh-letter-next-header-field-or-indent) | ||
| 128 | (mh-letter-previous-header-field) | ||
| 129 | (mh-letter-toggle-header-field-display): Sync docstrings with | ||
| 130 | manual. | ||
| 131 | |||
| 132 | * mh-customize.el (mh-edit-mhn-hook): Rename to | ||
| 133 | mh-mh-to-mime-hook. | ||
| 134 | (mh-yank-from-start-of-msg): Rename to mh-yank-behavior. | ||
| 135 | (mh-compose-insertion): Rename values from 'gnus and 'mhn to 'mh | ||
| 136 | and user-visible values from mhn and Gnus to MH and MML. | ||
| 137 | (mh-before-send-letter-hook): Added 'ispell-message option. | ||
| 138 | (mh-mml-method-default): Rename mh-gnus-pgp-support-flag to | ||
| 139 | mh-pgp-support-flag. | ||
| 140 | (mh-compose-insertion, mh-compose-space-does-completion-flag) | ||
| 141 | (mh-delete-yanked-msg-window-flag) | ||
| 142 | (mh-extract-from-attribution-verb, mh-ins-buf-prefix) | ||
| 143 | (mh-letter-complete-function, mh-letter-fill-column) | ||
| 144 | (mh-mml-method-default, mh-signature-file-name) | ||
| 145 | (mh-signature-separator-flag, mh-x-face-file) | ||
| 146 | (mh-yank-behavior, mail-citation-hook) | ||
| 147 | (mh-before-send-letter-hook, mh-mh-to-mime-hook): Sync docstrings | ||
| 148 | with manual. | ||
| 149 | |||
| 150 | * mh-gnus.el (mml-minibuffer-read-disposition): New function | ||
| 151 | provided for Emacs 21 environments that lack it. | ||
| 152 | |||
| 153 | * mh-mime.el (mh-mml-query-cryptographic-method): Use default | ||
| 154 | prompt convention. | ||
| 155 | (mh-compose-forward): mh-mh-forward-message requires string arg. | ||
| 156 | (mh-minibuffer-read-type): New function. | ||
| 157 | (mh-mhn-args): Rename to mh-mh-to-mime-args. | ||
| 158 | (mh-mhn-compose-insertion): Rename to mh-mh-attach-file. | ||
| 159 | (mh-mhn-compose-forw): Rename to mh-mh-forward-message. | ||
| 160 | (mh-mhn-compose-type): Rename to mh-mh-compose-type. | ||
| 161 | (mh-mhn-compose-anon-ftp): Rename to mh-mh-compose-anon-ftp. | ||
| 162 | Rename mh-mhn-compose-external-type to | ||
| 163 | mh-mh-compose-external-type. | ||
| 164 | (mh-mhn-compose-external-compressed-tar): Rename to | ||
| 165 | mh-mh-compose-external-compressed-tar. Rename | ||
| 166 | mh-mhn-compose-external-type to mh-mh-compose-external-type. | ||
| 167 | (mh-mhn-compose-external-type): Rename to | ||
| 168 | mh-mh-compose-external-type. | ||
| 169 | (mh-edit-mhn): Rename to mh-mh-to-mime. Rename mh-mhn-args to | ||
| 170 | mh-mh-to-mime-args. Rename mh-edit-mhn-hook to mh-mh-to-mime-hook. | ||
| 171 | Use correct program in message. | ||
| 172 | (mh-mhn-directive-present-p): Rename to mh-mh-directive-present-p. | ||
| 173 | (mh-mml-directive-present-p): Rename to mh-mml-tag-present-p. | ||
| 174 | (mh-compose-forward, mh-mh-attach-file) | ||
| 175 | (mh-mh-compose-anon-ftp, mh-mh-compose-external-compressed-tar) | ||
| 176 | (mh-mh-compose-external-type, mh-mh-forward-message) | ||
| 177 | (mh-mml-attach-file): Use mml-minibuffer-read-description, | ||
| 178 | mh-minibuffer-read-type. | ||
| 179 | (mh-mime-content-types): Moved comment about only being used in | ||
| 180 | Emacs 20 to docstring. | ||
| 181 | (mh-mh-compose-external-type): Rename extra-param argument to | ||
| 182 | parameters. | ||
| 183 | (mh-mml-to-mime, mh-secure-message) | ||
| 184 | (mh-mml-unsecure-message, mh-mime-display-part) | ||
| 185 | (mh-mime-display-single): Rename mh-gnus-pgp-support-flag to | ||
| 186 | mh-pgp-support-flag. | ||
| 187 | (mh-compose-insertion): Rename mh-mhn-compose-insertion to | ||
| 188 | mh-mh-attach-file. | ||
| 189 | (mh-compose-forward): Rename mh-mhn-compose-forw to | ||
| 190 | mh-mh-forward-message. | ||
| 191 | (mh-mhn-compose-insertion): Rename mh-mhn-compose-type to | ||
| 192 | mh-mh-compose-type. | ||
| 193 | (mh-compose-insertion, mh-compose-forward, mh-mh-to-mime-args) | ||
| 194 | (mh-mh-attach-file, mh-mh-compose-type) | ||
| 195 | (mh-mh-compose-anon-ftp, mh-mh-compose-external-compressed-tar) | ||
| 196 | (mh-mh-compose-external-compressed-tar) | ||
| 197 | (mh-mh-compose-external-type, mh-mh-forward-message) | ||
| 198 | (mh-mh-to-mime, mh-mh-quote-unescaped-sharp, | ||
| 199 | (mh-mh-to-mime-undo, mh-mh-directive-present-p, mh-mml-to-mime) | ||
| 200 | (mh-mml-attach-file, mh-secure-message, mh-mml-unsecure-message) | ||
| 201 | (mh-mml-secure-message-sign, mh-mml-secure-message-encrypt) | ||
| 202 | (mh-mml-directive-present-p, mh-destroy-postponed-handles) | ||
| 203 | (mh-display-smileys, mh-display-emphasis, mh-mime-save-parts): | ||
| 204 | Sync docstrings with manual. | ||
| 205 | |||
| 206 | * mh-utils.el (mh-gnus-pgp-support-flag): Rename to | ||
| 207 | mh-pgp-support-flag. | ||
| 208 | |||
| 1 | 2005-10-17 Peter S Galbraith <psg@debian.org> | 209 | 2005-10-17 Peter S Galbraith <psg@debian.org> |
| 2 | 210 | ||
| 3 | * mh-identity.el (mh-identity-field-handler): Use | 211 | * mh-identity.el (mh-identity-field-handler): Use |