diff options
author | Luc Teirlinck <teirllm@auburn.edu> | 2005-05-29 15:09:39 +0000 |
---|---|---|
committer | Luc Teirlinck <teirllm@auburn.edu> | 2005-05-29 15:09:39 +0000 |
commit | 9c5e65b24bd01b0a5dc281d46020e9d03d27a078 (patch) | |
tree | b6855bd5462cf7fda8dc711b0054b2445814feec | |
parent | e89a81c02e4ae1d8b4472deeefb2e15f9bbcb3c2 (diff) | |
download | emacs-9c5e65b24bd01b0a5dc281d46020e9d03d27a078.tar.gz |
(inferior-emacs-lisp-mode): Use delay-mode-hooks..
-rw-r--r-- | lisp/ielm.el | 3 |
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) |