diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-10-28 06:32:38 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-10-28 06:32:38 -0700 |
commit | 20619c589ac74de43e79d7781df17e16d3ee850b (patch) | |
tree | cf6982f97603d6ab92383eb499acaa0284720851 | |
parent | 92ee851ccfee8ac13a055cbdad503789ffa2a6b9 (diff) | |
download | txr-20619c589ac74de43e79d7781df17e16d3ee850b.tar.gz txr-20619c589ac74de43e79d7781df17e16d3ee850b.tar.bz2 txr-20619c589ac74de43e79d7781df17e16d3ee850b.zip |
Fix with-hash-table-iter typo.
* lisplib.c (hash_set_entries): Change with-hash-table-iter
to with-hash-iter.
* txr.1: Likewise.
-rw-r--r-- | lisplib.c | 2 | ||||
-rw-r--r-- | txr.1 | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -216,7 +216,7 @@ static val with_stream_instantiate(val set_fun) static val hash_set_entries(val dlt, val fun) { - val name[] = { lit("with-hash-table-iter"), nil }; + val name[] = { lit("with-hash-iter"), nil }; set_dlt_entries(dlt, name, fun); return nil; } @@ -29011,7 +29011,7 @@ If no more entries remain to be visited, it returns .mets \ \ << body-form *) .syne The -.code with-hash-table-iter +.code with-hash-iter macro evaluates .metn body-form -s in an environment in which a lexically scoped function is visible. |