[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/org eeb4fa8c09 1/3: org-scan-tags: Fixup a1c923afd
From: |
ELPA Syncer |
Subject: |
[elpa] externals/org eeb4fa8c09 1/3: org-scan-tags: Fixup a1c923afd |
Date: |
Mon, 5 Sep 2022 06:57:52 -0400 (EDT) |
branch: externals/org
commit eeb4fa8c09e6e21b86bec51328e53b4adf662945
Author: Ihor Radchenko <yantar92@gmail.com>
Commit: Ihor Radchenko <yantar92@gmail.com>
org-scan-tags: Fixup a1c923afd
* lisp/org.el: Drop missed 'words argument to `regexp-opt'.
---
lisp/org.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lisp/org.el b/lisp/org.el
index f317053c4b..03c424a10c 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -10861,7 +10861,7 @@ headlines matching this string."
;; Get the correct level to match
(concat "\\*\\{" (number-to-string start-level) "\\} ")
org-outline-regexp)
- " *\\(" (regexp-opt org-todo-keywords-1 'words) " \\)?"
+ " *\\(" (regexp-opt org-todo-keywords-1) " \\)?"
" *\\(.*?\\)\\([ \t]:\\(?:" org-tag-re ":\\)+\\)?[ \t]*$"))
(props (list 'face 'default
'done-face 'org-agenda-done