aboutsummaryrefslogtreecommitdiff
path: root/fnl/settings.fnl
diff options
context:
space:
mode:
authorame <[email protected]>2024-10-22 23:55:40 -0500
committerame <[email protected]>2024-10-22 23:55:40 -0500
commit258dfc41ff24e2fba9e90e6a015274103d40ea4d (patch)
tree8f66a112cb9e3fa3d3d77195214de57ae4e7608a /fnl/settings.fnl
parent6d322cff3f3ba0f58ada2656d365e77f10b4b292 (diff)
fixes
Diffstat (limited to 'fnl/settings.fnl')
-rw-r--r--fnl/settings.fnl2
1 files changed, 1 insertions, 1 deletions
diff --git a/fnl/settings.fnl b/fnl/settings.fnl
index 0a4178c..c41ce5f 100644
--- a/fnl/settings.fnl
+++ b/fnl/settings.fnl
@@ -2,7 +2,7 @@
(lambda _get [_ key]
(local file (io.open (.. path key) :rb))
- (when (= file nil) nil)
+ (when (= file nil) (lua :return))
(local value (file:read :*a))
(io.close file)