aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Belanger2004-11-30 17:25:40 +0000
committerJay Belanger2004-11-30 17:25:40 +0000
commita2e360d6fadfe9d41a65988d426ff8bd002f8771 (patch)
tree2e6af386dc090517b8d1ee78cd42d5bee832b672
parent4b02a2527542980884ea8cb5e732ac0af10a2c6f (diff)
downloademacs-a2e360d6fadfe9d41a65988d426ff8bd002f8771.tar.gz
emacs-a2e360d6fadfe9d41a65988d426ff8bd002f8771.zip
Add a provide statement.
(calc-Need-calc-stuff): Remove it.
-rw-r--r--lisp/calc/calc-stuff.el7
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/calc/calc-stuff.el b/lisp/calc/calc-stuff.el
index 431e3eca19f..8d2180c9c47 100644
--- a/lisp/calc/calc-stuff.el
+++ b/lisp/calc/calc-stuff.el
@@ -27,13 +27,10 @@
27;;; Code: 27;;; Code:
28 28
29;; This file is autoloaded from calc-ext.el. 29;; This file is autoloaded from calc-ext.el.
30(require 'calc-ext)
31 30
31(require 'calc-ext)
32(require 'calc-macs) 32(require 'calc-macs)
33 33
34(defun calc-Need-calc-stuff () nil)
35
36
37(defun calc-num-prefix (n) 34(defun calc-num-prefix (n)
38 "Use the number at the top of stack as the numeric prefix for the next command. 35 "Use the number at the top of stack as the numeric prefix for the next command.
39With a prefix, push that prefix as a number onto the stack." 36With a prefix, push that prefix as a number onto the stack."
@@ -301,5 +298,7 @@ With a prefix, push that prefix as a number onto the stack."
301 (nth 2 expr))) 298 (nth 2 expr)))
302 (t (cons (car expr) (mapcar 'math-map-over-constants-rec (cdr expr)))))) 299 (t (cons (car expr) (mapcar 'math-map-over-constants-rec (cdr expr))))))
303 300
301(provide 'calc-stuff)
302
304;;; arch-tag: 789332ef-a178-49d3-8fb7-5d7ed7e21f56 303;;; arch-tag: 789332ef-a178-49d3-8fb7-5d7ed7e21f56
305;;; calc-stuff.el ends here 304;;; calc-stuff.el ends here