diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2012-04-23 13:57:06 +0200 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2012-04-23 13:57:06 +0200 |
commit | 2df41f9c6f22d4e001082df4301c73dccfd01ef0 (patch) | |
tree | 06e16d537fb6ab509bf5a77844bd7ecebbb48d02 | |
parent | da00640ab78cc69f9321d7bc6062c3119493f6a7 (diff) |
* net/xesam.el (xesam-mode-map): Use let-bound map in
initialization. (Bug#11292)
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/net/xesam.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5ead85734a..0924541642 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 f47eeda8d9..b901c04186 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" |