diff options
author | Luc Teirlinck <teirllm@auburn.edu> | 2006-02-05 03:42:36 +0000 |
---|---|---|
committer | Luc Teirlinck <teirllm@auburn.edu> | 2006-02-05 03:42:36 +0000 |
commit | 82bda03877ffa74c3b0e410cd2ae5a759fed61ad (patch) | |
tree | 349786b2766ae8774b85e6570b9a33965c4ee229 /lisp | |
parent | 632966a7327a77b834ebd1b6376b7a1c1d0b6126 (diff) | |
download | emacs-82bda03877ffa74c3b0e410cd2ae5a759fed61ad.tar.gz |
(widget-keymap): Fix corrupted value.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ldefs-boot.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ldefs-boot.el b/lisp/ldefs-boot.el index 8f1c2a2f844..79c03ae4d6c 100644 --- a/lisp/ldefs-boot.el +++ b/lisp/ldefs-boot.el @@ -29928,7 +29928,7 @@ Call `insert' with ARGS even if surrounding text is read only. (defalias (quote advertised-widget-backward) (quote widget-backward)) -(defvar widget-keymap (let ((map (make-sparse-keymap))) (define-key map " " (quote widget-forward)) (define-key map " " (quote widget-backward)) (define-key map [(shift tab)] (quote advertised-widget-backward)) (define-key map [backtab] (quote widget-backward)) (define-key map [down-mouse-2] (quote widget-button-click)) (define-key map "" (quote widget-button-press)) map) "\ +(defvar widget-keymap (let ((map (make-sparse-keymap))) (define-key map " " (quote widget-forward)) (define-key map " " (quote widget-backward)) (define-key map [(shift tab)] (quote advertised-widget-backward)) (define-key map [backtab] (quote widget-backward)) (define-key map [down-mouse-2] (quote widget-button-click)) (define-key map "
" (quote widget-button-press)) map) "\ Keymap containing useful binding for buffers containing widgets. Recommended as a parent keymap for modes using widgets.") |