]> git.eshelyaron.com Git - emacs.git/commitdiff
(gnus-debug): Use mm-string-to-multibyte.
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 3 Mar 2008 03:57:32 +0000 (03:57 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 3 Mar 2008 03:57:32 +0000 (03:57 +0000)
lisp/gnus/ChangeLog
lisp/gnus/gnus-msg.el

index a6070ffc1c788ab8646079d02a7944f9caea17f9..392833a2cbac4b46de856dfefec452c891a3f4fd 100644 (file)
@@ -1,5 +1,6 @@
 2008-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
 
+       * gnus-msg.el (gnus-debug):
        * gnus-group.el (gnus-update-group-mark-positions):
        Use mm-string-to-multibyte.
 
index 0a2ee2d09be01b18727fa664e50978c2afb834a4..9031790eec861798435581b314c842b9c672dacc 100644 (file)
@@ -1562,7 +1562,7 @@ The source file has to be in the Emacs load path."
     ;; Remove any control chars - they seem to cause trouble for some
     ;; mailers.  (Byte-compiled output from the stuff above.)
     (goto-char point)
-    (while (re-search-forward (mm-string-as-multibyte
+    (while (re-search-forward (mm-string-to-multibyte
                               "[\000-\010\013-\037\200-\237]") nil t)
       (replace-match (format "\\%03o" (string-to-char (match-string 0)))
                     t t))))
@@ -2000,5 +2000,5 @@ this is a reply."
 
 (provide 'gnus-msg)
 
-;;; arch-tag: 9f22b2f5-1c0a-49de-916e-4c88e984852b
+;; arch-tag: 9f22b2f5-1c0a-49de-916e-4c88e984852b
 ;;; gnus-msg.el ends here