diff options
| author | Eli Zaretskii | 2013-04-16 17:10:51 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2013-04-16 17:10:51 +0300 |
| commit | 83b9062422faef46592618bed64e5df47fe13670 (patch) | |
| tree | 964e529ab141daefa7b8a4f3e1788885e967f987 /src | |
| parent | 895591043f735398ad3930d12f82c0b9dfe07730 (diff) | |
| parent | a7bef505860dc15dd9fc1513e45a1ec71417471e (diff) | |
| download | emacs-83b9062422faef46592618bed64e5df47fe13670.tar.gz emacs-83b9062422faef46592618bed64e5df47fe13670.zip | |
Merge from trunk.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 12 | ||||
| -rw-r--r-- | src/minibuf.c | 2 |
2 files changed, 9 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 11b82f57108..04a6c353619 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 |
| @@ -1257,7 +1261,7 @@ | |||
| 1257 | (Fcommand_execute): Remove, replace by an Elisp implementation. | 1261 | (Fcommand_execute): Remove, replace by an Elisp implementation. |
| 1258 | (syms_of_keyboard): Adjust accordingly. | 1262 | (syms_of_keyboard): Adjust accordingly. |
| 1259 | 1263 | ||
| 1260 | 2013-02-19 Daniel Colascione <dancol@dancol.org> | 1264 | 2013-02-19 Daniel Colascione <dancol@dancol.org> |
| 1261 | 1265 | ||
| 1262 | * sheap.c (report_sheap_usage): Use message, not message1, so | 1266 | * sheap.c (report_sheap_usage): Use message, not message1, so |
| 1263 | that we don't try to create a buffer while we're in the middle | 1267 | that we don't try to create a buffer while we're in the middle |
| @@ -12081,9 +12085,9 @@ | |||
| 12081 | to denote vector blocks. Adjust users (live_vector_p, | 12085 | to denote vector blocks. Adjust users (live_vector_p, |
| 12082 | mark_maybe_pointer, valid_lisp_object_p) accordingly. | 12086 | mark_maybe_pointer, valid_lisp_object_p) accordingly. |
| 12083 | (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG. | 12087 | (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG. |
| 12084 | (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES), | 12088 | (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES) |
| 12085 | (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX), | 12089 | (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX) |
| 12086 | (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST), | 12090 | (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST) |
| 12087 | (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros. | 12091 | (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros. |
| 12088 | (roundup_size): New constant. | 12092 | (roundup_size): New constant. |
| 12089 | (struct vector_block): New data type. | 12093 | (struct vector_block): New data type. |
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 |