summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2024-06-18 13:32:32 +0300
committerThanos Apollo <[email protected]>2024-06-18 13:32:32 +0300
commit758e915fd92b4052229b2b89fa920d1f93b61b65 (patch)
treeec974c0674e650258205c67bf1bf4d7f7bb0df22
parent8b24e05f6f02cad2063673271f199b268406a408 (diff)
gnosis-review-session: Use cl-incf
-rw-r--r--gnosis.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnosis.el b/gnosis.el
index 6394b03..eceb00e 100644
--- a/gnosis.el
+++ b/gnosis.el
@@ -1396,7 +1396,7 @@ NOTES: List of note ids"
(catch 'stop-loop
(cl-loop for note in notes
do (let ((success (gnosis-review-note note)))
- (setf note-count (1+ note-count))
+ (cl-incf note-count)
(gnosis-review-actions success note note-count))
finally (gnosis-review-commit note-count)))))))