From 6feba77e44809a9eb39f9cc54bfa7c01f42eb098 Mon Sep 17 00:00:00 2001 From: dos-reis Date: Sat, 13 Sep 2008 22:56:49 +0000 Subject: * lisp/core.lisp.in (|$NativeTypeTable|): Don' include `pointer' and `buffer'. * lisp/Makefile.in (pointer_type): Remove. (edit): Tidy. * boot/ast.boot (nativeType): Tidy. Handle `pointer' and `buffer' here. * boot/translator.boot (genImportDeclaration): Tidy. --- src/lisp/Makefile.in | 4 +--- src/lisp/core.lisp.in | 5 ++--- 2 files changed, 3 insertions(+), 6 deletions(-) (limited to 'src/lisp') diff --git a/src/lisp/Makefile.in b/src/lisp/Makefile.in index 2f0270b1..726a017f 100644 --- a/src/lisp/Makefile.in +++ b/src/lisp/Makefile.in @@ -134,7 +134,6 @@ int_type = @int_type@ float_type = @float_type@ double_type = @double_type@ string_type = @string_type@ -pointer_type = @pointer_type@ edit = sed \ -e 's|@open_axiom_installdir[@]|$(open_axiom_installdir)|g' \ @@ -151,8 +150,7 @@ edit = sed \ -e 's|@int_type[@]|$(int_type)|g' \ -e 's|@float_type[@]|$(float_type)|g' \ -e 's|@double_type[@]|$(double_type)|g' \ - -e 's|@string_type[@]|$(string_type)|g' \ - -e 's|@pointer_type[@]|$(pointer_type)|g' + -e 's|@string_type[@]|$(string_type)|g' core.lisp: $(srcdir)/core.lisp.in $(edit) $< > $@.tmp diff --git a/src/lisp/core.lisp.in b/src/lisp/core.lisp.in index 83a1b610..7b9d5710 100644 --- a/src/lisp/core.lisp.in +++ b/src/lisp/core.lisp.in @@ -985,6 +985,5 @@ (|int| . @int_type@) (|float| . @float_type@) (|double| . @double_type@) - (|string| . @string_type@) - (|buffer| . @pointer_type@) - (|pointer| . @pointer_type@))) + (|string| . @string_type@))) + -- cgit v1.2.3