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	Mon Nov 16 23:26:36 2009
+++ org-freemind.el	Tue Nov 17 00:27:22 2009
@@ -240,7 +240,7 @@
                       ;; file is utf-8:
                       ;;
                       ;; (format "&#x%x;" (- cc ;; ?\x800))
-                      (char-to-string cc)
+                      (format "&#x%x;" (encode-char cc 'ucs))
                       ))))
     fm-str))
 
_______________________________________________
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

Reply via email to