Browse Source

Fix function call order in previous patch

* lisp/org-agenda.el (org-agenda-get-todos): Swap calls to `org-trim' and
`buffer-substring'.
Carsten Dominik 13 years ago
parent
commit
b43c1c621f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lisp/org-agenda.el

+ 2 - 2
lisp/org-agenda.el

@@ -4626,8 +4626,8 @@ the documentation of `org-diary'."
 	(setq marker (org-agenda-new-marker (match-beginning 0))
 	(setq marker (org-agenda-new-marker (match-beginning 0))
 	      category (org-get-category)
 	      category (org-get-category)
 	      org-category-pos (get-text-property (point) 'org-category-position)
 	      org-category-pos (get-text-property (point) 'org-category-position)
-	      txt (buffer-substring
-		   (org-trim (match-beginning 2) (match-end 0)))
+	      txt (org-trim
+		   (buffer-substring (match-beginning 2) (match-end 0)))
 	      tags (org-get-tags-at (point))
 	      tags (org-get-tags-at (point))
 	      txt (org-agenda-format-item "" txt category tags)
 	      txt (org-agenda-format-item "" txt category tags)
 	      priority (1+ (org-get-priority txt))
 	      priority (1+ (org-get-priority txt))