diff options
author | Jay Belanger <jay.p.belanger@gmail.com> | 2004-11-30 17:17:35 +0000 |
---|---|---|
committer | Jay Belanger <jay.p.belanger@gmail.com> | 2004-11-30 17:17:35 +0000 |
commit | 877dc4f5ff0896ca0a48664ec6dd0c1acd244612 (patch) | |
tree | 88dcfa1004465efc1a6eeb4d499172e7f99a1d87 /lisp/calc/calc-misc.el | |
parent | 95995a85a2c96161f71342e23bc2fe24d7603466 (diff) | |
download | emacs-877dc4f5ff0896ca0a48664ec6dd0c1acd244612.tar.gz |
Add a provide statement.
(calc-Need-calc-misc): Remove it.
Diffstat (limited to 'lisp/calc/calc-misc.el')
-rw-r--r-- | lisp/calc/calc-misc.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/calc/calc-misc.el b/lisp/calc/calc-misc.el index a6f611052e9..8040d28d083 100644 --- a/lisp/calc/calc-misc.el +++ b/lisp/calc/calc-misc.el @@ -27,13 +27,10 @@ ;;; Code: ;; This file is autoloaded from calc.el. -(require 'calc) +(require 'calc) (require 'calc-macs) -(defun calc-Need-calc-misc () nil) - - (defun calc-dispatch-help (arg) "M-# is a prefix key; follow it with one of these letters: @@ -760,5 +757,7 @@ doing 'M-x toggle-debug-on-error', then reproducing the bug. " ))) (defalias 'calc-report-bug 'report-calc-bug) +(provide 'calc-misc) + ;;; arch-tag: 7984d9d0-62e5-41dc-afb8-e904b975f250 ;;; calc-misc.el ends here |