File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ DYNAMIC-VAR bound to STATIC-VAR."
155
155
(defun cps--add-state (kind body )
156
156
" Create a new CPS state with body BODY and return the state's name."
157
157
(declare (indent 1 ))
158
- (let* ((state (cps--gensym " cps-state-%s-" kind)))
158
+ (let ((state (cps--gensym " cps-state-%s-" kind)))
159
159
(push (list state body cps--cleanup-function) cps--states)
160
160
(push state cps--bindings)
161
161
state))
Original file line number Diff line number Diff line change @@ -317,7 +317,7 @@ Errors out if the key exists already."
317
317
(message " reindexing: %d of %d (%. 2f%% ) "
318
318
count expected (/ (* 100.0 count) expected)))
319
319
(dolist (val (cdr-safe (assq tr v)))
320
- (let* ((value-keys (registry-lookup-secondary-value db tr val)))
320
+ (let ((value-keys (registry-lookup-secondary-value db tr val)))
321
321
(push key value-keys)
322
322
(registry-lookup-secondary-value db tr val value-keys))))
323
323
(oref db data))))))
You can’t perform that action at this time.
0 commit comments