summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorIhor Radchenko <yantar92@posteo.net>2024-01-12 12:20:49 +0100
committerIhor Radchenko <yantar92@posteo.net>2024-01-12 12:20:49 +0100
commit4d4126b341e0d92983f9ad0e0b70c01d2b1e9a08 (patch)
treecc85e234e247a0d6853c8c8310fb3d8d61391465 /lisp
parent2a77f1de0cc1dbf8345ac26eed32798e779910ab (diff)
lisp/org-expiry.el: Switch to lexical binding
* lisp/org-expiry.el (org-expiry-process-entries): Mark unused arguments.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/org-expiry.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org-expiry.el b/lisp/org-expiry.el
index 4caf870..6ef71cf 100644
--- a/lisp/org-expiry.el
+++ b/lisp/org-expiry.el
@@ -1,4 +1,4 @@
-;;; org-expiry.el --- expiry mechanism for Org entries
+;;; org-expiry.el --- expiry mechanism for Org entries -*- lexical-binding: t; -*-
;;
;; Copyright 2007-2021 Free Software Foundation, Inc.
;;
@@ -257,7 +257,7 @@ Otherwise rely on `org-expiry-confirm-flag' to decide."
(funcall org-expiry-handler-function))
(delete-overlay ov)))))
-(defun org-expiry-process-entries (beg end)
+(defun org-expiry-process-entries (_ _)
"Process all expired entries between BEG and END.
The expiry process will run the function defined by
`org-expiry-handler-functions'."