diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2017-03-15 11:24:23 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2017-03-15 11:24:23 +0100 |
commit | a3207a383009720bbd89327425e0eb1c9c20c267 (patch) | |
tree | 33903d5d3c02d4036594c78f29d44abe38f65bda /lisp | |
parent | 0cfe3ee457e010816f5f85ee9d4a362f8b9f045c (diff) | |
download | emacs-a3207a383009720bbd89327425e0eb1c9c20c267.tar.gz emacs-a3207a383009720bbd89327425e0eb1c9c20c267.tar.bz2 emacs-a3207a383009720bbd89327425e0eb1c9c20c267.zip |
* lisp/ido.el (ido-read-internal, ido-complete): Do not bind `non-essential'.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ido.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/ido.el b/lisp/ido.el index 561d6e7f081..293c8e28570 100644 --- a/lisp/ido.el +++ b/lisp/ido.el @@ -1882,7 +1882,6 @@ If INITIAL is non-nil, it specifies the initial input string." ido-selected ido-final-text (done nil) - (non-essential t) ;; prevent eager Tramp connection (icomplete-mode nil) ;; prevent icomplete starting up ;; Exported dynamic variables: ido-cur-list @@ -2541,7 +2540,7 @@ If cursor is not at the end of the user input, move to end of input." (defun ido-complete () "Try and complete the current pattern amongst the file names." (interactive) - (let (non-essential res) + (let (res) (cond (ido-incomplete-regexp ;; Do nothing |