]> git.eshelyaron.com Git - emacs.git/commitdiff
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-603
authorMiles Bader <miles@gnu.org>
Thu, 7 Oct 2004 05:53:41 +0000 (05:53 +0000)
committerMiles Bader <miles@gnu.org>
Thu, 7 Oct 2004 05:53:41 +0000 (05:53 +0000)
Merge from gnus--rel--5.10

Patches applied:

 * miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-44
   Update from CVS

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

index 0bdf47226ffbe292daae550bdebf3805677f6f21..f4b772978676159268e7170d5f20a0c01096e1f2 100644 (file)
@@ -1,5 +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.
+
        * gnus-sum.el (gnus-summary-insert-subject): Remove redundant setq.
 
 2004-10-05  Juri Linkov  <juri@jurta.org>
index abf99cbfd6441a0e1f3d12d5db91137305bb0c23..435acb1d6c28e9b751def9d841d2b3a1717ef102 100644 (file)
@@ -1047,7 +1047,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 77395ca50420637e4b7edddae71bc4de50a3e458..7dcef4b813bd19e27e980717f6f3734fa20d2cc0 100644 (file)
@@ -1534,7 +1534,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 6c7c0436bc2e9dfb954028f71b4fd2baf9451a15..84de9c4e1ab442c69f2cd0de535f28afd402eab1 100644 (file)
@@ -3233,21 +3233,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 85f918986d5fba60d3932d07643a2a4c47cdda44..bfaf16757034665d3f7a8b3096bbb14be4e9b473 100644 (file)
@@ -4400,7 +4400,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? ")