emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/ielm.el


From: Dave Love
Subject: [Emacs-diffs] Changes to emacs/lisp/ielm.el
Date: Sat, 06 Sep 2003 13:33:35 -0400

Index: emacs/lisp/ielm.el
diff -c emacs/lisp/ielm.el:1.35 emacs/lisp/ielm.el:1.36
*** emacs/lisp/ielm.el:1.35     Mon Sep  1 11:45:13 2003
--- emacs/lisp/ielm.el  Sat Sep  6 13:33:35 2003
***************
*** 30,58 ****
  ;; 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
- ;;      /address@hidden:pub/src/emacs-lisp/ielm.el.gz
- ;; or from the author: David M. Smith <address@hidden>
- 
  ;;; Code:
  
  (require 'comint)
--- 30,37 ----
***************
*** 95,100 ****
--- 74,80 ----
  
  (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)
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]