# HG changeset patch # User Bill Wohler # Date 1139511993 0 # Node ID 3741bfb4402fb6a7508156b4068232edc6a6b51f # Parent c84463d2bf28bd385ec84faa8535499f2279aeac (mh-replace-regexp-in-string): Add missing regexp argument. diff -r c84463d2bf28 -r 3741bfb4402f lisp/mh-e/ChangeLog --- a/lisp/mh-e/ChangeLog Thu Feb 09 15:56:43 2006 +0000 +++ b/lisp/mh-e/ChangeLog Thu Feb 09 19:06:33 2006 +0000 @@ -1,3 +1,8 @@ +2006-02-09 Bill Wohler + + * mh-compat.el(mh-replace-regexp-in-string): Add missing regexp + argument. + 2006-02-08 Peter S Galbraith * mh-e.el (mh-invisible-header-fields-internal): Added entries diff -r c84463d2bf28 -r 3741bfb4402f lisp/mh-e/mh-compat.el --- a/lisp/mh-e/mh-compat.el Thu Feb 09 15:56:43 2006 +0000 +++ b/lisp/mh-e/mh-compat.el Thu Feb 09 19:06:33 2006 +0000 @@ -144,7 +144,7 @@ (match-beginning num) (match-end num))) (mh-defun-compat mh-replace-regexp-in-string replace-regexp-in-string - (rep string &optional fixedcase literal subexp start) + (regexp rep string &optional fixedcase literal subexp start) "Replace REGEXP with REP everywhere in STRING and return result. This function is used by XEmacs that lacks `replace-regexp-in-string'. The function `replace-in-string' is used instead.