From: Stefan Kangas Date: Wed, 8 Dec 2021 16:48:13 +0000 (+0100) Subject: ; * lisp/calc/calc-ext.el: Fix warnings in my last commit. X-Git-Tag: emacs-29.0.90~3608^2~7 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5922c972cd1ab7b52f10552a94bbbbe488a58ae0;p=emacs.git ; * lisp/calc/calc-ext.el: Fix warnings in my last commit. --- 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)