diff options
author | Jay Belanger <jay.p.belanger@gmail.com> | 2004-11-30 17:01:18 +0000 |
---|---|---|
committer | Jay Belanger <jay.p.belanger@gmail.com> | 2004-11-30 17:01:18 +0000 |
commit | 5e30155bca9aae7c31a0d44f9e83ef36fead16cd (patch) | |
tree | d3082bf240e3e19197ac3d1f56d1b71d90749f1b /lisp/calc | |
parent | 41cf648ddca265063bb26eeb764216ec10cea76a (diff) | |
download | emacs-5e30155bca9aae7c31a0d44f9e83ef36fead16cd.tar.gz emacs-5e30155bca9aae7c31a0d44f9e83ef36fead16cd.tar.bz2 emacs-5e30155bca9aae7c31a0d44f9e83ef36fead16cd.zip |
Add a provide statement.
(calc-Need-calc-arith): Remove it.
Diffstat (limited to 'lisp/calc')
-rw-r--r-- | lisp/calc/calc-arith.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/calc/calc-arith.el b/lisp/calc/calc-arith.el index df9936a670b..a5c52324049 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 |