aboutsummaryrefslogtreecommitdiff
path: root/src/repl.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-04-15 10:41:06 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-04-15 10:41:06 -0400
commit4a604a298c0cde9667c483e93106a209b4cd3055 (patch)
treee25b28b177bc01315173443ac15f4ae9850c84c2 /src/repl.c
parentc1ae3ad9f42d510650f972671fcb0df0c3aa8388 (diff)
Add --no-source-mapping flag
Diffstat (limited to 'src/repl.c')
-rw-r--r--src/repl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/repl.c b/src/repl.c
index bd08a3e4..aae80b2c 100644
--- a/src/repl.c
+++ b/src/repl.c
@@ -42,7 +42,7 @@ static PUREFUNC repl_binding_t *get_repl_binding(env_t *env, const char *name)
void repl(void)
{
- env_t *env = global_env();
+ env_t *env = global_env(true);
size_t buf_size = 0;
char *line = NULL;
ssize_t len = 0;