diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 59d0994b8..48d38049c 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -7705,7 +7705,7 @@ tags in the FILTER if any of the tags in FILTER are grouptags." (progn (setq tags (org-get-at-bol 'tags) cat (org-get-at-eol 'org-category 1) - txt (org-get-at-eol 'txt 1)) + txt (org-get-at-bol 'txt)) (if (not (eval org-agenda-filter-form)) (org-agenda-filter-hide-line type)) (beginning-of-line 2)) diff --git a/lisp/org-clock.el b/lisp/org-clock.el index e6ca46666..8e1fca0b5 100644 --- a/lisp/org-clock.el +++ b/lisp/org-clock.el @@ -2646,12 +2646,14 @@ from the dynamic block definition." ((eq formula '%) ;; compute the column where the % numbers need to go (setq pcol (+ 2 + (length properties) (if multifile 1 0) (if level-p 1 0) (if timestamp 1 0) (min maxlevel (or ntcol 100)))) ;; compute the column where the total time is (setq tcol (+ 2 + (length properties) (if multifile 1 0) (if level-p 1 0) (if timestamp 1 0)))