summaryrefslogtreecommitdiff
path: root/lisp/icomplete.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2008-03-11 16:27:52 +0000
committerJuanma Barranquero <lekktu@gmail.com>2008-03-11 16:27:52 +0000
commit3bb1c6275611babb49bcb10381e111805c0773ab (patch)
treec359b290b18c315d7c775b5bf7af2f0e6ac51a4e /lisp/icomplete.el
parent9a0935155074dac4803cc14caaace7611d857609 (diff)
downloademacs-3bb1c6275611babb49bcb10381e111805c0773ab.tar.gz
(icomplete-completions): Remove obsolete code.
Diffstat (limited to 'lisp/icomplete.el')
-rw-r--r--lisp/icomplete.el5
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 "(" "["))