diff options
Diffstat (limited to 'src/keymap.c')
| -rw-r--r-- | src/keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keymap.c b/src/keymap.c index ed65a5f3d8a..bd2f3c99c26 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -2069,7 +2069,7 @@ The `kbd' macro is an approximate inverse of this. */) | |||
| 2069 | size += XINT (Flength (prefix)); | 2069 | size += XINT (Flength (prefix)); |
| 2070 | 2070 | ||
| 2071 | /* This has one extra element at the end that we don't pass to Fconcat. */ | 2071 | /* This has one extra element at the end that we don't pass to Fconcat. */ |
| 2072 | if (min (PTRDIFF_MAX, SIZE_MAX) / sizeof (Lisp_Object) / 4 < size) | 2072 | if (min (PTRDIFF_MAX, SIZE_MAX) / word_size / 4 < size) |
| 2073 | memory_full (SIZE_MAX); | 2073 | memory_full (SIZE_MAX); |
| 2074 | SAFE_ALLOCA_LISP (args, size * 4); | 2074 | SAFE_ALLOCA_LISP (args, size * 4); |
| 2075 | 2075 | ||