diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2008-03-11 16:27:52 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2008-03-11 16:27:52 +0000 |
commit | 3bb1c6275611babb49bcb10381e111805c0773ab (patch) | |
tree | c359b290b18c315d7c775b5bf7af2f0e6ac51a4e /lisp/icomplete.el | |
parent | 9a0935155074dac4803cc14caaace7611d857609 (diff) | |
download | emacs-3bb1c6275611babb49bcb10381e111805c0773ab.tar.gz |
(icomplete-completions): Remove obsolete code.
Diffstat (limited to 'lisp/icomplete.el')
-rw-r--r-- | lisp/icomplete.el | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lisp/icomplete.el b/lisp/icomplete.el index 3eb4b4babf2..22ab96bb591 100644 --- a/lisp/icomplete.el +++ b/lisp/icomplete.el @@ -282,11 +282,6 @@ The displays for unambiguous matches have ` [Matched]' appended matches exist. \(Keybindings for uniquely matched commands are exhibited within the square braces.)" - ;; 'all-completions' doesn't like empty - ;; minibuffer-completion-table's (ie: (nil)) - (if (and (listp candidates) (null (car candidates))) - (setq candidates nil)) - (let ((comps (all-completions name candidates predicate)) ; "-determined" - only one candidate (open-bracket-determined (if require-match "(" "[")) |