(lsdb-insert-hash-table): Bind print-level and print-length.
authorueno <ueno>
Sat, 24 Aug 2002 05:41:39 +0000 (05:41 +0000)
committerueno <ueno>
Sat, 24 Aug 2002 05:41:39 +0000 (05:41 +0000)
lsdb.el

diff --git a/lsdb.el b/lsdb.el
index c27b756..f4a442e 100644 (file)
--- a/lsdb.el
+++ b/lsdb.el
@@ -416,7 +416,8 @@ This is the current number of slots in HASH-TABLE, whether occupied or not."
          " test equal data (")
   (lsdb-maphash
    (lambda (key value)
-     (insert (prin1-to-string key) " " (prin1-to-string value) " "))
+     (let (print-level print-length)
+       (insert (prin1-to-string key) " " (prin1-to-string value) " ")))
    hash-table)
   (insert "))"))