summaryrefslogtreecommitdiff
path: root/lisp/calc/calc-stat.el
diff options
context:
space:
mode:
authorJay Belanger <jay.p.belanger@gmail.com>2004-11-30 17:24:18 +0000
committerJay Belanger <jay.p.belanger@gmail.com>2004-11-30 17:24:18 +0000
commit01a2939cad9500cca7ef7675dad97d74d39c3921 (patch)
tree4383876c0487eb1704d50f56c6109b9654f3fe18 /lisp/calc/calc-stat.el
parentda0ae499b8cdae6a314076b2ee5e2c7796385e5e (diff)
Add a provide statement.
(calc-Need-calc-stat): Remove it.
Diffstat (limited to 'lisp/calc/calc-stat.el')
-rw-r--r--lisp/calc/calc-stat.el10
1 files changed, 4 insertions, 6 deletions
diff --git a/lisp/calc/calc-stat.el b/lisp/calc/calc-stat.el
index 42d58776a4..9fdd634027 100644
--- a/lisp/calc/calc-stat.el
+++ b/lisp/calc/calc-stat.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-stat () nil)
-
-
;;; Statistical operations on vectors.
(defun calc-vector-count (arg)
@@ -586,5 +582,7 @@
(math-div (math-mul suminvsqrwts (1- len)) len))
(if pop len (1- len)))))))))
+(provide 'calc-stat)
+
;;; arch-tag: 423858e9-8513-489c-9f35-710cd9d9c307
;;; calc-stat.el ends here