From 0d1b86cce0ba070de8919695c2cb32c2b947c281 Mon Sep 17 00:00:00 2001 From: Thanos Apollo Date: Tue, 6 Aug 2024 23:47:35 +0300 Subject: review-session: Remove deprecated date variable. --- gnosis.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gnosis.el b/gnosis.el index 13aca46..bb07cd7 100644 --- a/gnosis.el +++ b/gnosis.el @@ -1788,14 +1788,13 @@ To customize the keybindings, adjust `gnosis-review-keybindings'." NOTES: List of note ids DUE: If due is non-nil, session will loop for due notes. NOTE-COUNT: Total notes to be commited for session." - (let ((note-count (or note-count 0)) - (date (gnosis-algorithm-date))) + (let ((note-count (or note-count 0))) (if (null notes) (message "No notes for review.") (setf gnosis-review-notes notes) (catch 'review-loop (cl-loop for note in notes - do (let ((success (gnosis-review-note note date))) + do (let ((success (gnosis-review-note note))) (cl-incf note-count) (gnosis-review-actions success note note-count)) finally -- cgit v1.2.3