From 9f4a578d78e12e98932fa9a53d68fa269f391f99 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Mon, 18 Jul 2005 16:31:54 +0000 Subject: [PATCH] (Ftest_completion): Fix odd syntax in test. --- src/ChangeLog | 4 ++++ src/minibuf.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index ee3c67b08cd..1ab3c34b451 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2005-07-18 Ken Raeburn + + * minibuf.c (Ftest_completion): Fix odd syntax in test. + 2005-07-18 YAMAMOTO Mitsuharu * macfns.c (x_set_cursor_color): Use XSetBackground and diff --git a/src/minibuf.c b/src/minibuf.c index 870daca020d..5a1dffdbc37 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -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)) -- 2.39.2