diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-04-07 23:14:17 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-04-07 23:14:17 -0700 |
commit | 3d4eb23d70df8cd6386fc995658fc4ea7c8856fe (patch) | |
tree | 5f13ba2abfebf1d729bed9ea049f1eeac1d74743 /txr.1 | |
parent | 87b90e5ef348d54569785d7aa4143fe3edff55ea (diff) | |
download | txr-3d4eb23d70df8cd6386fc995658fc4ea7c8856fe.tar.gz txr-3d4eb23d70df8cd6386fc995658fc4ea7c8856fe.tar.bz2 txr-3d4eb23d70df8cd6386fc995658fc4ea7c8856fe.zip |
Mistake in apply example.
* txr.1: Example produces (1 2 3 4), not (1 2 3).
Diffstat (limited to 'txr.1')
-rw-r--r-- | txr.1 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |