You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: changes.md
+9-3Lines changed: 9 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
7
7
### 1.1 Direct Linking
8
8
9
-
Direct linking can be enabled with -Dclojure.compiler.direct-linking=true
9
+
Direct linking can be enabled with `-Dclojure.compiler.direct-linking=true`
10
10
11
11
Direct linking allows functions compiled with direct linking on to make direct
12
12
static method calls to most other functions, instead of going through the var
@@ -17,7 +17,9 @@ With this change, clojure.core itself is compiled with direct linking
17
17
and therefore other namespaces cannot redefine core fns and have those
18
18
redefinitions seen by core code.
19
19
20
-
A new metadata key ^:redef is provided. A function declared with this key can be redefined and will never be direct linked. Also, functions declared as ^:dynamic will never be direct linked.
20
+
A new metadata key ^:redef is provided. A function declared with this key can
21
+
be redefined and will never be direct linked. Also, functions declared as
0 commit comments