aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog1
-rw-r--r--lisp/net/eww.el2
2 files changed, 2 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0f6f824471d..3a46dd40e59 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -6,6 +6,7 @@
6 functions to list browser histories. 6 functions to list browser histories.
7 (eww-form-text): Support text form with disabled 7 (eww-form-text): Support text form with disabled
8 and readonly attributes. 8 and readonly attributes.
9 (eww-checkbox-map): Fix wrong key bind to `eww-toggle-checkbox'.
9 10
102013-12-21 RĂ¼diger Sonderfeld <ruediger@c-plusplus.de> 112013-12-21 RĂ¼diger Sonderfeld <ruediger@c-plusplus.de>
11 12
diff --git a/lisp/net/eww.el b/lisp/net/eww.el
index 36a91f8f10b..15bb2c09a3a 100644
--- a/lisp/net/eww.el
+++ b/lisp/net/eww.el
@@ -565,7 +565,7 @@ appears in a <link> or <a> tag."
565 565
566(defvar eww-checkbox-map 566(defvar eww-checkbox-map
567 (let ((map (make-sparse-keymap))) 567 (let ((map (make-sparse-keymap)))
568 (define-key map [space] 'eww-toggle-checkbox) 568 (define-key map " " 'eww-toggle-checkbox)
569 (define-key map "\r" 'eww-toggle-checkbox) 569 (define-key map "\r" 'eww-toggle-checkbox)
570 (define-key map [(control c) (control c)] 'eww-submit) 570 (define-key map [(control c) (control c)] 'eww-submit)
571 map)) 571 map))