Function: eww-inputs

eww-inputs is a byte-compiled function defined in eww.el.gz.

Signature

(eww-inputs FORM)

Source Code

;; Defined in /usr/src/emacs/lisp/net/eww.el.gz
(defun eww-inputs (form)
  (let ((start (point-min))
	(inputs nil))
    (while (and start
		(< start (point-max)))
      (when (or (get-text-property start 'eww-form)
		(setq start (next-single-property-change start 'eww-form)))
	(when (eq (plist-get (get-text-property start 'eww-form) :eww-form)
		  form)
	  (push (cons start (get-text-property start 'eww-form))
		inputs))
	(setq start (next-single-property-change start 'eww-form))))
    (nreverse inputs)))