summaryrefslogtreecommitdiff
path: root/lisp/ielm.el
diff options
context:
space:
mode:
authorDave Love <fx@gnu.org>2003-09-06 17:34:11 +0000
committerDave Love <fx@gnu.org>2003-09-06 17:34:11 +0000
commit10fea268edb45b40533e0801bdc316fb7375fb2a (patch)
tree880c461ff7e6b79d1621ef4dd6cd37234bd8056e /lisp/ielm.el
parenta3d819fcaac6cbb5b7e207dc234f864086c858ff (diff)
downloademacs-10fea268edb45b40533e0801bdc316fb7375fb2a.tar.gz
(ielm-mode-hook): Add :options.
Diffstat (limited to 'lisp/ielm.el')
-rw-r--r--lisp/ielm.el22
1 files changed, 1 insertions, 21 deletions
diff --git a/lisp/ielm.el b/lisp/ielm.el
index b03820616ab..aa60d5de6c3 100644
--- a/lisp/ielm.el
+++ b/lisp/ielm.el
@@ -30,29 +30,8 @@
;; Input is handled by the comint package, and output is passed
;; through the pretty-printer.
-;; To install: copy this file to a directory in your load-path, and
-;; add the following line to your .emacs file:
-;;
-;; (autoload 'ielm "ielm" "Start an inferior Emacs Lisp session" t)
-;;
-;; For completion to work, the comint.el from Emacs 19.23 is
-;; required. If you do not have it, or if you are running Lemacs,
-;; also add the following code to your .emacs:
-;;
-;; (setq ielm-mode-hook
-;; '(lambda nil
-;; (define-key ielm-map "\t"
-;; '(lambda nil (interactive) (or (ielm-tab)
-;; (lisp-complete-symbol))))))
-
;; To start: M-x ielm. Type C-h m in the *ielm* buffer for more info.
-;; The latest version is available by WWW from
-;; http://mathssun5.lancs.ac.uk:2080/~maa036/elisp/dir.html
-;; or by anonymous FTP from
-;; /anonymous@wingra.stat.wisc.edu:pub/src/emacs-lisp/ielm.el.gz
-;; or from the author: David M. Smith <maa036@lancaster.ac.uk>
-
;;; Code:
(require 'comint)
@@ -95,6 +74,7 @@ such as `edebug-defun' to work with such inputs."
(defcustom ielm-mode-hook nil
"*Hooks to be run when IELM (`inferior-emacs-lisp-mode') is started."
+ :options '(turn-on-eldoc-mode)
:type 'hook
:group 'ielm)