Function: mh-index-write-hashtable
mh-index-write-hashtable is a byte-compiled function defined in
mh-search.el.gz.
Signature
(mh-index-write-hashtable TABLE PROC)
Documentation
Write TABLE to current-buffer.
PROC is used to serialize the values corresponding to the hash table keys.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-search.el.gz
(defun mh-index-write-hashtable (table proc)
"Write TABLE to `current-buffer'.
PROC is used to serialize the values corresponding to the hash
table keys."
(pp (cl-loop for x being the hash-keys of table
collect (cons x (funcall proc (gethash x table))))
(current-buffer))
(insert "\n"))