0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-08-25 10:32:52 +00:00

org-freemind.el: Encode multibyte characters to unicode

Patch by Tokuya Kameshima.
This commit is contained in:
Carsten Dominik 2009-11-17 20:36:09 +01:00
parent 07a8ce3d28
commit 54889df12d
2 changed files with 5 additions and 1 deletions

View file

@ -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

View file

@ -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))