summaryrefslogtreecommitdiff
path: root/lisp/calc/calc-math.el
diff options
context:
space:
mode:
authorJay Belanger <jay.p.belanger@gmail.com>2004-11-30 17:16:50 +0000
committerJay Belanger <jay.p.belanger@gmail.com>2004-11-30 17:16:50 +0000
commit95995a85a2c96161f71342e23bc2fe24d7603466 (patch)
tree8bae4fb9da4562d23b0fbc125c130ae6481b9140 /lisp/calc/calc-math.el
parent0e5b14555cf8c68020d8dbbe7888257a0c53c680 (diff)
downloademacs-95995a85a2c96161f71342e23bc2fe24d7603466.tar.gz
emacs-95995a85a2c96161f71342e23bc2fe24d7603466.tar.bz2
emacs-95995a85a2c96161f71342e23bc2fe24d7603466.zip
Add a provide statement.
(calc-Need-calc-math): Remove it.
Diffstat (limited to 'lisp/calc/calc-math.el')
-rw-r--r--lisp/calc/calc-math.el10
1 files changed, 4 insertions, 6 deletions
diff --git a/lisp/calc/calc-math.el b/lisp/calc/calc-math.el
index d02e2dffb7c..02c65ac22ea 100644
--- a/lisp/calc/calc-math.el
+++ b/lisp/calc/calc-math.el
@@ -3,8 +3,7 @@
;; Copyright (C) 1990, 1991, 1992, 1993, 2001 Free Software Foundation, Inc.
;; Author: David Gillespie <daveg@synaptics.com>
-;; Maintainers: D. Goel <deego@gnufans.org>
-;; Colin Walters <walters@debian.org>
+;; Maintainer: Jay Belanger <belanger@truman.edu>
;; This file is part of GNU Emacs.
@@ -28,13 +27,10 @@
;;; Code:
;; This file is autoloaded from calc-ext.el.
-(require 'calc-ext)
+(require 'calc-ext)
(require 'calc-macs)
-(defun calc-Need-calc-math () nil)
-
-
(defun calc-sqrt (arg)
(interactive "P")
(calc-slow-wrapper
@@ -1688,5 +1684,7 @@
(t (list 'calcFunc-deg a))))
(put 'calcFunc-deg 'math-expandable t)
+(provide 'calc-math)
+
;;; arch-tag: c7367e8e-d0b8-4f70-8577-2fb3f31dbb4c
;;; calc-math.el ends here