From 3d4eb23d70df8cd6386fc995658fc4ea7c8856fe Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Thu, 7 Apr 2016 23:14:17 -0700 Subject: Mistake in apply example. * txr.1: Example produces (1 2 3 4), not (1 2 3). --- txr.1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/txr.1 b/txr.1 index bffedd3d..4d848f03 100644 --- a/txr.1 +++ b/txr.1 @@ -23021,7 +23021,7 @@ with an improper argument list. (apply (fun list) '(1 2 3)) -> (1 2 3) ;; this effectively invokes (list 1 2 3 4) - (apply (fun list) 1 2 '(3 4)) -> (1 2 3) + (apply (fun list) 1 2 '(3 4)) -> (1 2 3 4) ;; this effectively invokes (list 1 2 . 3) (apply (fun list) 1 2 3)) -> (1 2 . 3) -- cgit v1.2.3