Skip to content

Commit

Permalink
Fix function declarations
Browse files Browse the repository at this point in the history
* lisp/org-macro.el (org-file-contents):
* lisp/ob-exp.el (org-in-commented-heading-p):
(org-in-archived-heading-p): Add missing argument to function
declarations.
  • Loading branch information
yantar92 committed Jun 16, 2022
1 parent b061e7b commit e273fa9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lisp/ob-exp.el
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
(declare-function org-element-type "org-element" (element))
(declare-function org-escape-code-in-string "org-src" (s))
(declare-function org-export-copy-buffer "ox" ())
(declare-function org-in-commented-heading-p "org" (&optional no-inheritance))
(declare-function org-in-archived-heading-p "org" (&optional no-inheritance))
(declare-function org-in-commented-heading-p "org" (&optional no-inheritance element))
(declare-function org-in-archived-heading-p "org" (&optional no-inheritance element))

(defvar org-src-preserve-indentation)

Expand Down
2 changes: 1 addition & 1 deletion lisp/org-macro.el
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
(declare-function org-element-type "org-element" (element))
(declare-function org-entry-get "org" (pom property &optional inherit literal-nil))
(declare-function org-file-contents "org" (file &optional noerror nocache))
(declare-function org-in-commented-heading-p "org" (&optional no-inheritance))
(declare-function org-in-commented-heading-p "org" (&optional no-inheritance element))
(declare-function org-link-search "ol" (s &optional avoid-pos stealth))
(declare-function org-mode "org" ())
(declare-function vc-backend "vc-hooks" (f))
Expand Down

0 comments on commit e273fa9

Please sign in to comment.