diff options
Diffstat (limited to 'lisp')
-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))) |