Function: shr-make-table

shr-make-table is a byte-compiled function defined in shr.el.gz.

Signature

(shr-make-table DOM WIDTHS &optional FILL STORAGE-ATTRIBUTE)

Source Code

;; Defined in /usr/src/emacs/lisp/net/shr.el.gz
(defun shr-make-table (dom widths &optional fill storage-attribute)
  (or (cadr (assoc (list dom widths fill) shr-content-cache))
      (let ((data (shr-make-table-1 dom widths fill)))
	(push (list (list dom widths fill) data)
	      shr-content-cache)
	(when storage-attribute
	  (dom-set-attribute dom storage-attribute data))
	data)))