summaryrefslogtreecommitdiff
path: root/lisp/calc/calc-arith.el
diff options
context:
space:
mode:
authorJay Belanger <jay.p.belanger@gmail.com>2004-11-30 17:01:18 +0000
committerJay Belanger <jay.p.belanger@gmail.com>2004-11-30 17:01:18 +0000
commit5e30155bca9aae7c31a0d44f9e83ef36fead16cd (patch)
treed3082bf240e3e19197ac3d1f56d1b71d90749f1b /lisp/calc/calc-arith.el
parent41cf648ddca265063bb26eeb764216ec10cea76a (diff)
Add a provide statement.
(calc-Need-calc-arith): Remove it.
Diffstat (limited to 'lisp/calc/calc-arith.el')
-rw-r--r--lisp/calc/calc-arith.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/calc/calc-arith.el b/lisp/calc/calc-arith.el
index df9936a670..a5c5232404 100644
--- a/lisp/calc/calc-arith.el
+++ b/lisp/calc/calc-arith.el
@@ -27,12 +27,10 @@
;;; Code:
;; This file is autoloaded from calc-ext.el.
-(require 'calc-ext)
+(require 'calc-ext)
(require 'calc-macs)
-(defun calc-Need-calc-arith () nil)
-
;;; The following lists are not exhaustive.
(defvar math-scalar-functions '(calcFunc-det
calcFunc-cnorm calcFunc-rnorm
@@ -2821,5 +2819,7 @@
(math-commutative-collect (nth 2 b) (not neg)))
(setq math-com-bterms (cons (if neg (math-neg b) b) math-com-bterms)))))
+(provide 'calc-arith)
+
;;; arch-tag: 6c396b5b-14c6-40ed-bb2a-7cc2e8111465
;;; calc-arith.el ends here