From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tokuya Kameshima Subject: Re: patch for org-freemind.el Date: Sat, 12 Dec 2009 00:00:22 +0900 Message-ID: <20091212.000022.17137336.kames@fa2.so-net.ne.jp> References: <20091118.013832.173815981.kames@fa2.so-net.ne.jp> <3644BBEB-76A3-4C7A-B6CB-FCBEC2744F53@gmail.com> Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NJ6zd-0001v7-BF for emacs-orgmode@gnu.org; Fri, 11 Dec 2009 10:01:17 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NJ6zY-0001jG-5I for emacs-orgmode@gnu.org; Fri, 11 Dec 2009 10:01:16 -0500 Received: from [199.232.76.173] (port=47548 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NJ6zX-0001is-RZ for emacs-orgmode@gnu.org; Fri, 11 Dec 2009 10:01:11 -0500 Received: from omx12.ms.so-net.ne.jp ([202.238.83.193]:49385) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NJ6zX-0001FH-0U for emacs-orgmode@gnu.org; Fri, 11 Dec 2009 10:01:11 -0500 In-Reply-To: <3644BBEB-76A3-4C7A-B6CB-FCBEC2744F53@gmail.com> <20091118.013832.173815981.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: carsten.dominik@gmail.com Cc: kames@fa2.so-net.ne.jp, emacs-orgmode@gnu.org 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))