aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Belanger2008-04-01 02:30:31 +0000
committerJay Belanger2008-04-01 02:30:31 +0000
commite835d95623c3c38a19f70068149819c592cd5df4 (patch)
treec11a639760497f9e37617e1e6239aa20d778c5e9
parent14a1fee117d26e6d3fbe36852e002d02e79f1369 (diff)
downloademacs-e835d95623c3c38a19f70068149819c592cd5df4.tar.gz
emacs-e835d95623c3c38a19f70068149819c592cd5df4.zip
Autoload `calc-yank'.
(calc-mode-map): Add keybindings for `calc-yank'.
-rw-r--r--lisp/calc/calc.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el
index ad514707018..1aa98cd6c5f 100644
--- a/lisp/calc/calc.el
+++ b/lisp/calc/calc.el
@@ -948,6 +948,8 @@ If nil, selections displayed but ignored.")
948 (define-key map "\C-m" 'calc-enter) 948 (define-key map "\C-m" 'calc-enter)
949 (define-key map "\M-\C-m" 'calc-last-args-stub) 949 (define-key map "\M-\C-m" 'calc-last-args-stub)
950 (define-key map "\C-j" 'calc-over) 950 (define-key map "\C-j" 'calc-over)
951 (define-key map "\C-y" 'calc-yank)
952 (define-key map [mouse-2] 'calc-yank)
951 953
952 (mapc (lambda (x) (define-key map (char-to-string x) 'undefined)) 954 (mapc (lambda (x) (define-key map (char-to-string x) 'undefined))
953 "lOW") 955 "lOW")
@@ -1092,7 +1094,9 @@ If nil, selections displayed but ignored.")
1092 calc-missing-key calc-mod calc-other-window calc-over calc-percent 1094 calc-missing-key calc-mod calc-other-window calc-over calc-percent
1093 calc-pop-above calc-power calc-roll-down calc-roll-up 1095 calc-pop-above calc-power calc-roll-down calc-roll-up
1094 calc-shift-Y-prefix-help calc-tutorial calcDigit-letter 1096 calc-shift-Y-prefix-help calc-tutorial calcDigit-letter
1095 report-calc-bug))) 1097 report-calc-bug)
1098
1099 ("calc-yank" calc-yank)))
1096 1100
1097 1101
1098;;;###autoload (define-key ctl-x-map "*" 'calc-dispatch) 1102;;;###autoload (define-key ctl-x-map "*" 'calc-dispatch)