comparison lisp/ielm.el @ 18387:c9700d281f81

Comment change.
author Richard M. Stallman <rms@gnu.org>
date Sun, 22 Jun 1997 19:52:10 +0000
parents 11218164bc54
children 16de434b8026
comparison
equal deleted inserted replaced
18386:b64a99d75571 18387:c9700d281f81
33 ;; To install: copy this file to a directory in your load-path, and 33 ;; To install: copy this file to a directory in your load-path, and
34 ;; add the following line to your .emacs file: 34 ;; add the following line to your .emacs file:
35 ;; 35 ;;
36 ;; (autoload 'ielm "ielm" "Start an inferior Emacs Lisp session" t) 36 ;; (autoload 'ielm "ielm" "Start an inferior Emacs Lisp session" t)
37 ;; 37 ;;
38 ;; For completion to work, the comint.el from FSF Emacs 19.23 is 38 ;; For completion to work, the comint.el from Emacs 19.23 is
39 ;; required. If you do not have it, or if you are running Lemacs, 39 ;; required. If you do not have it, or if you are running Lemacs,
40 ;; also add the following code to your .emacs: 40 ;; also add the following code to your .emacs:
41 ;; 41 ;;
42 ;; (setq ielm-mode-hook 42 ;; (setq ielm-mode-hook
43 ;; '(lambda nil 43 ;; '(lambda nil
101 This variable is buffer-local.") 101 This variable is buffer-local.")
102 102
103 (defvar ielm-header 103 (defvar ielm-header
104 (concat 104 (concat
105 "*** Welcome to IELM version " 105 "*** Welcome to IELM version "
106 (substring "$Revision: 1.13 $" 11 -2) 106 (substring "$Revision: 1.14 $" 11 -2)
107 " *** Type (describe-mode) for help.\n" 107 " *** Type (describe-mode) for help.\n"
108 "IELM has ABSOLUTELY NO WARRANTY; type (describe-no-warranty) for details.\n") 108 "IELM has ABSOLUTELY NO WARRANTY; type (describe-no-warranty) for details.\n")
109 "Message to display when IELM is started.") 109 "Message to display when IELM is started.")
110 110
111 (defvar ielm-map nil) 111 (defvar ielm-map nil)