diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-06-22 18:57:55 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-06-22 18:57:55 +0000 |
commit | 57c038534a6605784ce291ab1f2ed5d01ddf0536 (patch) | |
tree | dac8b1d629316dec5b438190a42f9fc7d1f77cde /lisp/ielm.el | |
parent | 18fb880632a5cbc4e62911fde62918b165c5fd0e (diff) | |
download | emacs-57c038534a6605784ce291ab1f2ed5d01ddf0536.tar.gz |
Add provide call.
Diffstat (limited to 'lisp/ielm.el')
-rw-r--r-- | lisp/ielm.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ielm.el b/lisp/ielm.el index 3af4d9df3a3..1488f2925f6 100644 --- a/lisp/ielm.el +++ b/lisp/ielm.el @@ -103,7 +103,7 @@ This variable is buffer-local.") (defvar ielm-header (concat "*** Welcome to IELM version " - (substring "$Revision: 1.12 $" 11 -2) + (substring "$Revision: 1.13 $" 11 -2) " *** Type (describe-mode) for help.\n" "IELM has ABSOLUTELY NO WARRANTY; type (describe-no-warranty) for details.\n") "Message to display when IELM is started.") @@ -490,4 +490,6 @@ Switches to the buffer `*ielm*', or creates it if it does not exist." (inferior-emacs-lisp-mode))) (pop-to-buffer "*ielm*")) +(provide 'ielm) + ;;; ielm.el ends here |