summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/net/xesam.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5ead85734af..09245416423 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2012-04-23 Michael Albinus <michael.albinus@gmx.de>
+
+ * net/xesam.el (xesam-mode-map): Use let-bound map in
+ initialization. (Bug#11292)
+
2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es>
Preserve ispell session localwords when switching back to
diff --git a/lisp/net/xesam.el b/lisp/net/xesam.el
index f47eeda8d97..b901c041863 100644
--- a/lisp/net/xesam.el
+++ b/lisp/net/xesam.el
@@ -449,7 +449,7 @@ If there is no registered search engine at all, the function returns `nil'."
(defvar xesam-mode-map
(let ((map (copy-keymap special-mode-map)))
- (set-keymap-parent xesam-mode-map widget-keymap)
+ (set-keymap-parent map widget-keymap)
map))
(define-derived-mode xesam-mode special-mode "Xesam"