]> code.delx.au - gnu-emacs/commitdiff
(Ftest_completion): Fix odd syntax in test.
authorKen Raeburn <raeburn@raeburn.org>
Mon, 18 Jul 2005 16:31:54 +0000 (16:31 +0000)
committerKen Raeburn <raeburn@raeburn.org>
Mon, 18 Jul 2005 16:31:54 +0000 (16:31 +0000)
src/ChangeLog
src/minibuf.c

index ee3c67b08cd41d0c3acd6b6b09477d0652066d99..1ab3c34b45139d25286ad726939c1acfce0d5d97 100644 (file)
@@ -1,3 +1,7 @@
+2005-07-18  Ken Raeburn  <raeburn@gnu.org>
+
+       * minibuf.c (Ftest_completion): Fix odd syntax in test.
+
 2005-07-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
 
        * macfns.c (x_set_cursor_color): Use XSetBackground and
index 870daca020ddded394cefc5b80ebf97ae37c132b..5a1dffdbc37b4f7dcec086a8eb371552cdbaa22c 100644 (file)
@@ -1758,7 +1758,7 @@ the values STRING, PREDICATE and `lambda'.  */)
       || NILP (alist))
     {
       tem = Fassoc_string (string, alist, completion_ignore_case ? Qt : Qnil);
-      if NILP (tem)
+      if (NILP (tem))
        return Qnil;
     }
   else if (VECTORP (alist))