diff options
Diffstat (limited to 'src/interp')
-rw-r--r-- | src/interp/g-opt.boot | 2 | ||||
-rw-r--r-- | src/interp/g-util.boot | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/interp/g-opt.boot b/src/interp/g-opt.boot index a11855ff..47c5ce92 100644 --- a/src/interp/g-opt.boot +++ b/src/interp/g-opt.boot @@ -478,7 +478,7 @@ $VMsideEffectFreeOperators == %fpow %fdiv %fneg %i2f %fminval %fmaxval %fbase %fprec %ftrunc %nil %pair? %lconcat %llength %lfirst %lsecond %lthird %lreverse %lempty? %hash %ismall? %string? %f2s - %ceq %clt %cle %cgt %cge %c2i %i2c + %ceq %clt %cle %cgt %cge %c2i %i2c %sname %vref %vlength %before?) ++ List of simple VM operators diff --git a/src/interp/g-util.boot b/src/interp/g-util.boot index cf7da6ce..c2463dc5 100644 --- a/src/interp/g-util.boot +++ b/src/interp/g-util.boot @@ -382,6 +382,7 @@ for x in [ -- symbol unary functions ['%gensym, :'GENSYM], + ['%sname, :'SYMBOL_-NAME], -- string unary functions ['%string?, :'STRINGP], |