aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/cus-theme.el1
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 438907164b8..724e47000d1 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -5,6 +5,9 @@
5 5
6 * cus-edit.el (custom-mode-map): Remove mouse-1 binding. 6 * cus-edit.el (custom-mode-map): Remove mouse-1 binding.
7 7
8 * cus-theme.el (custom-new-theme-mode-map): Remove mouse-1
9 binding.
10
8 * files.el (hack-local-variables-confirm): Allow scrolling if the 11 * files.el (hack-local-variables-confirm): Allow scrolling if the
9 file variable list is too long. Kill temp buffer after use. 12 file variable list is too long. Kill temp buffer after use.
10 13
diff --git a/lisp/cus-theme.el b/lisp/cus-theme.el
index 3a89c6a664e..53f530505ae 100644
--- a/lisp/cus-theme.el
+++ b/lisp/cus-theme.el
@@ -38,7 +38,6 @@
38 (suppress-keymap map) 38 (suppress-keymap map)
39 (define-key map "n" 'widget-forward) 39 (define-key map "n" 'widget-forward)
40 (define-key map "p" 'widget-backward) 40 (define-key map "p" 'widget-backward)
41 (define-key map [mouse-1] 'widget-move-and-invoke)
42 map) 41 map)
43 "Keymap for `custom-new-theme-mode'.") 42 "Keymap for `custom-new-theme-mode'.")
44 43