1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-01 11:14:55 +00:00

(icomplete-completions): Remove obsolete code.

This commit is contained in:
Juanma Barranquero 2008-03-11 16:27:52 +00:00
parent 9a09351550
commit 3bb1c62756
2 changed files with 2 additions and 5 deletions

View File

@ -1,5 +1,7 @@
2008-03-11 Juanma Barranquero <lekktu@gmail.com>
* icomplete.el (icomplete-completions): Remove obsolete code.
* net/net-utils.el (iwconfig-program-options): Doc fix.
(net-utils-run-program, run-network-program): Define as functions.

View File

@ -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 "(" "["))