diff options
author | Thanos Apollo <[email protected]> | 2024-05-01 20:42:29 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-05-01 20:43:37 +0300 |
commit | 4b4cd25fe7d59326147cd5854a1c444b36ad86ae (patch) | |
tree | 532a780dfcfc5071678e63db80967ab8a20f01da /gnosis.el | |
parent | dc7652ceee147a3dcba3366051effea58d6b9bc8 (diff) |
gnosis-review--session: Update value of total review notes
Update value of gnosis-due-notes-total during review session
This way user was a count of total due notes during review.
Diffstat (limited to 'gnosis.el')
-rw-r--r-- | gnosis.el | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1300,9 +1300,9 @@ NOTES: List of note ids" (gnosis-edit-note note t) (recursive-edit)) (?q (gnosis-review-commit note-count) - (cl-return)))) - finally (gnosis-review-commit note-count))) - (setq gnosis-due-notes (length (gnosis-review-get-due-notes)))))) + (cl-return))) + (setq gnosis-due-notes-total (length (gnosis-review-get-due-notes)))) + finally (gnosis-review-commit note-count)))))) ;; Editing notes |