diff options
author | dos-reis <gdr@axiomatics.org> | 2011-10-07 19:48:11 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2011-10-07 19:48:11 +0000 |
commit | 16e12e0c3d18a3eb41425be40275236c6df37c40 (patch) | |
tree | 82d380fb5e2e6d0d48f3b918d5aaafa20115f3f9 /src/boot | |
parent | da334a99fa9e66215133f4cf5fe87a3b78d7084e (diff) | |
download | open-axiom-16e12e0c3d18a3eb41425be40275236c6df37c40.tar.gz |
* interp/lexing.boot: Include sys-macros.
Add more tokenizer functions.
* interp/fnewmeta.lisp: Use them.
* interp/parsing.lisp: Likewise.
* interp/bootlex.lisp: Likewise.
* interp/spad.lisp: Likewise.
(NEXT-BOOT-LINE): Remove.
* interp/metalex.lisp: Remove old lexing routines.
* interp/Makefile.in (lexing.$(FASLEXT)): Adjust dependency.
* boot/tokens.boot: newString is no longer builtin library function.
(shoeDictCons): Use makeString not newString.
* lisp/core.lisp.in (listToString): Fix typo.
Diffstat (limited to 'src/boot')
-rw-r--r-- | src/boot/tokens.boot | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/boot/tokens.boot b/src/boot/tokens.boot index 56e1b051..21f9da32 100644 --- a/src/boot/tokens.boot +++ b/src/boot/tokens.boot @@ -152,7 +152,7 @@ shoeDictCons()== d := a := newVector 256 b := newVector 1 - b.0 := newString 0 + b.0 := makeString 0 for i in 0..255 repeat a.i := b a @@ -277,7 +277,6 @@ for i in [ _ ["makeSymbol", "INTERN"] , _ ["maxIndex", "MAXINDEX"] , _ ["mkpf", "MKPF"] , _ - ["newString", "MAKE-STRING"], _ ["newVector", "MAKE-ARRAY"], _ ["nil" ,NIL ] , _ ["not", "NOT"] , _ |