diff options
author | Thanos Apollo <[email protected]> | 2024-08-06 23:44:14 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-08-06 23:47:20 +0300 |
commit | 6051ee407ce44df36b9b2d8c10f22298f7b35ddc (patch) | |
tree | 01bd23b8b106655e74004898ab898a7fe45de903 /gnosis.el | |
parent | 23bb89e78c05a42926374e522a04e8bfbd0b69fc (diff) |
review: Remove note-count from commits.
Diffstat (limited to 'gnosis.el')
-rw-r--r-- | gnosis.el | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -1726,7 +1726,7 @@ NOTE-COUNT." (recursive-edit) (gnosis-review-actions success note note-count)) -(defun gnosis-review-action--quit (success note note-count) +(defun gnosis-review-action--quit (success note) "Quit review session. Update result for NOTE review with SUCCESS and commit session for NOTE-COUNT. @@ -1734,8 +1734,7 @@ Update result for NOTE review with SUCCESS and commit session for NOTE-COUNT. This function should be used with `gnosis-review-actions', to finish the review session." (gnosis-review-result note success) - (gnosis-review-commit note-count) - ;; Break the loop of `gnosis-review-session' + ;; Break the review loop of `gnosis-review-session' (throw 'review-loop t)) (defun gnosis-review-action--suspend (success note note-count) @@ -1781,7 +1780,7 @@ To customize the keybindings, adjust `gnosis-review-keybindings'." ("override" (gnosis-review-action--override success note note-count)) ("suspend" (gnosis-review-action--suspend success note note-count)) ("edit" (gnosis-review-action--edit success note note-count)) - ("quit" (gnosis-review-action--quit success note note-count))))) + ("quit" (gnosis-review-action--quit success note))))) (defun gnosis-review-session (notes &optional due note-count) "Start review session for NOTES. |