From d2ecbe637a3abe234af4a974c1dd52e3da5a1924 Mon Sep 17 00:00:00 2001 From: Sebastien Vauban Date: Fri, 26 Sep 2014 12:12:07 +0200 Subject: [PATCH] ox-ascii: Fix boxquote characters in UTF-8 export * ox-ascii.el (org-ascii--box-string): Choose more universal Unicode characters for boxquote corners. --- lisp/ox-ascii.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox-ascii.el b/lisp/ox-ascii.el index 3695d5eba..cd2a9af10 100644 --- a/lisp/ox-ascii.el +++ b/lisp/ox-ascii.el @@ -463,7 +463,7 @@ Empty lines are not indented." "Return string S with a partial box to its left. INFO is a plist used as a communication channel." (let ((utf8p (eq (plist-get info :ascii-charset) 'utf-8))) - (format (if utf8p "╭────\n%s\n╰────" ",----\n%s\n`----") + (format (if utf8p "┌────\n%s\n└────" ",----\n%s\n`----") (replace-regexp-in-string "^" (if utf8p "│ " "| ") ;; Remove last newline character. -- 2.11.4.GIT