summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2014-01-05 14:21:38 +0100
committerBastien Guerry <bzg@altern.org>2014-01-05 14:21:38 +0100
commit66fd521264b09dd4764bcc209daa0c8865ac66f8 (patch)
tree447bd7080449c0d4a122d735c2345c98e61a0f96
parent65cf7047bf885959a5e03b5aa9346b55a600fcab (diff)
downloadorg-mode-66fd521264b09dd4764bcc209daa0c8865ac66f8.tar.gz
org.el (org-set-tags): Ignore invisible text when restoring cursor position
* org.el (org-set-tags): Ignore invisible text when restoring cursor position.
-rw-r--r--lisp/org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 2686f45..f9201e9 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))))))