commit c4a890cc6680bbaecb92d36bde882199a17d4cf1
parent 48a1f3cbfd00eeacc3e237d66d9f814840110087
Author: Natasha Kerensikova <natgh@instinctive.eu>
Date: Sat, 24 Feb 2024 18:33:13 +0000
Procedure call in command `without-protection!` is corrected
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/iens.scm b/src/iens.scm
@@ -423,7 +423,7 @@
(unprotect! entry-id)
(if (procedure? proc) (proc) (eval proc))
(protect! entry-id))
- (proc))
+ (if (procedure? proc) (proc) (eval proc)))
(set! cur-entry prev-cur-entry-id))
(write-line (conc "Invalid procedure " proc))))