Skip to content

Commit 077efd4

Browse files
authored
Rename ENV variable JULIA_USE_NEW_PARSER -> JULIA_USE_FLISP_PARSER (#50595)
Closes #50470
2 parents d256f92 + 1116d7c commit 077efd4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

HISTORY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ New language features
44
---------------------
55

66
* JuliaSyntax.jl is now used as the default parser, providing better diagnostics and faster
7-
parsing. Set environment variable `JULIA_USE_NEW_PARSER` to `0` to switch back to the old
7+
parsing. Set environment variable `JULIA_USE_FLISP_PARSER` to `1` to switch back to the old
88
parser if necessary (and if you find this necessary, please file an issue) ([#46372]).
99
* `` (U+297A, `\leftarrowsubset`) and `` (U+2977, `\leftarrowless`)
1010
may now be used as binary operators with arrow precedence. ([#45962])

base/Base.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ function __init__()
604604
_require_world_age[] = get_world_counter()
605605
# Prevent spawned Julia process from getting stuck waiting on Tracy to connect.
606606
delete!(ENV, "JULIA_WAIT_FOR_TRACY")
607-
if get_bool_env("JULIA_USE_NEW_PARSER", true) === true
607+
if get_bool_env("JULIA_USE_FLISP_PARSER", false) === false
608608
JuliaSyntax.enable_in_core!()
609609
end
610610
nothing

0 commit comments

Comments
 (0)