Mercurial > emacs
comparison lisp/mh-e/ChangeLog @ 68529:7daec5f4a289
* mh-alias.el (mh-alias-gecos-name): Use mh-replace-regexp-in-string
instead of replace-regexp-in-string.
(crm, multi-prompt): Use mh-require instead of require.
(mh-goto-address-find-address-at-point): Use
mh-line-beginning-position and mh-line-end-position instead of
line-beginning-position and line-end-position. Use
mh-match-string-no-properties instead of match-string-no-properties.
* mh-comp.el (mh-modify-header-field): Use mh-line-beginning-position
and mh-line-end-position instead of line-beginning-position and
line-end-position.
* mh-compat.el (mailabbrev): Use mh-require instead of require.
(mh-assoc-string, mh-display-completion-list, mh-face-foreground)
(mh-face-background): Make docstring consistent.
(mh-require, mh-cancel-timer, mh-display-color-cells)
(mh-line-beginning-position, mh-line-end-position)
(mh-match-string-no-properties, mh-replace-regexp-in-string)
(mh-view-mode-enter): Move definition here from mh-xemacs.el and add
mh- prefix since compatibility functions should have our package
prefix (mh-) by Emacs convention and to avoid messing up checks for
the same functions in other packages.
* mh-e.el (mh-compiling-flag): Move mh-xemacs-compiling-flag here from
mh-xemacs.el and rename.
(mh-xargs): Use mh-line-beginning-position and mh-line-end-position
instead of line-beginning-position and line-end-position.
(mh-defface-compat): Use mh-display-color-cells instead of
display-color-cells.
* mh-folder.el (which-func): Use mh-require instead of require.
* mh-funcs.el (mh-list-folders): Use mh-view-mode-enter instead of
view-mode-enter.
* mh-gnus.el (gnus-util, mm-bodies, mm-decode, mm-view, mml): Use
mh-require instead of require.
* mh-letter.el (mh-letter-header-end, mh-letter-mode)
(mh-letter-next-header-field): Use mh-line-beginning-position and
mh-line-end-position instead of line-beginning-position and
line-end-position.
* mh-limit.el (mh-subject-to-sequence-unthreaded): Use
mh-match-string-no-properties instead of match-string-no-properties.
(mh-narrow-to-header-field): Use mh-line-beginning-position and
mh-line-end-position instead of line-beginning-position and
line-end-position.
* mh-mime.el (mh-mime-inline-part, mh-mm-display-part)
(mh-mh-quote-unescaped-sharp, mh-mh-directive-present-p): Use
mh-line-beginning-position and mh-line-end-position instead of
line-beginning-position and line-end-position.
* mh-search.el (which-func): Use mh-require instead of require.
(mh-make-pick-template, mh-index-visit-folder)
(mh-pick-parse-search-buffer, mh-swish-next-result)
(mh-mairix-next-result, mh-namazu-next-result)
(mh-pick-next-result, mh-grep-next-result)
(mh-index-create-imenu-index, mh-index-match-checksum)
(mh-md5sum-parser, mh-openssl-parser, mh-index-update-maps): Use
mh-line-beginning-position and mh-line-end-position instead of
line-beginning-position and line-end-position.
* mh-seq.el (mh-list-sequences): Use mh-view-mode-enter instead of
view-mode-enter.
(mh-folder-size-flist, mh-parse-flist-output-line)
(mh-add-sequence-notation): Use mh-line-beginning-position and
mh-line-end-position instead of line-beginning-position and
line-end-position.
* mh-show.el (mh-show-addr): Use mh-require instead of require.
* mh-speed.el (mh-folder-speedbar-menu-items, mh-speed-toggle)
(mh-speed-view, mh-folder-speedbar-buttons)
(mh-speed-highlight, mh-speed-goto-folder)
(mh-speed-add-buttons, mh-speed-parse-flists-output)
(mh-speed-invalidate-map, mh-speedbar-change-expand-button-char)
(mh-speed-add-folder): Use mh-line-beginning-position and
mh-line-end-position instead of line-beginning-position and
line-end-position.
(mh-speed-flists): Use mh-cancel-timer instead of cancel-timer.
* mh-thread.el (mh-thread-find-children)
(mh-thread-parse-scan-line, mh-thread-generate): Use
mh-line-beginning-position and mh-line-end-position instead of
line-beginning-position and line-end-position.
* mh-utils.el (mh-colors-available-p): Use mh-display-color-cells
instead of display-color-cells.
(mh-folder-list): Use mh-replace-regexp-in-string instead of
replace-regexp-in-string.
(mh-sub-folders-actual, mh-letter-toggle-header-field-display): Use
mh-line-beginning-position and mh-line-end-position instead of
line-beginning-position and line-end-position.
* mh-comp.el (mh-send-sub): Don't find components file in current
directory--this seems to have been a side-effect of commenting out the
use of an old mh-etc variable. Improve error message.
author | Bill Wohler <wohler@newt.com> |
---|---|
date | Wed, 01 Feb 2006 23:24:34 +0000 (2006-02-01) |
parents | 6a7173abcf59 |
children | 52ef8d8ecd83 |
comparison
equal
deleted
inserted
replaced
68528:bd5e46db392c | 68529:7daec5f4a289 |
---|---|
1 2006-02-01 Bill Wohler <wohler@newt.com> | |
2 | |
3 * mh-alias.el (mh-alias-gecos-name): Use | |
4 mh-replace-regexp-in-string instead of replace-regexp-in-string. | |
5 (crm, multi-prompt): Use mh-require instead of require. | |
6 (mh-goto-address-find-address-at-point): Use | |
7 mh-line-beginning-position and mh-line-end-position instead of | |
8 line-beginning-position and line-end-position. Use | |
9 mh-match-string-no-properties instead of | |
10 match-string-no-properties. | |
11 | |
12 * mh-comp.el (mh-modify-header-field): Use | |
13 mh-line-beginning-position and mh-line-end-position instead of | |
14 line-beginning-position and line-end-position. | |
15 | |
16 * mh-compat.el (mailabbrev): Use mh-require instead of require. | |
17 (mh-assoc-string, mh-display-completion-list, mh-face-foreground) | |
18 (mh-face-background): Make docstring consistent. | |
19 (mh-require, mh-cancel-timer, mh-display-color-cells) | |
20 (mh-line-beginning-position, mh-line-end-position) | |
21 (mh-match-string-no-properties, mh-replace-regexp-in-string) | |
22 (mh-view-mode-enter): Move definition here from mh-xemacs.el and | |
23 add mh- prefix since compatibility functions should have our | |
24 package prefix (mh-) by Emacs convention and to avoid messing up | |
25 checks for the same functions in other packages. | |
26 | |
27 * mh-e.el (mh-compiling-flag): Move mh-xemacs-compiling-flag here | |
28 from mh-xemacs.el and rename. | |
29 (mh-xargs): Use mh-line-beginning-position and | |
30 mh-line-end-position instead of line-beginning-position and | |
31 line-end-position. | |
32 (mh-defface-compat): Use mh-display-color-cells instead of | |
33 display-color-cells. | |
34 | |
35 * mh-folder.el (which-func): Use mh-require instead of require. | |
36 | |
37 * mh-funcs.el (mh-list-folders): Use mh-view-mode-enter instead of | |
38 view-mode-enter. | |
39 | |
40 * mh-gnus.el (gnus-util, mm-bodies, mm-decode, mm-view, mml): Use | |
41 mh-require instead of require. | |
42 | |
43 * mh-letter.el (mh-letter-header-end, mh-letter-mode) | |
44 (mh-letter-next-header-field): Use mh-line-beginning-position and | |
45 mh-line-end-position instead of line-beginning-position and | |
46 line-end-position. | |
47 | |
48 * mh-limit.el (mh-subject-to-sequence-unthreaded): Use | |
49 mh-match-string-no-properties instead of | |
50 match-string-no-properties. | |
51 (mh-narrow-to-header-field): Use mh-line-beginning-position and | |
52 mh-line-end-position instead of line-beginning-position and | |
53 line-end-position. | |
54 | |
55 * mh-mime.el (mh-mime-inline-part, mh-mm-display-part) | |
56 (mh-mh-quote-unescaped-sharp, mh-mh-directive-present-p): Use | |
57 mh-line-beginning-position and mh-line-end-position instead of | |
58 line-beginning-position and line-end-position. | |
59 | |
60 * mh-search.el (which-func): Use mh-require instead of require. | |
61 (mh-make-pick-template, mh-index-visit-folder) | |
62 (mh-pick-parse-search-buffer, mh-swish-next-result) | |
63 (mh-mairix-next-result, mh-namazu-next-result) | |
64 (mh-pick-next-result, mh-grep-next-result) | |
65 (mh-index-create-imenu-index, mh-index-match-checksum) | |
66 (mh-md5sum-parser, mh-openssl-parser, mh-index-update-maps): Use | |
67 mh-line-beginning-position and mh-line-end-position instead of | |
68 line-beginning-position and line-end-position. | |
69 | |
70 * mh-seq.el (mh-list-sequences): Use mh-view-mode-enter instead of | |
71 view-mode-enter. | |
72 (mh-folder-size-flist, mh-parse-flist-output-line) | |
73 (mh-add-sequence-notation): Use mh-line-beginning-position and | |
74 mh-line-end-position instead of line-beginning-position and | |
75 line-end-position. | |
76 | |
77 * mh-show.el (mh-show-addr): Use mh-require instead of require. | |
78 | |
79 * mh-speed.el (mh-folder-speedbar-menu-items, mh-speed-toggle) | |
80 (mh-speed-view, mh-folder-speedbar-buttons) | |
81 (mh-speed-highlight, mh-speed-goto-folder) | |
82 (mh-speed-add-buttons, mh-speed-parse-flists-output) | |
83 (mh-speed-invalidate-map, mh-speedbar-change-expand-button-char) | |
84 (mh-speed-add-folder): Use mh-line-beginning-position and | |
85 mh-line-end-position instead of line-beginning-position and | |
86 line-end-position. | |
87 (mh-speed-flists): Use mh-cancel-timer instead of cancel-timer. | |
88 | |
89 * mh-thread.el (mh-thread-find-children) | |
90 (mh-thread-parse-scan-line, mh-thread-generate): Use | |
91 mh-line-beginning-position and mh-line-end-position instead of | |
92 line-beginning-position and line-end-position. | |
93 | |
94 * mh-utils.el (mh-colors-available-p): Use mh-display-color-cells | |
95 instead of display-color-cells. | |
96 (mh-folder-list): Use mh-replace-regexp-in-string instead of | |
97 replace-regexp-in-string. | |
98 (mh-sub-folders-actual, mh-letter-toggle-header-field-display): | |
99 Use mh-line-beginning-position and mh-line-end-position instead of | |
100 line-beginning-position and line-end-position. | |
101 | |
102 * mh-comp.el (mh-send-sub): Don't find components file in current | |
103 directory--this seems to have been a side-effect of commenting out | |
104 the use of an old mh-etc variable. Improve error message. | |
105 | |
1 2006-01-31 Bill Wohler <wohler@newt.com> | 106 2006-01-31 Bill Wohler <wohler@newt.com> |
2 | 107 |
3 * mh-acros.el (mh-defun-compat, mh-defmacro-compat): Add name | 108 * mh-acros.el (mh-defun-compat, mh-defmacro-compat): Add name |
4 argument since compatibility functions should have our package | 109 argument since compatibility functions should have our package |
5 prefix (mh-) by Emacs convention and to avoid messing up checks | 110 prefix (mh-) by Emacs convention and to avoid messing up checks |
6 for the same functions in other packages. Use explicit argument | 111 for the same functions in other packages. Use explicit argument |
7 instead of forming name by adding mh-e prefix so that one can grep | 112 instead of forming name by adding mh- prefix so that one can grep |
8 and find the definition. | 113 and find the definition. |
9 | 114 |
10 * mh-alias.el (mh-alias-local-users, mh-alias-reload) | 115 * mh-alias.el (mh-alias-local-users, mh-alias-reload) |
11 (mh-alias-expand, mh-alias-minibuffer-confirm-address): Use | 116 (mh-alias-expand, mh-alias-minibuffer-confirm-address): Use |
12 mh-assoc-string instead of assoc-string. | 117 mh-assoc-string instead of assoc-string. |