diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-06-20 08:07:18 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-06-20 08:07:18 -0700 |
commit | d1e775648cba50537070b3bb598ed7dc7e5cbb64 (patch) | |
tree | 312260a6fb5bfcc315253389d0ae1544b55d3299 /lisplib.c | |
parent | 55a691ccd9972e8c7dc077107e6cd065b0c37259 (diff) | |
download | txr-d1e775648cba50537070b3bb598ed7dc7e5cbb64.tar.gz txr-d1e775648cba50537070b3bb598ed7dc7e5cbb64.tar.bz2 txr-d1e775648cba50537070b3bb598ed7dc7e5cbb64.zip |
Remove places.h generation hack.
* Makefile (GEN_HDRS, LISP_TO_C_STRING): Variables removed.
(%.h: %.tl): Rule removed. The place.h header is no longer
generated from place.tl.
* lisplib.c (place_instantiate): Load place.tl from stdlib directory,
rather than obtaining it from a string literal in generated header
place.h.
* place.tl: Moved to share/txr/stdlib directory.
* genvim.txr: Refer to place.tl in stdlib.
Diffstat (limited to 'lisplib.c')
-rw-r--r-- | lisplib.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -35,7 +35,6 @@ #include "stream.h" #include "hash.h" #include "gc.h" -#include "place.h" #include "txr.h" #include "lisplib.h" @@ -79,8 +78,8 @@ static val place_set_entries(val dlt, val fun) static val place_instantiate(val set_fun) { funcall1(set_fun, nil); - return eval_intrinsic(lisp_parse(string_utf8(place_code), std_error, - colon_k, lit("place.tl")), nil); + load(format(nil, lit("~a/place.tl"), stdlib_path, nao)); + return nil; } static val ver_set_entries(val dlt, val fun) |