summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2015-04-11 00:15:04 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2015-04-11 00:15:04 +0200
commit9debffbe0f1c10e33514073264d2d5462c1fa0f8 (patch)
treef6a1d9af492d219d1ff325af3cc3d407eec0fa8d
parent7b97b631ef980b9b63ebc3f3fb38295a90ade90d (diff)
downloadorg-mode-9debffbe0f1c10e33514073264d2d5462c1fa0f8.tar.gz
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>
-rwxr-xr-xlisp/org.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 744d443..3a6e571 100755
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -14290,7 +14290,8 @@ headlines matching this string."
(if (eq org-tags-match-list-sublevels 'indented)
(make-string (1- level) ?.) "")
(org-get-heading))
- level category
+ (make-string level ?\s)
+ category
tags-list)
priority (org-get-priority txt))
(goto-char lspos)