diff options
author | Thanos Apollo <[email protected]> | 2024-08-06 23:47:35 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-08-06 23:48:12 +0300 |
commit | 0d1b86cce0ba070de8919695c2cb32c2b947c281 (patch) | |
tree | 9540f8329d6c0ebad86071070b54d42913a25d24 /gnosis.el | |
parent | d0c1f48a2d68b7021dfa9130445c0adb46051807 (diff) |
review-session: Remove deprecated date variable.
Diffstat (limited to 'gnosis.el')
-rw-r--r-- | gnosis.el | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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 |