klisp

an open source interpreter for the Kernel Programming Language.
git clone http://git.hanabi.in/repos/klisp.git
Log | Files | Refs | README

commit b839c15496e1164713b893dc479e0ef9a0664350
parent 77a6cd56698fe6ee7ec75b1b0b6191440783a667
Author: Andres Navarro <canavarro82@gmail.com>
Date:   Sat, 12 Mar 2011 23:01:35 -0300

Bugfix: #endif in kghelpers.h wasn't at end of file.

Diffstat:
Msrc/kghelpers.h | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/kghelpers.h b/src/kghelpers.h @@ -117,9 +117,6 @@ #define make_applicative(K_, fn_, ...) \ kwrap(K_, kmake_operative(K_, KNIL, KNIL, fn_, __VA_ARGS__)) - -#endif - /* ** This states are useful for traversing trees, saving the state in the ** token char buffer @@ -255,3 +252,5 @@ inline TValue check_copy_env_list(klisp_State *K, char *name, TValue obj) ** It can only be used by types that have a unique tag */ void typep(klisp_State *K, TValue *xparams, TValue ptree, TValue denv); + +#endif