From: hmurata Date: Fri, 3 Aug 2001 17:30:21 +0000 (+0000) Subject: * elmo-archive.el (elmo-archive-get-archive-name): Fixed X-Git-Tag: wl-2_7_2~4 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=d8a9ecd39d7c94b2408aec12d68b79d22fa8426d;p=elisp%2Fwanderlust.git * elmo-archive.el (elmo-archive-get-archive-name): Fixed unbalanced parenthesis. --- diff --git a/elmo/ChangeLog b/elmo/ChangeLog index 4a83e95..69db0f9 100644 --- a/elmo/ChangeLog +++ b/elmo/ChangeLog @@ -1,3 +1,8 @@ +2001-08-03 Hiroya Murata + + * elmo-archive.el (elmo-archive-get-archive-name): Fixed + unbalanced parenthesis. + 2001-08-03 YAMASHITA Junji * elmo-localdir.el (elmo-folder-rename-internal): Fixed typo. diff --git a/elmo/elmo-archive.el b/elmo/elmo-archive.el index 7149b33..16ddc78 100644 --- a/elmo/elmo-archive.el +++ b/elmo/elmo-archive.el @@ -380,8 +380,8 @@ TYPE specifies the archiver's symbol." dir) filename)) filename) - (if (or (not (file-exists-p dir) - (file-directory-p dir))) + (if (or (not (file-exists-p dir)) + (file-directory-p dir)) (expand-file-name (concat elmo-archive-basename suffix) dir)