(insert (make-string (abs length) ? ))
(set-text-properties start (point) properties))
(goto-char (1- end)))))
- (set-text-properties (plist-get form :start) (plist-get form :end)
+ (set-text-properties (cdr (assq :start form))
+ (cdr (assq :end form))
properties)
(let ((value (buffer-substring-no-properties
(eww-beginning-of-field)
(when (or (get-text-property start 'eww-form)
(setq start (next-single-property-change start 'eww-form)))
(let ((props (get-text-property start 'eww-form)))
- (plist-put props :start start)
- (setq start (next-single-property-change
- start 'eww-form nil (point-max)))
- (plist-put props :end start))))))
+ (nconc props (list (cons :start start)))
+ (setq start (next-single-property-change
+ start 'eww-form nil (point-max)))
+ (nconc props (list (cons :end start))))))))
(defun eww-input-value (input)
(let ((type (plist-get input :type))