diff options
| author | Jay Belanger | 2008-04-01 02:33:11 +0000 |
|---|---|---|
| committer | Jay Belanger | 2008-04-01 02:33:11 +0000 |
| commit | e20eff6a218f179c40b417a327352fb65a9eae91 (patch) | |
| tree | ca38905ea728e1f177d9f0913de50b1405e839e7 | |
| parent | e835d95623c3c38a19f70068149819c592cd5df4 (diff) | |
| download | emacs-e20eff6a218f179c40b417a327352fb65a9eae91.tar.gz emacs-e20eff6a218f179c40b417a327352fb65a9eae91.zip | |
(calc-init-extensions): Remove keybinding assignments for `calc-yank'.
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/calc/calc-ext.el | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e0650081f20..a4e95eff1c7 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2008-04-01 Jay Belanger <jay.p.belanger@gmail.com> | ||
| 2 | |||
| 3 | * calc/calc.el: Autoload `calc-yank'. | ||
| 4 | (calc-mode-map): Add keybindings for `calc-yank'. | ||
| 5 | * calc/calc-ext.el (calc-init-extensions): Remove keybinding | ||
| 6 | assignments for `calc-yank'. | ||
| 7 | |||
| 1 | 2008-03-31 Martin Rudalics <rudalics@gmx.at> | 8 | 2008-03-31 Martin Rudalics <rudalics@gmx.at> |
| 2 | 9 | ||
| 3 | * emacs-lisp/find-func.el (find-function-search-for-symbol): | 10 | * emacs-lisp/find-func.el (find-function-search-for-symbol): |
diff --git a/lisp/calc/calc-ext.el b/lisp/calc/calc-ext.el index 8c52305a46b..e836bc3544f 100644 --- a/lisp/calc/calc-ext.el +++ b/lisp/calc/calc-ext.el | |||
| @@ -91,8 +91,6 @@ | |||
| 91 | (define-key calc-mode-map "\M-k" 'calc-copy-as-kill) | 91 | (define-key calc-mode-map "\M-k" 'calc-copy-as-kill) |
| 92 | (define-key calc-mode-map "\C-w" 'calc-kill-region) | 92 | (define-key calc-mode-map "\C-w" 'calc-kill-region) |
| 93 | (define-key calc-mode-map "\M-w" 'calc-copy-region-as-kill) | 93 | (define-key calc-mode-map "\M-w" 'calc-copy-region-as-kill) |
| 94 | (define-key calc-mode-map "\C-y" 'calc-yank) | ||
| 95 | (define-key calc-mode-map [mouse-2] 'calc-yank) | ||
| 96 | (define-key calc-mode-map "\C-_" 'calc-undo) | 94 | (define-key calc-mode-map "\C-_" 'calc-undo) |
| 97 | (define-key calc-mode-map "\C-xu" 'calc-undo) | 95 | (define-key calc-mode-map "\C-xu" 'calc-undo) |
| 98 | (define-key calc-mode-map "\M-\C-m" 'calc-last-args) | 96 | (define-key calc-mode-map "\M-\C-m" 'calc-last-args) |