# HG changeset patch # User Ken Raeburn # Date 1121704209 0 # Node ID 39ca630ac33296c962ef8b6001df70c0499d4c01 # Parent 24be77ee0c97096a6c503de5b0bc7f916602c48e (Ftest_completion): Fix odd syntax in test. diff -r 24be77ee0c97 -r 39ca630ac332 src/minibuf.c --- a/src/minibuf.c Mon Jul 18 16:20:32 2005 +0000 +++ b/src/minibuf.c Mon Jul 18 16:30:09 2005 +0000 @@ -1758,7 +1758,7 @@ || NILP (alist)) { tem = Fassoc_string (string, alist, completion_ignore_case ? Qt : Qnil); - if NILP (tem) + if (NILP (tem)) return Qnil; } else if (VECTORP (alist))