From 1f56904f403ea914ebe5879fd6f3c6912fa6231b Mon Sep 17 00:00:00 2001 From: teranisi Date: Fri, 11 Feb 2005 12:17:40 +0000 Subject: [PATCH] (elmo-maildir-separator): Added OS/2, emx, ms-dos to the check logic of file systems which are weak in colon character. --- elmo/ChangeLog | 5 +++++ elmo/elmo-maildir.el | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/elmo/ChangeLog b/elmo/ChangeLog index ae016ad..2f3aa10 100644 --- a/elmo/ChangeLog +++ b/elmo/ChangeLog @@ -1,3 +1,8 @@ +2005-02-11 Yuuichi Teranishi + + * elmo-maildir.el (elmo-maildir-separator): Added OS/2, emx, ms-dos + to the check logic of file systems which are weak in colon character. + 2005-02-11 Hiroya Murata * elmo-maildir.el (elmo-maildir-move-file): Simplify. diff --git a/elmo/elmo-maildir.el b/elmo/elmo-maildir.el index 044df74..eaee60e 100644 --- a/elmo/elmo-maildir.el +++ b/elmo/elmo-maildir.el @@ -45,9 +45,8 @@ (unread ?S 'remove) (answered ?R))) -;; Decided at compile time. (defcustom elmo-maildir-separator - (if (memq system-type '(windows-nt)) ?\- ?:) + (if (memq system-type '(windows-nt OS/2 emx ms-dos)) ?\- ?:) "Character separating the id section from the flags section. According to the maildir specification, this should be a colon (?:), but some file systems don't support colons in filenames." -- 1.7.10.4