From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: org-store-link with wanderlust Date: Sat, 29 Dec 2007 14:52:09 +0100 Message-ID: <87tzm1obg6.fsf@bzg.ath.cx> References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1J8c6o-0000cn-Mf for emacs-orgmode@gnu.org; Sat, 29 Dec 2007 08:52:14 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1J8c6n-0000cD-VL for emacs-orgmode@gnu.org; Sat, 29 Dec 2007 08:52:14 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J8c6n-0000c0-Q3 for emacs-orgmode@gnu.org; Sat, 29 Dec 2007 08:52:13 -0500 Received: from ug-out-1314.google.com ([66.249.92.173]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1J8c6n-0004Mo-Aq for emacs-orgmode@gnu.org; Sat, 29 Dec 2007 08:52:13 -0500 Received: by ug-out-1314.google.com with SMTP id a2so2253387ugf.48 for ; Sat, 29 Dec 2007 05:52:12 -0800 (PST) In-Reply-To: (Hans Halvorson's message of "Wed, 12 Dec 2007 10:21:39 -0500") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Cc: Hans Halvorson --=-=-= "Hans Halvorson" writes: > When I try 'M-x org-store-link' in the wanderlust summary buffer, I > get an error (have tried with many messages). For example: > > Debugger entered--Lisp error: (error "Invalid address: (Brad Pitt > )") > signal(error ("Invalid address: (Brad Pitt )")) > error("Invalid address: %s" ("Brad Pitt ")) > mail-extract-address-components(("Brad Pitt ")) > org-store-link-props(:type "wl" :from "Jolie, Angelina" :to ("Brad > Pitt ") :subject "RE: u r hot" :message-id > "<664F5EF544B264BEFE154B2FE40A770279053@CREXUSER08.foobar.com>") > org-store-link(nil) > call-interactively(org-store-link) > execute-extended-command(nil) > call-interactively(execute-extended-command) > > The address reported in the backtrace has, of course, been changed ... > but it is structurally original to the original valid address. Looks like wl-summary-line-from return a list, not a string. Please check the following patch against Org 5.17a. --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=org.el.patch diff -u /home/guerry/elisp/testing/org/ /home/guerry/elisp/testing/bzg/org.el --- /home/guerry/elisp/testing/org/org.el 2007-12-20 14:38:42.000000000 +0100 +++ /home/guerry/elisp/testing/bzg/org.el 2007-12-29 14:50:20.000000000 +0100 @@ -11762,7 +11762,7 @@ wl-summary-buffer-elmo-folder msgnum) (elmo-msgdb-overview-get-entity msgnum (wl-summary-buffer-msgdb)))) - (from (wl-summary-line-from)) + (from (car (wl-summary-line-from))) (to (elmo-message-entity-field wl-message-entity 'to)) (subject (let (wl-thr-indent-string wl-parent-message-entity) (wl-summary-line-subject)))) Diff finished. Sat Dec 29 14:50:25 2007 --=-=-= -- Bastien --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --=-=-=--