diff options
author | Ken Raeburn <raeburn@raeburn.org> | 2005-07-18 16:31:54 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@raeburn.org> | 2005-07-18 16:31:54 +0000 |
commit | 9f4a578d78e12e98932fa9a53d68fa269f391f99 (patch) | |
tree | 927e76445e3737e939cbd645f0a3725eaec30d3e /src | |
parent | 81c4529228324efa2c0cb8adbaca132f034932f1 (diff) | |
download | emacs-9f4a578d78e12e98932fa9a53d68fa269f391f99.tar.gz |
(Ftest_completion): Fix odd syntax in test.
Diffstat (limited to 'src')
-rw-r--r-- | src/ChangeLog | 4 | ||||
-rw-r--r-- | src/minibuf.c | 2 |
2 files changed, 5 insertions, 1 deletions
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 <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 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)) |