diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2019-07-03 21:35:25 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2019-07-03 21:35:25 -0700 |
commit | 2bab9792c10ce768c63e974d2aebec315c4a32ae (patch) | |
tree | 3aba4908ddc9f81cf06649ce75dc1b94d0fd1967 | |
parent | 1d192cae368c38dbd43f859388665a446d644958 (diff) | |
download | txr-2bab9792c10ce768c63e974d2aebec315c4a32ae.tar.gz txr-2bab9792c10ce768c63e974d2aebec315c4a32ae.tar.bz2 txr-2bab9792c10ce768c63e974d2aebec315c4a32ae.zip |
doc: mistakes in dot position funcalls examples.
* txr.1: Two examples have a comment claiming an
incorrect return value. Reported by user vapnik spaknik.
-rw-r--r-- | txr.1 | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -11827,7 +11827,7 @@ Examples: [c 1] ;; indexes into vector #(5 6 7) to yield 6 - (call (op list 1 . @1) 2) ;; yields 2 + (call (op list 1 . @1) 2) ;; yields (1 . 2) .brev Note that the atom in the dot position of a function call may @@ -11843,7 +11843,7 @@ Thus: (list 1 . x)) ;; yields (1 . 2) (symacrolet ((x (list 1 2))) - (list 1 . x)) ;; (yields (1 . 3)) + (list 1 . x)) ;; yields (1 1 2) .brev That is to say, the expansion of |