diff options
| author | Juanma Barranquero | 2013-04-16 04:39:47 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2013-04-16 04:39:47 +0200 |
| commit | 9cc2810b69ec36f75feb1e46f7301c41ee5686e1 (patch) | |
| tree | 80df82e457af3c2f2635f451a38f4ae6145d8731 /src | |
| parent | 36c0a3016e88cd380752758379a48d5e942601c4 (diff) | |
| download | emacs-9cc2810b69ec36f75feb1e46f7301c41ee5686e1.tar.gz emacs-9cc2810b69ec36f75feb1e46f7301c41ee5686e1.zip | |
src/minibuf.c (Ftest_completion): Silence compiler warning.
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 11b82f57108..36f015db5fa 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-04-16 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * minibuf.c (Ftest_completion): Silence compiler warning. | ||
| 4 | |||
| 1 | 2013-04-15 Eli Zaretskii <eliz@gnu.org> | 5 | 2013-04-15 Eli Zaretskii <eliz@gnu.org> |
| 2 | 6 | ||
| 3 | * w32fns.c (w32_wnd_proc): Add more assertions to investigate | 7 | * w32fns.c (w32_wnd_proc): Add more assertions to investigate |
diff --git a/src/minibuf.c b/src/minibuf.c index 4cc1f8d435a..b96d27e0742 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -1799,8 +1799,8 @@ the values STRING, PREDICATE and `lambda'. */) | |||
| 1799 | else if (HASH_TABLE_P (collection)) | 1799 | else if (HASH_TABLE_P (collection)) |
| 1800 | { | 1800 | { |
| 1801 | struct Lisp_Hash_Table *h = XHASH_TABLE (collection); | 1801 | struct Lisp_Hash_Table *h = XHASH_TABLE (collection); |
| 1802 | i = hash_lookup (h, string, NULL); | ||
| 1803 | Lisp_Object key = Qnil; | 1802 | Lisp_Object key = Qnil; |
| 1803 | i = hash_lookup (h, string, NULL); | ||
| 1804 | if (i >= 0) | 1804 | if (i >= 0) |
| 1805 | tem = HASH_KEY (h, i); | 1805 | tem = HASH_KEY (h, i); |
| 1806 | else | 1806 | else |