diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | txr.1 | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,5 +1,9 @@ 2015-06-24 Kaz Kylheku <kaz@kylheku.com> + * txr.1: partition example: wrong use of where function. + +2015-06-24 Kaz Kylheku <kaz@kylheku.com> + * hash.c (hash_from_pairs, hash_list): New functions. * hash.h (hash_from_pairs, hash_list): Declared. @@ -14853,8 +14853,8 @@ of one element. (partition '(1 2 3) 1) -> ((1) (2 3)) ;; split the string where there is a "b" - (partition "abcbcbd" (op where @1 (op eql #\eb))) -> ("a" "bc" - "bc" "bd") + (partition "abcbcbd" (op where (op eql #\eb))) -> ("a" "bc" + "bc" "bd") .cble .coNP Function @ partition* |