diff options
author | Jay Belanger <jay.p.belanger@gmail.com> | 2005-05-28 04:37:43 +0000 |
---|---|---|
committer | Jay Belanger <jay.p.belanger@gmail.com> | 2005-05-28 04:37:43 +0000 |
commit | 430c8528faee2ca180060abea4132abded8c2150 (patch) | |
tree | 2dcaad47e2c7b6c6281a11e4f5b8df052c4bfa06 /lisp/calc/calc-ext.el | |
parent | 9ca6c34d5e3400ee21f2b6a87ad511ba9270040d (diff) | |
download | emacs-430c8528faee2ca180060abea4132abded8c2150.tar.gz emacs-430c8528faee2ca180060abea4132abded8c2150.tar.bz2 emacs-430c8528faee2ca180060abea4132abded8c2150.zip |
(calc-help-map, calc-alg-map, calc-alg-esc-map): Declare them.
Diffstat (limited to 'lisp/calc/calc-ext.el')
-rw-r--r-- | lisp/calc/calc-ext.el | 6 |
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 @@ (defvar math-comp-sel-cpos nil) (defvar math-compose-hash-args nil) +(defvar calc-alg-map) +(defvar calc-alg-esc-map) + ;;; The following was made a function so that it could be byte-compiled. (defun calc-init-extensions () @@ -1192,8 +1195,9 @@ calc-kill calc-kill-region calc-yank)))) (math-normalize val))))) +(defvar calc-help-map nil) -(if (boundp 'calc-help-map) +(if calc-help-map nil (setq calc-help-map (make-keymap)) (define-key calc-help-map "b" 'calc-describe-bindings) |