diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2013-07-19 16:44:16 +0200 |
---|---|---|
committer | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2013-07-19 16:44:16 +0200 |
commit | dfbc66e3e4c21c682493228b4d1b4843a8cd5dfc (patch) | |
tree | c63632cca2242cfabc82ec16a55c98bc6cffd05d /lisp/net/eww.el | |
parent | 63b34baae679272a1c9438b4f85a9c596bc6beb8 (diff) | |
download | emacs-dfbc66e3e4c21c682493228b4d1b4843a8cd5dfc.tar.gz emacs-dfbc66e3e4c21c682493228b4d1b4843a8cd5dfc.tar.bz2 emacs-dfbc66e3e4c21c682493228b4d1b4843a8cd5dfc.zip |
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.
Diffstat (limited to 'lisp/net/eww.el')
-rw-r--r-- | lisp/net/eww.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/eww.el b/lisp/net/eww.el index d832aa7ef3e..d65932ae7c9 100644 --- a/lisp/net/eww.el +++ b/lisp/net/eww.el @@ -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 |