Patch by Tokuya Kameshima.
@@ -1,3 +1,7 @@
+2009-11-17 Carsten Dominik <carsten.dominik@gmail.com>
+
+ * org-freemind.el (org-freemind-escape-str-from-org): Fix encoding.
2009-11-17 Eric Schulte <schulte.eric@gmail.com>
* org-exp-blocks.el (org-export-blocks-format-ditaa): Use sha1
@@ -240,7 +240,7 @@ The characters \"&<> will be escaped."
;; file is utf-8:
;;
;; (format "&#x%x;" (- cc ;; ?\x800))
- (char-to-string cc)
+ (format "&#x%x" (encode xx 'ucs))
))))
fm-str))