Browse Source

org-mew.el (org-mew-folder-name): Take Mew's "case" feature into account

* org-mew.el (org-mew-folder-name): Take Mew's "case" feature into
account.
Tokuya Kameshima 12 years ago
parent
commit
0c7e2cf500
1 changed files with 2 additions and 1 deletions
  1. 2 1
      contrib/lisp/org-mew.el

+ 2 - 1
contrib/lisp/org-mew.el

@@ -195,7 +195,8 @@ with \"t\" key."
 	   (mark-info (mew-summary-get-mark)))
       (if (and org-mew-link-to-refile-destination
 	       (eq mark-info ?o))	; marked as refile
-	  (nth 1 (mew-refile-get msgnum))
+	  (mew-case-folder (mew-sinfo-get-case)
+			   (nth 1 (mew-refile-get msgnum)))
 	(let ((folder-or-path (mew-summary-folder-name)))
 	  (mew-folder-path-to-folder folder-or-path t))))))