From 202c5895b1495916654c187a0f91c4c563d02f51 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Thu, 11 Jul 2013 14:33:08 +0200 Subject: [PATCH] org.el (org-set-regexps-and-options-for-tags): Fix concatenation of the tags list * org.el (org-set-regexps-and-options-for-tags): Fix concatenation of the tags list. Thanks to Nick for reporting this bug and to Rainer for confirming the fix. --- lisp/org.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/org.el b/lisp/org.el index 94a929a28..4de2beb3d 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -4840,6 +4840,7 @@ Support for group tags is controlled by the option (lambda (tg) (cond ((eq (car tg) :startgroup) "{") ((eq (car tg) :endgroup) "}") ((eq (car tg) :grouptags) ":") + ((eq (car tg) :newline) "\n") (t (concat (car tg) (if (characterp (cdr tg)) (format "(%s)" (char-to-string (cdr tg))) ""))))) -- 2.11.4.GIT