Mercurial > emacs
diff lisp/calc/calc-poly.el @ 58667:88f98983accf
Add a provide statement.
(calc-Need-calc-poly): Remove it.
author | Jay Belanger <jay.p.belanger@gmail.com> |
---|---|
date | Tue, 30 Nov 2004 17:19:41 +0000 |
parents | c8e117d0c5ff |
children | a27ed02e5a65 f2ebccfa87d4 |
line wrap: on
line diff
--- a/lisp/calc/calc-poly.el Tue Nov 30 17:19:02 2004 +0000 +++ b/lisp/calc/calc-poly.el Tue Nov 30 17:19:41 2004 +0000 @@ -27,13 +27,10 @@ ;;; Code: ;; This file is autoloaded from calc-ext.el. + (require 'calc-ext) - (require 'calc-macs) -(defun calc-Need-calc-poly () nil) - - (defun calcFunc-pcont (expr &optional var) (cond ((Math-primp expr) (cond ((Math-zerop expr) 1) @@ -1173,5 +1170,7 @@ (defun calcFunc-expandpow (x n) (math-normalize (math-expand-power x n))) +(provide 'calc-poly) + ;;; arch-tag: d2566c51-2ccc-45f1-8c50-f3462c2953ff ;;; calc-poly.el ends here