Synch to Gnus 200312071540.
[elisp/gnus.git-] / lisp / gnus-bcklg.el
index f95fcee..c2b0cc3 100644 (file)
@@ -1,5 +1,5 @@
 ;;; gnus-bcklg.el --- backlog functions for Gnus
-;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 
+;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003
 ;;        Free Software Foundation, Inc.
 
 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
@@ -58,7 +58,7 @@
   "Clear all backlog variables and buffers."
   (interactive)
   (when (get-buffer gnus-backlog-buffer)
-    (kill-buffer gnus-backlog-buffer))
+    (gnus-kill-buffer gnus-backlog-buffer))
   (setq gnus-backlog-hashtb nil
        gnus-backlog-articles nil))
 
          b)
       (if (memq ident gnus-backlog-articles)
          ()                            ; It's already kept.
-      ;; Remove the oldest article, if necessary.
+       ;; Remove the oldest article, if necessary.
        (and (numberp gnus-keep-backlog)
             (>= (length gnus-backlog-articles) gnus-keep-backlog)
-          (gnus-backlog-remove-oldest-article))
+            (gnus-backlog-remove-oldest-article))
        (push ident gnus-backlog-articles)
        ;; Insert the new article.
        (save-excursion
@@ -87,7 +87,7 @@
            (insert-buffer-substring buffer)
            ;; Tag the beginning of the article with the ident.
            (if (> (point-max) b)
-             (gnus-put-text-property b (1+ b) 'gnus-backlog ident)
+               (gnus-put-text-property b (1+ b) 'gnus-backlog ident)
              (gnus-error 3 "Article %d is blank" number))))))))
 
 (defun gnus-backlog-remove-oldest-article ()