From a2665d2f02ce417851719f07c9e88bd642d59641 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Mon, 3 Feb 2014 15:12:29 -0800 Subject: * lib.c (nullp): Function removed. * lib.h (nullp): New inline function. (eq): Removed useless parentheses: it's not a macro. --- lib.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'lib.c') diff --git a/lib.c b/lib.c index 09ca61c6..3f01ab85 100644 --- a/lib.c +++ b/lib.c @@ -1418,11 +1418,6 @@ val consp(val obj) return (ty == CONS || ty == LCONS) ? t : nil; } -val nullp(val obj) -{ - return obj == 0 ? t : nil; -} - val atom(val obj) { return if3(consp(obj), nil, t); -- cgit v1.2.3