mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-03 18:41:25 -08:00
eww textarea input fixup
* net/eww.el (eww-process-text-input): Allow inputting when the point is at the start of the line, as the properties aren't front-sticky.
This commit is contained in:
parent
63b34baae6
commit
dfbc66e3e4
2 changed files with 5 additions and 1 deletions
|
|
@ -603,7 +603,7 @@ appears in a <link> or <a> tag."
|
|||
(insert " ")))
|
||||
|
||||
(defun eww-process-text-input (beg end length)
|
||||
(let* ((form (get-text-property end 'eww-form))
|
||||
(let* ((form (get-text-property (min (1+ end) (point-max)) 'eww-form))
|
||||
(properties (text-properties-at end))
|
||||
(type (plist-get form :type)))
|
||||
(when (and form
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue