From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: patch for org-freemind.el Date: Sat, 12 Dec 2009 10:52:33 +0100 Message-ID: <0517E23D-AB48-465B-B858-0EBA965C5CBF@gmail.com> References: <20091118.013832.173815981.kames@fa2.so-net.ne.jp> <3644BBEB-76A3-4C7A-B6CB-FCBEC2744F53@gmail.com> <20091212.000022.17137336.kames@fa2.so-net.ne.jp> Mime-Version: 1.0 (Apple Message framework v936) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NJOeZ-0002KE-OM for emacs-orgmode@gnu.org; Sat, 12 Dec 2009 04:52:43 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NJOeU-0002IV-JB for emacs-orgmode@gnu.org; Sat, 12 Dec 2009 04:52:42 -0500 Received: from [199.232.76.173] (port=45038 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NJOeU-0002IO-73 for emacs-orgmode@gnu.org; Sat, 12 Dec 2009 04:52:38 -0500 Received: from mail-ew0-f224.google.com ([209.85.219.224]:61066) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NJOeT-0002XH-OB for emacs-orgmode@gnu.org; Sat, 12 Dec 2009 04:52:37 -0500 Received: by ewy24 with SMTP id 24so1886395ewy.26 for ; Sat, 12 Dec 2009 01:52:36 -0800 (PST) In-Reply-To: <20091212.000022.17137336.kames@fa2.so-net.ne.jp> 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: Tokuya Kameshima Cc: emacs-orgmode@gnu.org Done, thanks! - Carsten On Dec 11, 2009, at 4:00 PM, Tokuya Kameshima wrote: > Hi Carsten, > > Could you please apply the patch again. ";" was missing in the > previous update. > > Thanks, > --Tokuya > > > On Wed, 18 Nov 2009 01:38:32 +0900, > Tokuya Kameshima wrote: >> >> Hi Carsten, >> >> This is a small patch for org-freemind.el to convert the multibyte >> characters to unicode numeric character references such as >> "亀". >> It is likely that Freemind supports the multibyte characters in this >> style. >> >> Thanks, >> >> --Tokuya >> > > > ---------------------------------------------------------------------- > > --- org-freemind.el.ORIG Fri Nov 27 15:09:11 2009 > +++ org-freemind.el Fri Dec 11 14:54:50 2009 > @@ -240,7 +240,7 @@ > ;; file is utf-8: > ;; > ;; (format "&#x%x;" (- cc ;; ?\x800)) > - (format "&#x%x" (encode-char cc 'ucs)) > + (format "&#x%x;" (encode-char cc 'ucs)) > )))) > fm-str)) > - Carsten