From 56d36fc2907f6568f33f2eaca033b87bd31611fb Mon Sep 17 00:00:00 2001 From: yamaoka Date: Fri, 10 Jan 2003 05:43:09 +0000 Subject: [PATCH] 2003-01-10 Lars Magne Ingebrigtsen * lisp/gnus-start.el (gnus-read-newsrc-el-file): Make sure the .eld file exists. --- ChangeLog | 5 +++++ lisp/gnus-start.el | 55 ++++++++++++++++++++++++++-------------------------- 2 files changed, 33 insertions(+), 27 deletions(-) diff --git a/ChangeLog b/ChangeLog index fba85c5..7da5167 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-01-10 Lars Magne Ingebrigtsen + + * lisp/gnus-start.el (gnus-read-newsrc-el-file): Make sure the + .eld file exists. + 2003-01-09 Katsumi Yamaoka * lisp/message.el (message-tool-bar-map): Fix keymap for MIME-Edit. diff --git a/lisp/gnus-start.el b/lisp/gnus-start.el index 50c973f..e5576e3 100644 --- a/lisp/gnus-start.el +++ b/lisp/gnus-start.el @@ -2176,33 +2176,34 @@ If FORCE is non-nil, the .newsrc file is read." (defun gnus-read-newsrc-el-file (file) (let ((ding-file (concat file "d"))) - ;; We always, always read the .eld file. - (gnus-message 5 "Reading %s..." ding-file) - (let (gnus-newsrc-assoc) - (gnus-load ding-file gnus-ding-file-coding-system) -;; ;; Older versions of `gnus-format-specs' are no longer valid -;; ;; in Oort Gnus 0.01. -;; (let ((version -;; (and gnus-newsrc-file-version -;; (gnus-continuum-version gnus-newsrc-file-version)))) -;; (when (or (not version) -;; (< version 5.090009)) -;; (setq gnus-format-specs gnus-default-format-specs))) - (when gnus-newsrc-assoc - (setq gnus-newsrc-alist gnus-newsrc-assoc))) - (gnus-make-hashtable-from-newsrc-alist) - (when (file-newer-than-file-p file ding-file) - ;; Old format quick file - (gnus-message 5 "Reading %s..." file) - ;; The .el file is newer than the .eld file, so we read that one - ;; as well. - (gnus-read-old-newsrc-el-file file))) - (when (and gnus-product-directory - (file-directory-p gnus-product-directory)) - (let ((list gnus-product-variable-file-list)) - (while list - (apply 'gnus-product-read-variable-file-1 (car list)) - (setq list (cdr list)))))) + (when (file-exists-p ding-file) + ;; We always, always read the .eld file. + (gnus-message 5 "Reading %s..." ding-file) + (let (gnus-newsrc-assoc) + (gnus-load ding-file gnus-ding-file-coding-system) +;; ;; Older versions of `gnus-format-specs' are no longer valid +;; ;; in Oort Gnus 0.01. +;; (let ((version +;; (and gnus-newsrc-file-version +;; (gnus-continuum-version gnus-newsrc-file-version)))) +;; (when (or (not version) +;; (< version 5.090009)) +;; (setq gnus-format-specs gnus-default-format-specs))) + (when gnus-newsrc-assoc + (setq gnus-newsrc-alist gnus-newsrc-assoc))) + (gnus-make-hashtable-from-newsrc-alist) + (when (file-newer-than-file-p file ding-file) + ;; Old format quick file + (gnus-message 5 "Reading %s..." file) + ;; The .el file is newer than the .eld file, so we read that one + ;; as well. + (gnus-read-old-newsrc-el-file file))) + (when (and gnus-product-directory + (file-directory-p gnus-product-directory)) + (let ((list gnus-product-variable-file-list)) + (while list + (apply 'gnus-product-read-variable-file-1 (car list)) + (setq list (cdr list))))))) ;;(defun gnus-re-read-newsrc-el-file (file) ;; "Attempt to re-read .newsrc.eld file. Returns `nil' if successful. -- 1.7.10.4