summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuc Teirlinck <teirllm@auburn.edu>2005-05-29 15:09:39 +0000
committerLuc Teirlinck <teirllm@auburn.edu>2005-05-29 15:09:39 +0000
commit9c5e65b24bd01b0a5dc281d46020e9d03d27a078 (patch)
treeb6855bd5462cf7fda8dc711b0054b2445814feec
parente89a81c02e4ae1d8b4472deeefb2e15f9bbcb3c2 (diff)
downloademacs-9c5e65b24bd01b0a5dc281d46020e9d03d27a078.tar.gz
(inferior-emacs-lisp-mode): Use delay-mode-hooks..
-rw-r--r--lisp/ielm.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/ielm.el b/lisp/ielm.el
index 757b31a47f4..5a91361f2d2 100644
--- a/lisp/ielm.el
+++ b/lisp/ielm.el
@@ -480,7 +480,8 @@ The behaviour of IELM may be customized with the following variables:
Customized bindings may be defined in `ielm-map', which currently contains:
\\{ielm-map}"
(interactive)
- (comint-mode)
+ (delay-mode-hooks
+ (comint-mode))
(setq comint-prompt-regexp (concat "^" (regexp-quote ielm-prompt)))
(set (make-local-variable 'paragraph-separate) "\\'")
(make-local-variable 'paragraph-start)