summaryrefslogtreecommitdiff
path: root/lisp/ielm.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-06-22 18:57:55 +0000
committerRichard M. Stallman <rms@gnu.org>1997-06-22 18:57:55 +0000
commit896546cd9ba8e82956662329b77becb0366a1e73 (patch)
treefb9f48d5363d164ad5c72a182dbe1e5a78322c6c /lisp/ielm.el
parent43c89a968ed6f1972a6ff075846622ade5bc7cf9 (diff)
downloademacs-896546cd9ba8e82956662329b77becb0366a1e73.tar.gz
Add provide call.
Diffstat (limited to 'lisp/ielm.el')
-rw-r--r--lisp/ielm.el4
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