Browse Source

Merge remote-tracking branch 'origin/maint' into maint

Kyle Meyer 9 years ago
parent
commit
32ccc854cf
2 changed files with 3 additions and 1 deletions
  1. 1 1
      lisp/org-agenda.el
  2. 2 0
      lisp/org-clock.el

+ 1 - 1
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))

+ 2 - 0
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)))