calc/calc-ext.el (calc-init-extensions): Map all undo' keybindings to calc-undo'.

This commit is contained in:
Štěpán Němec 2011-01-20 19:04:56 -06:00 committed by Jay Belanger
parent 6e3165fb24
commit a10c414934
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2011-01-21 Štěpán Němec <stepnem@gmail.com> (tiny change)
* calc/calc-ext.el (calc-init-extensions): Map all `undo'
keybindings to `calc-undo'.
2011-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
Don't mess with *temp*.

View file

@ -136,8 +136,7 @@
(define-key calc-mode-map "\C-w" 'calc-kill-region)
(define-key calc-mode-map "\M-w" 'calc-copy-region-as-kill)
(define-key calc-mode-map "\M-\C-w" 'kill-ring-save)
(define-key calc-mode-map "\C-_" 'calc-undo)
(define-key calc-mode-map "\C-xu" 'calc-undo)
(define-key calc-mode-map [remap undo] 'calc-undo)
(define-key calc-mode-map "\M-\C-m" 'calc-last-args)
(define-key calc-mode-map "a" nil)