summaryrefslogtreecommitdiff
path: root/lisp/calc
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2021-12-08 17:48:13 +0100
committerStefan Kangas <stefan@marxist.se>2021-12-08 17:48:25 +0100
commit5922c972cd1ab7b52f10552a94bbbbe488a58ae0 (patch)
treef73c6fc428f4d1355a619db40e58f7802f96ac90 /lisp/calc
parent1ea5b821452143562edb46dd8afa7696a801e153 (diff)
downloademacs-5922c972cd1ab7b52f10552a94bbbbe488a58ae0.tar.gz
; * lisp/calc/calc-ext.el: Fix warnings in my last commit.
Diffstat (limited to 'lisp/calc')
-rw-r--r--lisp/calc/calc-ext.el32
1 files changed, 16 insertions, 16 deletions
diff --git a/lisp/calc/calc-ext.el b/lisp/calc/calc-ext.el
index 83afdb7718d..93ba8c4b6bb 100644
--- a/lisp/calc/calc-ext.el
+++ b/lisp/calc/calc-ext.el
@@ -1267,22 +1267,22 @@ calc-kill calc-kill-region calc-yank))))
(defvar-keymap calc-help-map
- "b" #'calc-describe-bindings
- "c" #'calc-describe-key-briefly
- "f" #'calc-describe-function
- "h" #'calc-full-help
- "i" #'calc-info
- "k" #'calc-describe-key
- "n" #'calc-view-news
- "s" #'calc-info-summary
- "t" #'calc-tutorial
- "v" #'calc-describe-variable
- "C-c" #'calc-describe-copying
- "C-d" #'calc-describe-distribution
- "C-n" #'calc-view-news
- "C-w" #'calc-describe-no-warranty
- "?" #'calc-help-for-help
- "C-h" #'calc-help-for-help)
+ "b" 'calc-describe-bindings
+ "c" 'calc-describe-key-briefly
+ "f" 'calc-describe-function
+ "h" 'calc-full-help
+ "i" 'calc-info
+ "k" 'calc-describe-key
+ "n" 'calc-view-news
+ "s" 'calc-info-summary
+ "t" 'calc-tutorial
+ "v" 'calc-describe-variable
+ "C-c" 'calc-describe-copying
+ "C-d" 'calc-describe-distribution
+ "C-n" 'calc-view-news
+ "C-w" 'calc-describe-no-warranty
+ "?" 'calc-help-for-help
+ "C-h" 'calc-help-for-help)
(defvar calc-prefix-help-retry nil)
(defvar calc-prefix-help-phase 0)