(gnus-remove-odd-characters): Use mm-subst-char-in-string instead of
authorKatsumi Yamaoka <yamaoka@jpl.org>
Sun, 19 Oct 2003 01:04:51 +0000 (01:04 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Sun, 19 Oct 2003 01:04:51 +0000 (01:04 +0000)
 subst-char-in-string.

lisp/ChangeLog
lisp/gnus-sum.el

index db2417f..bcef991 100644 (file)
@@ -1,7 +1,9 @@
 2003-10-19  Katsumi Yamaoka  <yamaoka@jpl.org>
 
-       * gnus-sum.el (gnus-summary-refer-article): Use
-       gnus-replace-in-string instead of replace-regexp-in-string.
+       * gnus-sum.el (gnus-remove-odd-characters): Use
+       mm-subst-char-in-string instead of subst-char-in-string.
+       (gnus-summary-refer-article): Use gnus-replace-in-string instead
+       of replace-regexp-in-string.
 
 2003-10-19  Jesper Harder  <harder@ifa.au.dk>
 
index 8ff68d7..923edeb 100644 (file)
@@ -3978,9 +3978,9 @@ Returns HEADER if it was entered in the DEPENDENCIES.  Returns nil otherwise."
 
 (defsubst gnus-remove-odd-characters (string)
   "Translate STRING into something that doesn't contain weird characters."
-  (subst-char-in-string
+  (mm-subst-char-in-string
    ?\r ?\-
-   (subst-char-in-string 
+   (mm-subst-char-in-string
     ?\n ?\- string t)
    t))