Mercurial > emacs
changeset 58613:3eb7a394510d
(calc-do-handle-whys, calc-last-args-stub, calc-missing-key)
(calc-shift-Y-prefix-help, math-concat, math-trunc, math-floor)
(calcFunc-inv, math-mod, math-pow): Replace calc-extensions by
appropriate require.
(calc-power): Replace calc-extensions-loaded by appropriate featurep.
author | Jay Belanger <jay.p.belanger@gmail.com> |
---|---|
date | Mon, 29 Nov 2004 05:57:46 +0000 |
parents | d48ee50961f3 |
children | eba1cd703531 |
files | lisp/calc/calc-misc.el |
diffstat | 1 files changed, 15 insertions(+), 15 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/calc/calc-misc.el Mon Nov 29 05:56:56 2004 +0000 +++ b/lisp/calc/calc-misc.el Mon Nov 29 05:57:46 2004 +0000 @@ -245,7 +245,7 @@ (and (eq (car (car calc-why)) '*) calc-auto-why))) (progn - (calc-extensions) + (require 'calc-ext) (calc-explain-why (car calc-why) (if (eq calc-auto-why t) (cdr calc-why) @@ -331,14 +331,14 @@ (defun calc-last-args-stub (arg) (interactive "p") - (calc-extensions) + (require 'calc-ext) (calc-last-args arg)) (defun calc-power (arg) (interactive "P") (calc-slow-wrapper - (if (and calc-extensions-loaded + (if (and (featurep 'calc-ext) (calc-is-inverse)) (calc-binary-op "root" 'calcFunc-nroot arg nil nil) (calc-binary-op "^" 'calcFunc-pow arg nil nil '^)))) @@ -420,7 +420,7 @@ When this key is used, calc-ext (the Calculator extensions module) will be loaded and the keystroke automatically re-typed." (interactive "P") - (calc-extensions) + (require 'calc-ext) (if (keymapp (key-binding (char-to-string last-command-char))) (message "%s%c-" (calc-num-prefix-name n) last-command-char)) (calc-unread-command) @@ -428,7 +428,7 @@ (defun calc-shift-Y-prefix-help () (interactive) - (calc-extensions) + (require 'calc-ext) (calc-do-prefix-help calc-Y-help-msgs "other" ?Y)) @@ -467,7 +467,7 @@ (defun math-concat (v1 v2) (if (stringp v1) (concat v1 v2) - (calc-extensions) + (require 'calc-ext) (if (and (or (math-objvecp v1) (math-known-scalarp v1)) (or (math-objvecp v2) (math-known-scalarp v2))) (append (if (and (math-vectorp v1) @@ -601,14 +601,14 @@ (defun math-trunc (a &optional math-trunc-prec) (cond (math-trunc-prec - (calc-extensions) + (require 'calc-ext) (math-trunc-special a math-trunc-prec)) ((Math-integerp a) a) ((Math-looks-negp a) (math-neg (math-trunc (math-neg a)))) ((eq (car a) 'float) (math-scale-int (nth 1 a) (nth 2 a))) - (t (calc-extensions) + (t (require 'calc-ext) (math-trunc-fancy a)))) (defalias 'calcFunc-trunc 'math-trunc) @@ -619,7 +619,7 @@ (defun math-floor (a &optional math-floor-prec) ; [Public] (cond (math-floor-prec - (calc-extensions) + (require 'calc-ext) (math-floor-special a math-floor-prec)) ((Math-integerp a) a) ((Math-messy-integerp a) (math-trunc a)) @@ -627,7 +627,7 @@ (if (Math-negp a) (math-add (math-trunc a) -1) (math-trunc a))) - (t (calc-extensions) + (t (require 'calc-ext) (math-floor-fancy a)))) (defalias 'calcFunc-floor 'math-floor) @@ -643,7 +643,7 @@ (defun calcFunc-inv (m) (if (Math-vectorp m) (progn - (calc-extensions) + (require 'calc-ext) (if (math-square-matrixp m) (or (math-with-extra-prec 2 (math-matrix-inv-raw m)) (math-reject-arg m "*Singular matrix")) @@ -673,7 +673,7 @@ (math-imod a b)) ((and (Math-anglep a) (Math-anglep b)) (math-sub a (math-mul (math-floor (math-div a b)) b))) - (t (calc-extensions) + (t (require 'calc-ext) (math-mod-fancy a b)))) @@ -686,7 +686,7 @@ ((Math-zerop a) (if (and (Math-scalarp b) (Math-posp b)) (if (math-floatp b) (math-float a) a) - (calc-extensions) + (require 'calc-ext) (math-pow-of-zero a b))) ((or (eq a 1) (eq b 1)) a) ((or (equal a '(float 1 0)) (equal b '(float 1 0))) a) @@ -694,7 +694,7 @@ (if (Math-scalarp a) (if (or (math-floatp a) (math-floatp b)) '(float 1 0) 1) - (calc-extensions) + (require 'calc-ext) (math-pow-zero a b))) ((and (Math-integerp b) (or (Math-numberp a) (Math-vectorp a))) (if (and (equal a '(float 1 1)) (integerp b)) @@ -702,7 +702,7 @@ (math-with-extra-prec 2 (math-ipow a b)))) (t - (calc-extensions) + (require 'calc-ext) (math-pow-fancy a b)))) (defun math-ipow (a n) ; [O O I] [Public]