(mime-view-read-situation-examples-file): Don't try to read
authortomo <tomo>
Thu, 28 Dec 2000 05:48:17 +0000 (05:48 +0000)
committertomo <tomo>
Thu, 28 Dec 2000 05:48:17 +0000 (05:48 +0000)
situation-examples-file is it is nil.
(mime-situation-examples-file): Avoid to read situation-examples-file
at compile time.

mime-view.el

index a5f2ba6..15032e0 100644 (file)
@@ -372,7 +372,8 @@ mother-buffer."
 (defun mime-view-read-situation-examples-file (&optional file)
   (or file
       (setq file mime-situation-examples-file))
-  (if (file-readable-p file)
+  (if (and file
+          (file-readable-p file))
       (with-temp-buffer
        (insert-file-contents file)
        (setq mime-situation-examples-file-coding-system
@@ -1856,6 +1857,11 @@ It calls function registered in variable
 
 (provide 'mime-view)
 
+(eval-when-compile
+  (setq mime-situation-examples-file nil)
+  ;; to avoid to read situation-examples-file at compile time.
+  )
+
 (mime-view-read-situation-examples-file)
 
 ;;; mime-view.el ends here