فهرست منبع

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.
Bastien Guerry 11 سال پیش
والد
کامیت
202c5895b1
1فایلهای تغییر یافته به همراه1 افزوده شده و 0 حذف شده
  1. 1 0
      lisp/org.el

+ 1 - 0
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))) "")))))