From: Bill Wohler Date: Sun, 10 Aug 2008 23:14:09 +0000 (+0000) Subject: (mh-pick-regexp-builder): Rename variant mu-mh to gnu-mh and be X-Git-Tag: emacs-pretest-23.0.90~3538 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1624e7c9d89684ec12ffbae73f154544103361ee;p=emacs.git (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). --- 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 + + * 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 * 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)))