]> git.eshelyaron.com Git - emacs.git/commitdiff
(nnmh-request-list, nnmh-active-number): Protect from
authorKenichi Handa <handa@m17n.org>
Thu, 28 Aug 1997 04:51:02 +0000 (04:51 +0000)
committerKenichi Handa <handa@m17n.org>
Thu, 28 Aug 1997 04:51:02 +0000 (04:51 +0000)
conversion by `pathname-coding-system' for XEmacs/mule.

lisp/gnus/nnmh.el

index c87e627ef20d4685eaf52e4deeb6f2108bd16f5b..f19385861419efb33ada82bbb62091738fb09850 100644 (file)
@@ -76,6 +76,9 @@
           (large (and (numberp nnmail-large-newsgroup)
                       (> number nnmail-large-newsgroup)))
           (count 0)
+          ;; 1997/8/12 by MORIOKA Tomohiko
+          ;;   for XEmacs/mule.
+          (pathname-coding-system 'binary)
           beg article)
       (nnmh-possibly-change-directory newsgroup server)
       ;; We don't support fetching by Message-ID.
   (let ((file (if (stringp id)
                  nil
                (concat nnmh-current-directory (int-to-string id))))
+       ;; 1997/8/12 by MORIOKA Tomohiko
+       ;;      for XEmacs/mule.
+       (pathname-coding-system 'binary)
        (nntp-server-buffer (or buffer nntp-server-buffer)))
     (and (stringp file)
         (file-exists-p file)
 
 (deffoo nnmh-request-group (group &optional server dont-check)
   (let ((pathname (nnmail-group-pathname group nnmh-directory))
+       ;; 1997/8/12 by MORIOKA Tomohiko
+       ;;      for XEmacs/mule.
+       (pathname-coding-system 'binary)
        dir)
     (cond
      ((not (file-directory-p pathname))
 
 (deffoo nnmh-request-list (&optional server dir)
   (nnheader-insert "")
-  (let ((nnmh-toplev
+  (let (;; 1997/8/14 by MORIOKA Tomohiko
+       ;;      for XEmacs/mule.
+       (pathname-coding-system 'binary)
+       (nnmh-toplev
         (or dir (file-truename (file-name-as-directory nnmh-directory)))))
     (nnmh-request-list-1 nnmh-toplev))
   (setq nnmh-group-alist (nnmail-get-active))
                                (expand-file-name nnmh-toplev))))
               dir)
              (nnheader-replace-chars-in-string
-              (substring dir (match-end 0)) ?/ ?.))
+              (decode-coding-string (substring dir (match-end 0))
+                                    nnmail-pathname-coding-system)
+              ?/ ?.))
            (apply 'max files)
            (apply 'min files)))))))
   t)
             (not (nnmh-server-opened server)))
     (nnmh-open-server server))
   (when newsgroup
-    (let ((pathname (nnmail-group-pathname newsgroup nnmh-directory)))
+    (let ((pathname (nnmail-group-pathname newsgroup nnmh-directory))
+         ;; 1997/8/12 by MORIOKA Tomohiko
+         ;;    for XEmacs/mule.
+         (pathname-coding-system 'binary))
       (if (file-directory-p pathname)
          (setq nnmh-current-directory pathname)
        (error "No such newsgroup: %s" newsgroup)))))
 (defun nnmh-active-number (group)
   "Compute the next article number in GROUP."
   (let ((active (cadr (assoc group nnmh-group-alist)))
-       (dir (nnmail-group-pathname group nnmh-directory)))
+       (dir (nnmail-group-pathname group nnmh-directory))
+       ;; 1997/8/14 by MORIOKA Tomohiko
+       ;;      for XEmacs/mule.
+       (pathname-coding-system 'binary))
     (unless active
       ;; The group wasn't known to nnmh, so we just create an active
       ;; entry for it.