Mercurial > emacs
diff lisp/calc/calc-stuff.el @ 58674:0efdac1406ea
Add a provide statement.
(calc-Need-calc-stuff): Remove it.
author | Jay Belanger <jay.p.belanger@gmail.com> |
---|---|
date | Tue, 30 Nov 2004 17:25:40 +0000 |
parents | 87b2b810675b |
children | a27ed02e5a65 f2ebccfa87d4 |
line wrap: on
line diff
--- a/lisp/calc/calc-stuff.el Tue Nov 30 17:25:00 2004 +0000 +++ b/lisp/calc/calc-stuff.el Tue Nov 30 17:25:40 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-stuff () nil) - - (defun calc-num-prefix (n) "Use the number at the top of stack as the numeric prefix for the next command. With a prefix, push that prefix as a number onto the stack." @@ -301,5 +298,7 @@ (nth 2 expr))) (t (cons (car expr) (mapcar 'math-map-over-constants-rec (cdr expr)))))) +(provide 'calc-stuff) + ;;; arch-tag: 789332ef-a178-49d3-8fb7-5d7ed7e21f56 ;;; calc-stuff.el ends here