From 5922c972cd1ab7b52f10552a94bbbbe488a58ae0 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Wed, 8 Dec 2021 17:48:13 +0100 Subject: [PATCH] ; * lisp/calc/calc-ext.el: Fix warnings in my last commit. --- lisp/calc/calc-ext.el | 32 ++++++++++++++++---------------- 1 file 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) -- 2.39.5