From 66fd521264b09dd4764bcc209daa0c8865ac66f8 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Sun, 5 Jan 2014 14:21:38 +0100 Subject: [PATCH] org.el (org-set-tags): Ignore invisible text when restoring cursor position * org.el (org-set-tags): Ignore invisible text when restoring cursor position. --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 2686f4595..f9201e959 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -14557,7 +14557,7 @@ With prefix ARG, realign all tags in headings in the current buffer." (and (not (featurep 'xemacs)) c0 indent-tabs-mode (tabify p0 (point))) tags) (t (error "Tags alignment failed"))) - (org-move-to-column col) + (org-move-to-column col nil nil t) (unless just-align (run-hooks 'org-after-tags-change-hook))))))