(elmo-maildir-separator): Added OS/2, emx, ms-dos
authorteranisi <teranisi>
Fri, 11 Feb 2005 12:17:40 +0000 (12:17 +0000)
committerteranisi <teranisi>
Fri, 11 Feb 2005 12:17:40 +0000 (12:17 +0000)
to the check logic of file systems which are weak in colon character.

elmo/ChangeLog
elmo/elmo-maildir.el

index ae016ad..2f3aa10 100644 (file)
@@ -1,3 +1,8 @@
+2005-02-11  Yuuichi Teranishi  <teranisi@gohome.org>
+
+       * 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 <lapis-lazuli@pop06.odn.ne.jp>
 
        * elmo-maildir.el (elmo-maildir-move-file): Simplify.
index 044df74..eaee60e 100644 (file)
@@ -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."