Ver código fonte

Eliminate another byte-compiler warning

Ryan C. Thompson 9 anos atrás
pai
commit
e22e93d9f1
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      ido-completing-read+.el

+ 1 - 1
ido-completing-read+.el

@@ -296,7 +296,7 @@ sets up C-j to be equivalent to TAB in the same situation."
        ;; Require-match is non-nil
        (with-no-warnings ido-require-match)
        ;; A default was provided, or ido-text is non-empty
-       (or ido-default-item
+       (or (with-no-warnings ido-default-item)
            (not (string= ido-text "")))
        ;; Only if current text is not a complete choice
        (not (member ido-text (with-no-warnings ido-cur-list))))