aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2003-09-06 17:34:11 +0000
committerDave Love2003-09-06 17:34:11 +0000
commit10fea268edb45b40533e0801bdc316fb7375fb2a (patch)
tree880c461ff7e6b79d1621ef4dd6cd37234bd8056e
parenta3d819fcaac6cbb5b7e207dc234f864086c858ff (diff)
downloademacs-10fea268edb45b40533e0801bdc316fb7375fb2a.tar.gz
emacs-10fea268edb45b40533e0801bdc316fb7375fb2a.zip
(ielm-mode-hook): Add :options.
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/ielm.el22
2 files changed, 9 insertions, 21 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index df977ff98a2..c8370dbb0f5 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,11 @@
12003-09-06 Dave Love <fx@gnu.org>
2
3 * ielm.el (ielm-mode-hook): Add :options.
4
5 * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info-function):
6 New.
7 (eldoc-print-current-symbol-info): Use it.
8
12003-09-04 Nick Roberts <nick@nick.uklinux.net> 92003-09-04 Nick Roberts <nick@nick.uklinux.net>
2 10
3 * gdb-ui.el (gud-display1): Use gud-call to prevent extra prompt 11 * gdb-ui.el (gud-display1): Use gud-call to prevent extra prompt
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 @@
30;; Input is handled by the comint package, and output is passed 30;; Input is handled by the comint package, and output is passed
31;; through the pretty-printer. 31;; through the pretty-printer.
32 32
33;; To install: copy this file to a directory in your load-path, and
34;; add the following line to your .emacs file:
35;;
36;; (autoload 'ielm "ielm" "Start an inferior Emacs Lisp session" t)
37;;
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,
40;; also add the following code to your .emacs:
41;;
42;; (setq ielm-mode-hook
43;; '(lambda nil
44;; (define-key ielm-map "\t"
45;; '(lambda nil (interactive) (or (ielm-tab)
46;; (lisp-complete-symbol))))))
47
48;; To start: M-x ielm. Type C-h m in the *ielm* buffer for more info. 33;; To start: M-x ielm. Type C-h m in the *ielm* buffer for more info.
49 34
50;; The latest version is available by WWW from
51;; http://mathssun5.lancs.ac.uk:2080/~maa036/elisp/dir.html
52;; or by anonymous FTP from
53;; /anonymous@wingra.stat.wisc.edu:pub/src/emacs-lisp/ielm.el.gz
54;; or from the author: David M. Smith <maa036@lancaster.ac.uk>
55
56;;; Code: 35;;; Code:
57 36
58(require 'comint) 37(require 'comint)
@@ -95,6 +74,7 @@ such as `edebug-defun' to work with such inputs."
95 74
96(defcustom ielm-mode-hook nil 75(defcustom ielm-mode-hook nil
97 "*Hooks to be run when IELM (`inferior-emacs-lisp-mode') is started." 76 "*Hooks to be run when IELM (`inferior-emacs-lisp-mode') is started."
77 :options '(turn-on-eldoc-mode)
98 :type 'hook 78 :type 'hook
99 :group 'ielm) 79 :group 'ielm)
100 80