From b57dee1c44d8dd6979c5a6953ad12fdb487d5092 Mon Sep 17 00:00:00 2001 From: Yasushi SHOJI Date: Tue, 31 May 2016 16:25:42 +0900 Subject: [PATCH 1/2] org: Fix tag width calculation for multi-column chars MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some characters have multiple column width. Calculating string width with points gives a wrong value than actual display width. Use `string-width' instead. Here is an ECM for this problem. `M-x org-update-statistics-cookies` or `C-c #` on bar moves the tag on the headline. * foo [0/0] :abc: ** child * bar [0/0] :日本語: ** child 12345678901234567890123456789012345678901234567890123456789012345678901234567890 1 2 3 4 5 6 7 8 --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index a9412ea..15f851d 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -14923,7 +14923,7 @@ If ONOFF is `on' or `off', don't toggle but set to this state." (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:address@hidden:]+:\\)[ \t]*$")) (< pos (match-beginning 2))) (progn - (setq tags-l (- (match-end 2) (match-beginning 2))) + (setq tags-l (string-width (match-string 2))) (goto-char (match-beginning 1)) (insert " ") (delete-region (point) (1+ (match-beginning 2))) -- 2.8.1