mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-28 07:44:49 +00:00
lisp/org.el (org-make-tags-matcher): Suppress compiler warning
This commit is contained in:
parent
c8bd2092b1
commit
48169da265
@ -11618,7 +11618,12 @@ See also `org-scan-tags'."
|
||||
(or tagsmatcher todomatcher t))))
|
||||
(when org--matcher-tags-todo-only
|
||||
(setq matcher `(and (member todo org-not-done-keywords) ,matcher)))
|
||||
(cons match0 (byte-compile `(lambda (todo tags-list level) ,matcher))))))
|
||||
(cons match0
|
||||
(byte-compile
|
||||
`(lambda (todo tags-list level)
|
||||
;; Pacify byte-compiler.
|
||||
(ignore todo) (ignore tags-list) (ignore level)
|
||||
,matcher))))))
|
||||
|
||||
(defun org--tags-expand-group (group tag-groups expanded)
|
||||
"Recursively expand all tags in GROUP, according to TAG-GROUPS.
|
||||
|
Loading…
Reference in New Issue
Block a user