[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Orgmode] Problem with org-mac-message.el
From: |
Ed Hirgelt |
Subject: |
[Orgmode] Problem with org-mac-message.el |
Date: |
Wed, 1 Apr 2009 15:21:33 -0500 |
I've found that org-mac-message-get-link has a problem inserting [["]]
as the first item.
The following change makes it better...
diff --git a/lisp/org-mac-message.el b/lisp/org-mac-message.el
index 4e10062..e8697c4 100644
--- a/lisp/org-mac-message.el
+++ b/lisp/org-mac-message.el
@@ -119,7 +119,7 @@ active mail in AppleMail and make a link out of it."
(setq split-link (split-string (pop link-list) "::split::"))
(setq URL (car split-link))
(setq description (cadr split-link))
- (if (not (string= URL ""))
+ (if (not (string= URL "\""))
(progn
(setq orglink (org-make-link-string URL description))
(push orglink orglink-list)))))
Thanks,
Ed
- [Orgmode] Problem with org-mac-message.el,
Ed Hirgelt <=
- Re: [Orgmode] Problem with org-mac-message.el, Christopher Suckling, 2009/04/03
- Re: [Orgmode] Problem with org-mac-message.el, Carsten Dominik, 2009/04/03
- Re: [Orgmode] Problem with org-mac-message.el, Christopher Suckling, 2009/04/04
- Re: [Orgmode] Problem with org-mac-message.el, Carsten Dominik, 2009/04/04
- Re: [Orgmode] Problem with org-mac-message.el, Christopher Suckling, 2009/04/04
- Re: [Orgmode] Problem with org-mac-message.el, Carsten Dominik, 2009/04/04
- Re: [Orgmode] Problem with org-mac-message.el, Christopher Suckling, 2009/04/05
- Re: [Orgmode] Problem with org-mac-message.el, Carsten Dominik, 2009/04/06