From 87ac4374374cbab07a18ef794a026a1fc2436d09 Mon Sep 17 00:00:00 2001 From: Lars Magne Ingebrigtsen Date: Mon, 24 Nov 2014 18:18:53 +0100 Subject: [PATCH] eww input field fixup (eww-process-text-input): Inhibit read only so that input fields don't get shortened (bug#19085). --- lisp/ChangeLog | 2 ++ lisp/net/eww.el | 1 + 2 files changed, 3 insertions(+) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 58f2a58a1c6..bb25996ffca 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,6 +1,8 @@ 2014-11-24 Lars Magne Ingebrigtsen * net/eww.el (eww-set-character-encoding): Use `read-coding-system'. + (eww-process-text-input): Inhibit read only so that input fields + don't get shortened (bug#19085). 2014-11-24 Leo Liu diff --git a/lisp/net/eww.el b/lisp/net/eww.el index a607e444fa3..97939cb611a 100644 --- a/lisp/net/eww.el +++ b/lisp/net/eww.el @@ -973,6 +973,7 @@ See URL `https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input'.") (defun eww-process-text-input (beg end length) (let* ((form (get-text-property (min (1+ end) (point-max)) 'eww-form)) + (inhibit-read-only t) (properties (text-properties-at end)) (type (plist-get form :type))) (when (and form -- 2.39.5