Fix wrong type error with %l in `org-agenda-prefix-format'

* lisp/org.el (org-scan-tags): Fix type.

Reported-by: Dominik Schrempf <dominik.schrempf@gmail.com>
<http://permalink.gmane.org/gmane.emacs.orgmode/96823>
This commit is contained in:
Nicolas Goaziou 2015-04-11 00:15:04 +02:00
parent 7b97b631ef
commit 9debffbe0f

View file

@ -14290,7 +14290,8 @@ headlines matching this string."
(if (eq org-tags-match-list-sublevels 'indented) (if (eq org-tags-match-list-sublevels 'indented)
(make-string (1- level) ?.) "") (make-string (1- level) ?.) "")
(org-get-heading)) (org-get-heading))
level category (make-string level ?\s)
category
tags-list) tags-list)
priority (org-get-priority txt)) priority (org-get-priority txt))
(goto-char lspos) (goto-char lspos)