The Lambda Lab
/
projects
/
forth.jl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a914fb7
)
Removed use of deprecated parse() in favour of Meta.parse().
author
Tim Vaughan
<tgvaughan@gmail.com>
Wed, 5 Sep 2018 14:09:50 +0000
(16:09 +0200)
committer
Tim Vaughan
<tgvaughan@gmail.com>
Wed, 5 Sep 2018 14:09:50 +0000
(16:09 +0200)
src/forth.jl
patch
|
blob
|
history
diff --git
a/src/forth.jl
b/src/forth.jl
index
d80d7e2
..
c298b72
100644
(file)
--- a/
src/forth.jl
+++ b/
src/forth.jl
@@
-1164,7
+1164,7
@@
CREATE_PRIM_CFA = defPrimWord("CREATE-PRIM", () -> begin
getString(addr, len), "\n",
"return NEXT\n",
"end")
- func = eval(parse(exprString))
+ func = eval(
Meta.
parse(exprString))
pushPS(defPrim(func))
return NEXT