* elmo-util.el (elmo-copy-file): Added argument
authorhmurata <hmurata>
Wed, 21 Nov 2001 15:13:29 +0000 (15:13 +0000)
committerhmurata <hmurata>
Wed, 21 Nov 2001 15:13:29 +0000 (15:13 +0000)
`ok-if-already-exists'.

elmo/ChangeLog
elmo/elmo-util.el

index 8bd7a66..92debf1 100644 (file)
@@ -1,3 +1,8 @@
+2001-11-21  Hiroya Murata  <lapis-lazuli@pop06.odn.ne.jp>
+
+       * elmo-util.el (elmo-copy-file): Added argument
+       `ok-if-already-exists'.
+
 2001-11-21  Kenichi OKADA  <okada@opaopa.org>
 
        * elmo-pipe.el (elmo-pipe-drain): Load killed-list.
index caacaeb..2322005 100644 (file)
@@ -1066,10 +1066,10 @@ Emacs 19.28 or earlier does not have `unintern'."
       (setq filename (substring filename (+ (match-end 0) 1))))
     (concat result filename)))
 
-(defsubst elmo-copy-file (src dst)
+(defsubst elmo-copy-file (src dst &otional ok-if-already-exists)
   (condition-case err
-      (elmo-add-name-to-file src dst t)
-    (error (copy-file src dst t))))
+      (elmo-add-name-to-file src dst ok-if-already-exists)
+    (error (copy-file src dst ok-if-already-exists t))))
 
 (defsubst elmo-buffer-exists-p (buffer)
   (if (bufferp buffer)