From 54b9c845a7540bc9ac80f8da282add76ab1d145d Mon Sep 17 00:00:00 2001 From: Ihor Radchenko Date: Sun, 8 Oct 2023 13:01:12 +0300 Subject: [PATCH] * lisp/org-crypt.el: Fix outdated declare forms (org-end-of-subtree): (org-make-tags-matcher): Update the arglists. --- lisp/org-crypt.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/org-crypt.el b/lisp/org-crypt.el index 39d1a421d..5395068e8 100644 --- a/lisp/org-crypt.el +++ b/lisp/org-crypt.el @@ -74,10 +74,10 @@ (declare-function org-back-to-heading "org" (&optional invisible-ok)) (declare-function org-before-first-heading-p "org" ()) (declare-function org-end-of-meta-data "org" (&optional full)) -(declare-function org-end-of-subtree "org" (&optional invisible-ok to-heading)) +(declare-function org-end-of-subtree "org" (&optional invisible-ok to-heading element)) (declare-function org-entry-get "org" (pom property &optional inherit literal-nil)) (declare-function org-fold-subtree "org-fold" (flag)) -(declare-function org-make-tags-matcher "org" (match)) +(declare-function org-make-tags-matcher "org" (match &optional only-local-tags)) (declare-function org-previous-visible-heading "org" (arg)) (declare-function org-scan-tags "org" (action matcher todo-only &optional start-level)) (declare-function org-set-property "org" (property value))