Subject: Re: Common Lisp's fixable issues?
From: rpw3@rpw3.org (Rob Warnock)
Date: Mon, 23 Mar 2009 21:55:24 -0500
Newsgroups: comp.lang.lisp
Message-ID: <esWdnT00TrwB1lXUnZ2dnUVZ_jiWnZ2d@speakeasy.net>
Kenneth Tilton  <kentilton@gmail.com> wrote:
+---------------
| Anyone got the grep for a standalone t?
+---------------

"grep -i '\<t\>'" should do it. Note, though, that when I
ran that over the CMUCL code base, I found *6288* lines!

+---------------
| Why don't we just take the damn symbol back?!
+---------------

Why not, indeed?  ;-}  ;-}

    > (shadow 't)

    COMMON-LISP:T
    > (deflex t 32.456)

    T
    > t

    32.456
    > (defun t () t)

    T
    > (let ((t 'inner-truth))
	(list t (t) cl:t))
    
    (INNER-TRUTH 32.456 COMMON-LISP:T)
    > 


-Rob

-----
Rob Warnock			<rpw3@rpw3.org>
627 26th Avenue			<URL:http://rpw3.org/>
San Mateo, CA 94403		(650)572-2607