From d8a9ecd39d7c94b2408aec12d68b79d22fa8426d Mon Sep 17 00:00:00 2001 From: hmurata Date: Fri, 3 Aug 2001 17:30:21 +0000 Subject: [PATCH] * elmo-archive.el (elmo-archive-get-archive-name): Fixed unbalanced parenthesis. --- elmo/ChangeLog | 5 +++++ elmo/elmo-archive.el | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) 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) -- 1.7.10.4