diff options
Diffstat (limited to 'lisp')
| -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 5ead85734af..09245416423 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-04-23 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * net/xesam.el (xesam-mode-map): Use let-bound map in | ||
| 4 | initialization. (Bug#11292) | ||
| 5 | |||
| 1 | 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es> | 6 | 2012-04-23 Agustín Martín Domingo <agustin.martin@hispalinux.es> |
| 2 | 7 | ||
| 3 | Preserve ispell session localwords when switching back to | 8 | 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'." | |||
| 449 | 449 | ||
| 450 | (defvar xesam-mode-map | 450 | (defvar xesam-mode-map |
| 451 | (let ((map (copy-keymap special-mode-map))) | 451 | (let ((map (copy-keymap special-mode-map))) |
| 452 | (set-keymap-parent xesam-mode-map widget-keymap) | 452 | (set-keymap-parent map widget-keymap) |
| 453 | map)) | 453 | map)) |
| 454 | 454 | ||
| 455 | (define-derived-mode xesam-mode special-mode "Xesam" | 455 | (define-derived-mode xesam-mode special-mode "Xesam" |