diff options
author | Jay Belanger <jay.p.belanger@gmail.com> | 2004-11-30 17:16:02 +0000 |
---|---|---|
committer | Jay Belanger <jay.p.belanger@gmail.com> | 2004-11-30 17:16:02 +0000 |
commit | 0e5b14555cf8c68020d8dbbe7888257a0c53c680 (patch) | |
tree | d2385d1d1cd6650ec87bbccfcbba36f6e39880e4 /lisp/calc | |
parent | 4b37638f7d40b2430e9a7c9df3da1b0f0e2bc939 (diff) | |
download | emacs-0e5b14555cf8c68020d8dbbe7888257a0c53c680.tar.gz emacs-0e5b14555cf8c68020d8dbbe7888257a0c53c680.tar.bz2 emacs-0e5b14555cf8c68020d8dbbe7888257a0c53c680.zip |
Add a provide statement.
(calc-Need-calc-map): Remove it.
Diffstat (limited to 'lisp/calc')
-rw-r--r-- | lisp/calc/calc-map.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/calc/calc-map.el b/lisp/calc/calc-map.el index 15a297e1efa..726a500c10a 100644 --- a/lisp/calc/calc-map.el +++ b/lisp/calc/calc-map.el @@ -27,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-map () nil) - - (defun calc-apply (&optional oper) (interactive) (calc-wrapper @@ -1272,5 +1269,7 @@ (setq mat (cons (cons 'vec row) mat))) (cons 'vec (nreverse mat)))) +(provide 'calc-map) + ;;; arch-tag: 980eac49-00e0-4870-b72a-e726b74c7990 ;;; calc-map.el ends here |