summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2013-11-09 17:47:59 +0100
committerBastien Guerry <bzg@altern.org>2013-11-09 17:47:59 +0100
commit132994911ba1728a45b2d73ba3dc8877c016625e (patch)
tree92bfdef0014ee17b0af9f2c99d510433e0cb0b73
parentb21c5fa2724ea3a0efc073f7231cce6349a397cf (diff)
downloadorg-mode-132994911ba1728a45b2d73ba3dc8877c016625e.tar.gz
org.el (org-align-tags-here): Fix bug: move to the correct position
* org.el (org-align-tags-here): Fix bug: move to the correct position. Thanks to Reuben Garrett for reporting this bug.
-rw-r--r--lisp/org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 7042d69..b5eb285 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -14416,7 +14416,7 @@ If ONOFF is `on' or `off', don't toggle but set to this state."
(insert (make-string (- ncol (current-column)) ?\ ))
(setq ncol (current-column))
(when indent-tabs-mode (tabify p (point-at-eol)))
- (org-move-to-column (min ncol col) t))
+ (org-move-to-column (min ncol col) t nil t))
(goto-char pos))))
(defun org-set-tags-command (&optional arg just-align)