(install-tomoyo-package): Use `condition-case' to avoid error.
authortomo <tomo>
Fri, 12 May 2006 10:57:10 +0000 (10:57 +0000)
committertomo <tomo>
Fri, 12 May 2006 10:57:10 +0000 (10:57 +0000)
TOMOYO-MK

index 1e9edbb..7c70016 100644 (file)
--- a/TOMOYO-MK
+++ b/TOMOYO-MK
@@ -41,7 +41,9 @@
                                           (expand-file-name "lisp"
                                                             PACKAGEDIR)))
   (delete-file "./auto-autoloads.el")
-  (delete-file "./custom-load.el")
+  (condition-case nil
+      (delete-file "./custom-load.el")
+    (error nil))
   )
 
 ;;; TOMOYO-MK ends here