* gnus-group.el (gnus-update-group-mark-positions):
authorKatsumi Yamaoka <yamaoka@jpl.org>
Wed, 6 Oct 2004 22:52:26 +0000 (22:52 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Wed, 6 Oct 2004 22:52:26 +0000 (22:52 +0000)
* gnus-sum.el (gnus-update-summary-mark-positions):
* message.el (message-check-news-body-syntax):
* gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
of string-as-multibyte.

lisp/ChangeLog
lisp/gnus-group.el
lisp/gnus-msg.el
lisp/gnus-sum.el
lisp/message.el

index 6ba3696..6450aa3 100644 (file)
@@ -1,3 +1,11 @@
+2004-10-06  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * gnus-group.el (gnus-update-group-mark-positions):
+       * gnus-sum.el (gnus-update-summary-mark-positions):
+       * message.el (message-check-news-body-syntax):
+       * gnus-msg.el (gnus-debug): Use mm-string-as-multibyte instead
+       of string-as-multibyte.
+
 2004-10-05  Juri Linkov  <juri@jurta.org>
 
        * gnus-group.el (gnus-update-group-mark-positions):
index 25ffac2..9fed125 100644 (file)
@@ -1068,7 +1068,7 @@ The following commands are available:
       (goto-char (point-min))
       (setq gnus-group-mark-positions
            (list (cons 'process (and (search-forward
-                                      (string-as-multibyte "\200") nil t)
+                                      (mm-string-as-multibyte "\200") nil t)
                                      (- (point) 2))))))))
 
 (defun gnus-mouse-pick-group (e)
index e9cee2c..ecba62d 100644 (file)
@@ -1532,7 +1532,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 (string-as-multibyte
+    (while (re-search-forward (mm-string-as-multibyte
                               "[\000-\010\013-\037\200-\237]") nil t)
       (replace-match (format "\\%03o" (string-to-char (match-string 0)))
                     t t))))
index 423d142..8a809b4 100644 (file)
@@ -3297,21 +3297,21 @@ buffer that was in action when the last article was fetched."
          (goto-char (point-min))
          (setq pos (list (cons 'unread
                                (and (search-forward
-                                     (string-as-multibyte "\200") nil t)
+                                     (mm-string-as-multibyte "\200") nil t)
                                     (- (point) (point-min) 1)))))
          (goto-char (point-min))
          (push (cons 'replied (and (search-forward
-                                    (string-as-multibyte "\201") nil t)
+                                    (mm-string-as-multibyte "\201") nil t)
                                    (- (point) (point-min) 1)))
                pos)
          (goto-char (point-min))
          (push (cons 'score (and (search-forward
-                                  (string-as-multibyte "\202") nil t)
+                                  (mm-string-as-multibyte "\202") nil t)
                                  (- (point) (point-min) 1)))
                pos)
          (goto-char (point-min))
          (push (cons 'download (and (search-forward
-                                     (string-as-multibyte "\203") nil t)
+                                     (mm-string-as-multibyte "\203") nil t)
                                     (- (point) (point-min) 1)))
                pos)))
       (setq gnus-summary-mark-positions pos))))
index be9564e..cdf21bb 100644 (file)
@@ -4452,7 +4452,7 @@ Otherwise, generate and save a value for `canlock-password' first."
    ;; Check for control characters.
    (message-check 'control-chars
      (if (re-search-forward
-         (string-as-multibyte "[\000-\007\013\015-\032\034-\037\200-\237]")
+         (mm-string-as-multibyte "[\000-\007\013\015-\032\034-\037\200-\237]")
          nil t)
         (y-or-n-p
          "The article contains control characters.  Really post? ")