changeset 64467:39ca630ac332

(Ftest_completion): Fix odd syntax in test.
author Ken Raeburn <raeburn@raeburn.org>
date Mon, 18 Jul 2005 16:30:09 +0000
parents 24be77ee0c97
children 867fa17a0c18
files src/minibuf.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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))