From: Owen Rodley Date: Fri, 3 May 2013 22:23:34 +0000 (+1200) Subject: Remove outdated comment X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=3930890ddbf4e1fbdcc400879ca8245b5cd6c564;p=jscl.git Remove outdated comment --- diff --git a/src/list.lisp b/src/list.lisp index af235dc..cb75bdc 100644 --- a/src/list.lisp +++ b/src/list.lisp @@ -62,7 +62,6 @@ (defun nth (n list) (car (nthcdr n list))) -;;; The rest of the C[AD]*R functions; only a few were defined in boot.lisp (defun caar (x) (car (car x))) (defun cadr (x) (car (cdr x))) (defun cdar (x) (cdr (car x)))