diff options
| author | Andreas Schwab | 2003-01-12 20:11:44 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2003-01-12 20:11:44 +0000 |
| commit | 27cfbf4b5590b597f21c0a7a02dcbcb1059d4876 (patch) | |
| tree | 9579f0001deaeb1eb1fe7b72874d7ef64200b7b2 | |
| parent | 441174202f21deff8366a8060b9e4eed4e7c29aa (diff) | |
| download | emacs-27cfbf4b5590b597f21c0a7a02dcbcb1059d4876.tar.gz emacs-27cfbf4b5590b597f21c0a7a02dcbcb1059d4876.zip | |
(inferior-emacs-lisp-mode): Bind comint-dynamic-complete-functions locally.
| -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 5e8be90d797..ad8bb547cbb 100644 --- a/lisp/ielm.el +++ b/lisp/ielm.el | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;;; ielm.el --- interaction mode for Emacs Lisp | 1 | ;;; ielm.el --- interaction mode for Emacs Lisp |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1994, 2002 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1994, 2002, 2003 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: David Smith <maa036@lancaster.ac.uk> | 5 | ;; Author: David Smith <maa036@lancaster.ac.uk> |
| 6 | ;; Maintainer: FSF | 6 | ;; Maintainer: FSF |
| @@ -462,6 +462,7 @@ Customised bindings may be defined in `ielm-map', which currently contains: | |||
| 462 | (setq paragraph-start comint-prompt-regexp) | 462 | (setq paragraph-start comint-prompt-regexp) |
| 463 | (setq comint-input-sender 'ielm-input-sender) | 463 | (setq comint-input-sender 'ielm-input-sender) |
| 464 | (setq comint-process-echoes nil) | 464 | (setq comint-process-echoes nil) |
| 465 | (make-local-variable 'comint-dynamic-complete-functions) | ||
| 465 | (setq comint-dynamic-complete-functions | 466 | (setq comint-dynamic-complete-functions |
| 466 | '(ielm-tab comint-replace-by-expanded-history ielm-complete-filename ielm-complete-symbol)) | 467 | '(ielm-tab comint-replace-by-expanded-history ielm-complete-filename ielm-complete-symbol)) |
| 467 | (setq comint-get-old-input 'ielm-get-old-input) | 468 | (setq comint-get-old-input 'ielm-get-old-input) |