0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-07-16 14:16:26 +00:00

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.
This commit is contained in:
Bastien Guerry 2013-07-11 14:33:08 +02:00
parent 136081a0d4
commit 202c5895b1

View file

@ -4840,6 +4840,7 @@ Support for group tags is controlled by the option
(lambda (tg) (cond ((eq (car tg) :startgroup) "{") (lambda (tg) (cond ((eq (car tg) :startgroup) "{")
((eq (car tg) :endgroup) "}") ((eq (car tg) :endgroup) "}")
((eq (car tg) :grouptags) ":") ((eq (car tg) :grouptags) ":")
((eq (car tg) :newline) "\n")
(t (concat (car tg) (t (concat (car tg)
(if (characterp (cdr tg)) (if (characterp (cdr tg))
(format "(%s)" (char-to-string (cdr tg))) ""))))) (format "(%s)" (char-to-string (cdr tg))) "")))))