Function: data-debug-insert-hash-table

data-debug-insert-hash-table is a byte-compiled function defined in data-debug.el.gz.

Signature

(data-debug-insert-hash-table HASH-TABLE PREFIX)

Documentation

Insert the contents of HASH-TABLE inserting PREFIX before each element.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/data-debug.el.gz
;;; Hash-table
;;

(defun data-debug-insert-hash-table (hash-table prefix)
  "Insert the contents of HASH-TABLE inserting PREFIX before each element."
  (maphash
   (lambda (key value)
     (data-debug-insert-thing
      key prefix
      (propertize "key " 'face 'font-lock-comment-face))
     (data-debug-insert-thing
      value prefix
      (propertize "val " 'face 'font-lock-comment-face)))
   hash-table))