diff options
| author | Štěpán Němec | 2011-01-20 19:04:56 -0600 |
|---|---|---|
| committer | Jay Belanger | 2011-01-20 19:04:56 -0600 |
| commit | a10c414934da18eccff3a5a688c9f42ba483002a (patch) | |
| tree | 4daba6fb2fa17eec76235070861f0123d83faa44 | |
| parent | 6e3165fb24673920b31d67a61ee8e8a2e0b25eec (diff) | |
| download | emacs-a10c414934da18eccff3a5a688c9f42ba483002a.tar.gz emacs-a10c414934da18eccff3a5a688c9f42ba483002a.zip | |
calc/calc-ext.el (calc-init-extensions): Map all `undo' keybindings to `calc-undo'.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/calc/calc-ext.el | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f2559c7c5ae..6da4500d266 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-01-21 Štěpán Němec <stepnem@gmail.com> (tiny change) | ||
| 2 | |||
| 3 | * calc/calc-ext.el (calc-init-extensions): Map all `undo' | ||
| 4 | keybindings to `calc-undo'. | ||
| 5 | |||
| 1 | 2011-01-20 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2011-01-20 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | Don't mess with *temp*. | 8 | Don't mess with *temp*. |
diff --git a/lisp/calc/calc-ext.el b/lisp/calc/calc-ext.el index 7042c407907..6fbccaad0b9 100644 --- a/lisp/calc/calc-ext.el +++ b/lisp/calc/calc-ext.el | |||
| @@ -136,8 +136,7 @@ | |||
| 136 | (define-key calc-mode-map "\C-w" 'calc-kill-region) | 136 | (define-key calc-mode-map "\C-w" 'calc-kill-region) |
| 137 | (define-key calc-mode-map "\M-w" 'calc-copy-region-as-kill) | 137 | (define-key calc-mode-map "\M-w" 'calc-copy-region-as-kill) |
| 138 | (define-key calc-mode-map "\M-\C-w" 'kill-ring-save) | 138 | (define-key calc-mode-map "\M-\C-w" 'kill-ring-save) |
| 139 | (define-key calc-mode-map "\C-_" 'calc-undo) | 139 | (define-key calc-mode-map [remap undo] 'calc-undo) |
| 140 | (define-key calc-mode-map "\C-xu" 'calc-undo) | ||
| 141 | (define-key calc-mode-map "\M-\C-m" 'calc-last-args) | 140 | (define-key calc-mode-map "\M-\C-m" 'calc-last-args) |
| 142 | 141 | ||
| 143 | (define-key calc-mode-map "a" nil) | 142 | (define-key calc-mode-map "a" nil) |