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
|
|
@ -1,5 +1,9 @@
|
|||
2013-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
* 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.
|
||||
|
||||
* net/shr.el (shr-make-table-1): Ensure that we don't infloop on
|
||||
degenerate widths.
|
||||
|
||||
|
|
|
|||
|
|
@ -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
Reference in a new issue