diff options
author | Bill Wohler <wohler@newt.com> | 2006-01-16 05:41:26 +0000 |
---|---|---|
committer | Bill Wohler <wohler@newt.com> | 2006-01-16 05:41:26 +0000 |
commit | fc77df2c34d088921e1952a8fce5470c5250ad89 (patch) | |
tree | 59457e8693a6a633d918c13f27e61aae8228d9a4 /lisp/mh-e | |
parent | 28f74fdf77eaab2e9daf54e2d5b0b729c5201e4f (diff) | |
download | emacs-fc77df2c34d088921e1952a8fce5470c5250ad89.tar.gz |
* mh-e.el (mh-limit-map, mh-help-messages): Change keybinding of
mh-narrow-to-from from / f to / m; mh-narrow-to-range from / r to / g.
* mh-utils.el (mh-show-limit-map): Ditto.
Diffstat (limited to 'lisp/mh-e')
-rw-r--r-- | lisp/mh-e/ChangeLog | 6 | ||||
-rw-r--r-- | lisp/mh-e/mh-e.el | 8 | ||||
-rw-r--r-- | lisp/mh-e/mh-utils.el | 4 |
3 files changed, 12 insertions, 6 deletions
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index debaf5c943a..23a0a2041a5 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog @@ -1,5 +1,11 @@ 2006-01-15 Bill Wohler <wohler@newt.com> + * mh-e.el (mh-limit-map, mh-help-messages): Change keybinding of + mh-narrow-to-from from / f to / m; mh-narrow-to-range from / r to + / g. + + * mh-utils.el (mh-show-limit-map): Ditto. + * mh-exec.el: Require mh-acros, mh-buffers, and mh-utils for standalone compile. (mh-progs, mh-lib, mh-lib-progs): Move here from mh-init.el. diff --git a/lisp/mh-e/mh-e.el b/lisp/mh-e/mh-e.el index 8319738d482..c173b0c75dc 100644 --- a/lisp/mh-e/mh-e.el +++ b/lisp/mh-e/mh-e.el @@ -2756,8 +2756,8 @@ in list." "'" mh-narrow-to-tick "?" mh-prefix-help "c" mh-narrow-to-cc - "f" mh-narrow-to-from - "r" mh-narrow-to-range + "g" mh-narrow-to-range + "m" mh-narrow-to-from "s" mh-narrow-to-subject "t" mh-narrow-to-to "w" mh-widen) @@ -2815,7 +2815,7 @@ in list." "\n [T]hread, [/]limit, e[X]tract, [D]igest, [I]nc spools.") (?F "[l]ist; [v]isit folder;\n" - "[n]ew messages; [']ticked messages; [s]earch; [i]ndexed search;\n" + "[n]ew messages; [']ticked messages; [s]earch;\n" "[p]ack; [S]ort; [r]escan; [k]ill") (?P "[p]rint message to [f]ile; old-style [l]pr printing;\n" "Toggle printing of [C]olors, [F]aces") @@ -2823,7 +2823,7 @@ in list." "[s]equences, [l]ist,\n" "[d]elete message from sequence, [k]ill sequence") (?T "[t]oggle, [d]elete, [o]refile thread") - (?/ "Limit to [c]c, [f]rom, [r]ange, [s]ubject, [t]o; [w]iden") + (?/ "Limit to [c]c, ran[g]e, fro[m], [s]ubject, [t]o; [w]iden") (?X "un[s]har, [u]udecode message") (?D "[b]urst digest") (?K "[v]iew, [i]nline, [o]utput/save MIME part; save [a]ll parts; \n" diff --git a/lisp/mh-e/mh-utils.el b/lisp/mh-e/mh-utils.el index b37326b7701..111dfd2e6cd 100644 --- a/lisp/mh-e/mh-utils.el +++ b/lisp/mh-e/mh-utils.el @@ -1000,8 +1000,8 @@ still visible.\n") "'" mh-show-narrow-to-tick "?" mh-prefix-help "c" mh-show-narrow-to-cc - "f" mh-show-narrow-to-from - "r" mh-show-narrow-to-range + "g" mh-show-narrow-to-range + "m" mh-show-narrow-to-from "s" mh-show-narrow-to-subject "t" mh-show-narrow-to-to "w" mh-show-widen) |