|
@@ -8275,7 +8275,7 @@ When called with a prefix argument, include all archive files as well."
|
|
|
(when (next-single-property-change (point-at-eol) 'org-marker)
|
|
|
(move-end-of-line 1)
|
|
|
(goto-char (next-single-property-change (point) 'org-marker))))
|
|
|
- (org-move-to-column col nil nil t))
|
|
|
+ (org-move-to-column col))
|
|
|
(org-agenda-do-context-action))
|
|
|
|
|
|
(defun org-agenda-previous-item (n)
|
|
@@ -8287,7 +8287,7 @@ When called with a prefix argument, include all archive files as well."
|
|
|
(move-end-of-line 0)
|
|
|
(previous-single-property-change (point) 'org-marker))))
|
|
|
(if goto (goto-char goto))
|
|
|
- (org-move-to-column col nil nil t)))
|
|
|
+ (org-move-to-column col)))
|
|
|
(org-agenda-do-context-action))
|
|
|
|
|
|
(defun org-agenda-do-context-action ()
|
|
@@ -8798,7 +8798,7 @@ the same tree node, and the headline of the tree node in the Org-mode file."
|
|
|
(string-match (concat "^" (regexp-opt org-done-keywords-for-agenda))
|
|
|
newhead)
|
|
|
(org-agenda-unmark-clocking-task))
|
|
|
- (org-move-to-column col nil nil t))))
|
|
|
+ (org-move-to-column col))))
|
|
|
|
|
|
(defun org-agenda-add-note (&optional arg)
|
|
|
"Add a time-stamped note to the entry at point."
|
|
@@ -8954,7 +8954,7 @@ Called with a universal prefix arg, show the priority instead of setting it."
|
|
|
(end-of-line 1)
|
|
|
(setq newhead (org-get-heading)))
|
|
|
(org-agenda-change-all-lines newhead hdmarker)
|
|
|
- (org-move-to-column col nil nil t)))))
|
|
|
+ (org-move-to-column col)))))
|
|
|
|
|
|
;; FIXME: should fix the tags property of the agenda line.
|
|
|
(defun org-agenda-set-tags (&optional tag onoff)
|
|
@@ -9163,7 +9163,7 @@ Called with a universal prefix arg, show the priority instead of setting it."
|
|
|
(goto-char (point-max))
|
|
|
(while (not (bobp))
|
|
|
(when (equal marker (org-get-at-bol 'org-marker))
|
|
|
- (org-move-to-column (- (window-width) (length stamp)) t nil t)
|
|
|
+ (org-move-to-column (- (window-width) (length stamp)) t)
|
|
|
(org-agenda-fix-tags-filter-overlays-at (point))
|
|
|
(if (featurep 'xemacs)
|
|
|
;; Use `duplicable' property to trigger undo recording
|
|
@@ -9265,7 +9265,7 @@ ARG is passed through to `org-deadline'."
|
|
|
(org-clock-in arg)
|
|
|
(setq newhead (org-get-heading)))
|
|
|
(org-agenda-change-all-lines newhead hdmarker))
|
|
|
- (org-move-to-column col nil nil t))))
|
|
|
+ (org-move-to-column col))))
|
|
|
|
|
|
(defun org-agenda-clock-out ()
|
|
|
"Stop the currently running clock."
|
|
@@ -9285,7 +9285,7 @@ ARG is passed through to `org-deadline'."
|
|
|
(setq newhead (org-get-heading))))))
|
|
|
(org-agenda-change-all-lines newhead marker)
|
|
|
(move-marker marker nil)
|
|
|
- (org-move-to-column col nil nil t)
|
|
|
+ (org-move-to-column col)
|
|
|
(org-agenda-unmark-clocking-task)))
|
|
|
|
|
|
(defun org-agenda-clock-cancel (&optional arg)
|