summaryrefslogtreecommitdiffstats
path: root/lisplib.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-06-20 08:07:18 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-06-20 08:07:18 -0700
commitd1e775648cba50537070b3bb598ed7dc7e5cbb64 (patch)
tree312260a6fb5bfcc315253389d0ae1544b55d3299 /lisplib.c
parent55a691ccd9972e8c7dc077107e6cd065b0c37259 (diff)
downloadtxr-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.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/lisplib.c b/lisplib.c
index f84b47b6..33277b7b 100644
--- a/lisplib.c
+++ b/lisplib.c
@@ -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)