diff options
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)) |