aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/calc/calc-ext.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/calc/calc-ext.el b/lisp/calc/calc-ext.el
index adbdf7a96e2..0b177b06dc4 100644
--- a/lisp/calc/calc-ext.el
+++ b/lisp/calc/calc-ext.el
@@ -43,6 +43,9 @@
43(defvar math-comp-sel-cpos nil) 43(defvar math-comp-sel-cpos nil)
44(defvar math-compose-hash-args nil) 44(defvar math-compose-hash-args nil)
45 45
46(defvar calc-alg-map)
47(defvar calc-alg-esc-map)
48
46;;; The following was made a function so that it could be byte-compiled. 49;;; The following was made a function so that it could be byte-compiled.
47(defun calc-init-extensions () 50(defun calc-init-extensions ()
48 51
@@ -1192,8 +1195,9 @@ calc-kill calc-kill-region calc-yank))))
1192 (math-normalize val))))) 1195 (math-normalize val)))))
1193 1196
1194 1197
1198(defvar calc-help-map nil)
1195 1199
1196(if (boundp 'calc-help-map) 1200(if calc-help-map
1197 nil 1201 nil
1198 (setq calc-help-map (make-keymap)) 1202 (setq calc-help-map (make-keymap))
1199 (define-key calc-help-map "b" 'calc-describe-bindings) 1203 (define-key calc-help-map "b" 'calc-describe-bindings)