diff options
author | Bill Wohler <wohler@newt.com> | 2008-08-10 23:14:09 +0000 |
---|---|---|
committer | Bill Wohler <wohler@newt.com> | 2008-08-10 23:14:09 +0000 |
commit | 1624e7c9d89684ec12ffbae73f154544103361ee (patch) | |
tree | b73463d508a93b4257e0a483fc070367c35305d8 /lisp/mh-e | |
parent | 143578ae0e35a2be9bd421b5e3aad968fa3dfa7b (diff) | |
download | emacs-1624e7c9d89684ec12ffbae73f154544103361ee.tar.gz |
(mh-pick-regexp-builder): Rename variant mu-mh to gnu-mh and be
explicit about GNU mailutils MH in docstrings (with thanks to Darel
Henman) (closes SF #1768928).
Diffstat (limited to 'lisp/mh-e')
-rw-r--r-- | lisp/mh-e/ChangeLog | 17 | ||||
-rw-r--r-- | lisp/mh-e/mh-search.el | 4 |
2 files changed, 19 insertions, 2 deletions
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog index a71e0724a53..f5568779586 100644 --- a/lisp/mh-e/ChangeLog +++ b/lisp/mh-e/ChangeLog @@ -1,3 +1,20 @@ +2008-08-11 Bill Wohler <wohler@newt.com> + + * mh-e.el (mh-variant-mh-info, mh-variant-nmh-info) + (mh-variant-set-variant, mh-variant-p, mh-profile-component) + (mh-variant-set, mh-variant, mh-scan-format-file): Fix typo in + docstring. + + * mh-comp.el (mh-reply) + * mh-e.el (mh-sys-path, mh-variant-info,mh-variant-mu-mh-info) + (mh-variant-p, mh-profile-component, mh-variant-set, mh-variant) + (mh-scan-format-file) + * mh-folder.el (mh-regenerate-headers) + * mh-scan.el (mh-scan-format) + * mh-search.el (mh-pick-regexp-builder): Rename variant mu-mh to + gnu-mh and be explicit about GNU mailutils MH in docstrings (with + thanks to Darel Henman) (closes SF #1768928). + 2008-08-01 Bill Wohler <wohler@newt.com> * mh-show.el (mh-show-preferred-alternative) diff --git a/lisp/mh-e/mh-search.el b/lisp/mh-e/mh-search.el index 2750c503f7c..7353357f0b4 100644 --- a/lisp/mh-e/mh-search.el +++ b/lisp/mh-e/mh-search.el @@ -1274,12 +1274,12 @@ is used to search." (when (cdr pattern) (setq result `(,@result "-and" "-lbrace" ,@(mh-pick-construct-regexp - (if (and (mh-variant-p 'mu-mh) (car pattern)) + (if (and (mh-variant-p 'gnu-mh) (car pattern)) (format "--pattern=%s" (cdr pattern)) (cdr pattern)) (if (car pattern) (cond - ((mh-variant-p 'mu-mh) + ((mh-variant-p 'gnu-mh) (format "--component=%s" (car pattern))) ((member (car pattern) mh-pick-single-dash) (format "-%s" (car pattern))) |