1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-24 22:23:15 +00:00

Fix extra bindings.

This commit is contained in:
Calvin Rose 2020-04-29 21:57:19 -05:00
parent 73989f5cc7
commit bee415217d

View File

@ -2421,9 +2421,10 @@
(print))
(unless (get _env 'disasm)
(put _env .disasm nil)
(put _env .bytecode nil)
(put _env .ppasm nil))
(put _env '.disasm nil)
(put _env '.bytecode nil)
(put _env '.ppasm nil))
(put _env 'disasm-alias nil)
(defn .source
"Show the source code for the function being debugged."