diff options
| author | Jay Belanger | 2004-11-30 17:28:25 +0000 |
|---|---|---|
| committer | Jay Belanger | 2004-11-30 17:28:25 +0000 |
| commit | 429dae43c51274d943155b93e4b53d5b005386b8 (patch) | |
| tree | fae9c962098eef7b654f4da115af760ddd01c74a | |
| parent | 7d02e8cd1f0bb2c776323ddf977acd1ab83df86a (diff) | |
| download | emacs-429dae43c51274d943155b93e4b53d5b005386b8.tar.gz emacs-429dae43c51274d943155b93e4b53d5b005386b8.zip | |
Add a provide statement.
(calc-Need-calc-vec): Remove it.
| -rw-r--r-- | lisp/calc/calc-vec.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/calc/calc-vec.el b/lisp/calc/calc-vec.el index 38b9a0bbbca..2ae327b36bf 100644 --- a/lisp/calc/calc-vec.el +++ b/lisp/calc/calc-vec.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-vec () nil) | ||
| 35 | |||
| 36 | |||
| 37 | (defun calc-display-strings (n) | 34 | (defun calc-display-strings (n) |
| 38 | (interactive "P") | 35 | (interactive "P") |
| 39 | (calc-wrapper | 36 | (calc-wrapper |
| @@ -1593,5 +1590,7 @@ | |||
| 1593 | (setq mat (nconc mat (list (math-read-vector))))) | 1590 | (setq mat (nconc mat (list (math-read-vector))))) |
| 1594 | mat) | 1591 | mat) |
| 1595 | 1592 | ||
| 1593 | (provide 'calc-vec) | ||
| 1594 | |||
| 1596 | ;;; arch-tag: 7902a7af-ec69-440a-8635-ebb4db263402 | 1595 | ;;; arch-tag: 7902a7af-ec69-440a-8635-ebb4db263402 |
| 1597 | ;;; calc-vec.el ends here | 1596 | ;;; calc-vec.el ends here |