From: Karl Heuer Date: Wed, 12 Mar 1997 00:29:09 +0000 (+0000) Subject: (inferior-emacs-lisp-mode): Set comint-completion-addsuffix. X-Git-Tag: emacs-20.1~2797 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=34ce46c8086b88ff86075dc5dd93b059d6fd8d51;p=emacs.git (inferior-emacs-lisp-mode): Set comint-completion-addsuffix. --- diff --git a/lisp/ielm.el b/lisp/ielm.el index afc2fa3a858..a5ce307a3d1 100644 --- a/lisp/ielm.el +++ b/lisp/ielm.el @@ -89,7 +89,7 @@ This variable is buffer-local.") (defvar ielm-header (concat "*** Welcome to IELM version " - (substring "$Revision: 1.7 $" 11 -2) + (substring "$Revision: 1.8 $" 11 -2) " *** Type (describe-mode) for help.\n" "IELM has ABSOLUTELY NO WARRANTY; type (describe-no-warranty) for details.\n") "Message to display when IELM is started.") @@ -405,6 +405,9 @@ Customised bindings may be defined in `ielm-map', which currently contains: (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) + (make-local-variable 'comint-completion-addsuffix) + (setq comint-completion-addsuffix + (cons (char-to-string directory-sep-char) "")) (setq major-mode 'inferior-emacs-lisp-mode) (setq mode-name "IELM")