]> git.eshelyaron.com Git - emacs.git/commitdiff
(ielm-mode-hook): Add :options.
authorDave Love <fx@gnu.org>
Sat, 6 Sep 2003 17:34:11 +0000 (17:34 +0000)
committerDave Love <fx@gnu.org>
Sat, 6 Sep 2003 17:34:11 +0000 (17:34 +0000)
lisp/ChangeLog
lisp/ielm.el

index df977ff98a2e01391d1dd9efaaf581647db57299..c8370dbb0f56ec72b34b6edff0653016e23d6ad6 100644 (file)
@@ -1,3 +1,11 @@
+2003-09-06  Dave Love  <fx@gnu.org>
+
+       * ielm.el (ielm-mode-hook): Add :options.
+
+       * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info-function):
+       New.
+       (eldoc-print-current-symbol-info): Use it.
+
 2003-09-04  Nick Roberts  <nick@nick.uklinux.net>
 
        * gdb-ui.el (gud-display1): Use gud-call to prevent extra prompt
index b03820616ab56db79d390ced45ec487ab0a40039..aa60d5de6c3d45a18d0bb0ebb7d4bcaf366f8cfe 100644 (file)
 ;; 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)