aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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