diff options
| author | Ken Raeburn | 2005-07-18 16:31:54 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2005-07-18 16:31:54 +0000 |
| commit | 9f4a578d78e12e98932fa9a53d68fa269f391f99 (patch) | |
| tree | 927e76445e3737e939cbd645f0a3725eaec30d3e /src | |
| parent | 81c4529228324efa2c0cb8adbaca132f034932f1 (diff) | |
| download | emacs-9f4a578d78e12e98932fa9a53d68fa269f391f99.tar.gz emacs-9f4a578d78e12e98932fa9a53d68fa269f391f99.zip | |
(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 @@ | |||
| 1 | 2005-07-18 Ken Raeburn <raeburn@gnu.org> | ||
| 2 | |||
| 3 | * minibuf.c (Ftest_completion): Fix odd syntax in test. | ||
| 4 | |||
| 1 | 2005-07-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 5 | 2005-07-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
| 2 | 6 | ||
| 3 | * macfns.c (x_set_cursor_color): Use XSetBackground and | 7 | * 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'. */) | |||
| 1758 | || NILP (alist)) | 1758 | || NILP (alist)) |
| 1759 | { | 1759 | { |
| 1760 | tem = Fassoc_string (string, alist, completion_ignore_case ? Qt : Qnil); | 1760 | tem = Fassoc_string (string, alist, completion_ignore_case ? Qt : Qnil); |
| 1761 | if NILP (tem) | 1761 | if (NILP (tem)) |
| 1762 | return Qnil; | 1762 | return Qnil; |
| 1763 | } | 1763 | } |
| 1764 | else if (VECTORP (alist)) | 1764 | else if (VECTORP (alist)) |