summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2013-07-11 14:33:08 +0200
committerBastien Guerry <bzg@altern.org>2013-07-11 14:33:08 +0200
commit202c5895b1495916654c187a0f91c4c563d02f51 (patch)
tree46017e33f459ac652b788c1c847bd1a0d0d6e8da
parent136081a0d4dfe782f66c70daa5d4f35999dad86a (diff)
downloadorg-mode-202c5895b1495916654c187a0f91c4c563d02f51.tar.gz
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.
-rw-r--r--lisp/org.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 94a929a..4de2beb 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))) "")))))