# HG changeset patch # User Andreas Schwab # Date 1042402304 0 # Node ID 7d0428387d83ec0aaf34e88010079900df470adb # Parent dac2fe844fc425eb8b040ede764b60510751067b (inferior-emacs-lisp-mode): Bind comint-dynamic-complete-functions locally. diff -r dac2fe844fc4 -r 7d0428387d83 lisp/ielm.el --- a/lisp/ielm.el Sun Jan 12 15:40:23 2003 +0000 +++ b/lisp/ielm.el Sun Jan 12 20:11:44 2003 +0000 @@ -1,6 +1,6 @@ ;;; ielm.el --- interaction mode for Emacs Lisp -;; Copyright (C) 1994, 2002 Free Software Foundation, Inc. +;; Copyright (C) 1994, 2002, 2003 Free Software Foundation, Inc. ;; Author: David Smith ;; Maintainer: FSF @@ -462,6 +462,7 @@ (setq paragraph-start comint-prompt-regexp) (setq comint-input-sender 'ielm-input-sender) (setq comint-process-echoes nil) + (make-local-variable 'comint-dynamic-complete-functions) (setq comint-dynamic-complete-functions '(ielm-tab comint-replace-by-expanded-history ielm-complete-filename ielm-complete-symbol)) (setq comint-get-old-input 'ielm-get-old-input)