浏览代码

Fix a misplaced paren

I have no idea why this wasn't exiting with an error before.
Ryan C. Thompson 8 年之前
父节点
当前提交
b49a5fe314
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      ido-completing-read+.el

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

@@ -884,7 +884,7 @@ This has no effect unless `ido-cr+-dynamic-collection' is non-nil."
           with result = '()
           with n-taken = 0
           for item in ido-cr+-previous-dynamic-update-texts
-          if (not (member item) result)
+          if (not (member item result))
           collect item into result and
           sum 1 into n-taken
           if (>= n-taken 5)