calc: Fix backspace and "x".

This commit is contained in:
Pierre Neidhardt 2020-02-19 11:39:24 +01:00
parent e6a4ba695e
commit d26f7acbd9
1 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@
(kbd "M-m t") 'calc-total-algebraic-mode
(kbd "<delete>") 'calc-pop
(kbd "<mouse-2>") 'calc-yank
"x" 'calc-pop ; was "C-d". TODO: Conflicts with calc-execute-extended-command.
(kbd "<backspace>") 'calc-pop ; was "C-d".
"d" 'calc-kill ; was "C-k"
"u" 'calc-undo ; was "U"
"X" 'calc-call-last-kbd-macro ; "@" is already used.
@ -136,7 +136,7 @@
"n" 'calc-change-sign
"o" 'calc-realign
"w" 'calc-why
"x" 'calc-execute-extended-command ; TODO: Conflicts with calc-pop.
"x" 'calc-execute-extended-command
"|" 'calc-concat
"{" 'calc-scroll-down ; TODO: Not necessary?
"}" 'calc-scroll-up ; TODO: Not necessary?