* nnslashdot.el (nnslashdot-read-groups): Unibyte.
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Thu, 2 Dec 1999 04:01:04 +0000 (04:01 +0000)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Thu, 2 Dec 1999 04:01:04 +0000 (04:01 +0000)
* nnultimate.el (nnultimate-request-list): Use unibyte.

* gnus-uu.el (gnus-uu-grab-articles): Bind
gnus-display-mime-function to nil.

lisp/ChangeLog
lisp/dgnushack.el
lisp/gnus-uu.el
lisp/nnslashdot.el
lisp/nnultimate.el
lisp/nnweb.el

index 629581b..d29ffef 100644 (file)
@@ -1,5 +1,12 @@
 1999-12-02 00:27:46  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
+       * nnslashdot.el (nnslashdot-read-groups): Unibyte.
+
+       * nnultimate.el (nnultimate-request-list): Use unibyte.
+
+       * gnus-uu.el (gnus-uu-grab-articles): Bind
+       gnus-display-mime-function to nil.
+
        * message.el (message-send-mail-with-sendmail): Use the
        user-mail-address variable.
 
index 5af2e61..54db2a8 100644 (file)
@@ -53,6 +53,7 @@
 (defvar srcdir (or (getenv "srcdir") "."))
 
 (push srcdir load-path)
+(push "/usr/share/emacs/site-lisp" load-path)
 (load (expand-file-name "lpath.el" srcdir) nil t)
 
 (defalias 'device-sound-enabled-p 'ignore)
index b68af25..72845ef 100644 (file)
@@ -1210,7 +1210,7 @@ didn't work, and overwrite existing files.  Otherwise, ask each time."
        (gnus-inhibit-treatment t)
        has-been-begin article result-file result-files process-state
        gnus-summary-display-article-function
-       gnus-article-prepare-hook
+       gnus-article-prepare-hook gnus-display-mime-function
        article-series files)
 
     (while (and articles
index 450de32..fbf1509 100644 (file)
        sid elem description articles gname)
     (condition-case why
         ;; First we do the Ultramode to get info on all the latest groups.
-        (with-temp-buffer
+        (mm-with-unibyte-buffer
           (nnweb-insert "http://slashdot.org/slashdot.xml")
           (goto-char (point-min))
           (while (search-forward "<story>" nil t)
             (widen)))
       ;; Then do the older groups.
       (while (> (- nnslashdot-group-number number) 0)
-        (with-temp-buffer
+        (mm-with-unibyte-buffer
           (let ((case-fold-search t))
             (nnweb-insert (format nnslashdot-active-url number))
             (goto-char (point-min))
 (defun nnslashdot-read-groups ()
   (let ((file (expand-file-name "groups" nnslashdot-directory)))
     (when (file-exists-p file)
-      (with-temp-buffer
+      (mm-with-unibyte-buffer
        (insert-file-contents file)
        (goto-char (point-min))
        (setq nnslashdot-groups (read (current-buffer)))))))
index b2ff2bf..5470bf0 100644 (file)
            (set-buffer nntp-server-buffer)
            (erase-buffer))
        (setq nnultimate-articles nil)
-       (with-temp-buffer
+       (mm-with-unibyte-buffer
          (dolist (elem fetchers)
            (setq pages 1
                  current-page 1
 
 (deffoo nnultimate-request-list (&optional server)
   (nnultimate-possibly-change-server nil server)
-  (with-temp-buffer
+  (mm-with-unibyte-buffer
     (nnweb-insert
      (if (string-match "/$" nnultimate-address)
         (concat nnultimate-address "Ultimate.cgi")
         (furls (list (concat nnultimate-address (format furl sid))))
         contents forum-contents furl-fetched a subject href
         garticles topic tinfo old-max inc parse)
-    (with-temp-buffer
+    (mm-with-unibyte-buffer
       (while furls
        (erase-buffer)
        (nnweb-insert (pop furls))
   (setq nnultimate-groups-alist nil)
   (let ((file (expand-file-name "groups" nnultimate-directory)))
     (when (file-exists-p file)
-      (with-temp-buffer
+      (mm-with-unibyte-buffer
        (insert-file-contents file)
        (goto-char (point-min))
        (setq nnultimate-groups-alist (read (current-buffer)))))))
index 3f19c6e..8b22bbc 100644 (file)
@@ -231,7 +231,7 @@ and `altavista'.")
 (defun nnweb-read-overview (group)
   "Read the overview of GROUP and build the map."
   (when (file-exists-p (nnweb-overview-file group))
-    (with-temp-buffer
+    (mm-with-unibyte-buffer
       (nnheader-insert-file-contents (nnweb-overview-file group))
       (goto-char (point-min))
       (let (header)