1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-05 11:45:45 +00:00

* src/alloc.c: Fix comment.

This commit is contained in:
Paul Eggert 2018-05-18 15:53:21 -07:00
parent a1c925fd41
commit 593c367b07

View File

@ -508,8 +508,8 @@ pointer_align (void *ptr, int alignment)
DEFINE_KEY_OPS_AS_MACROS, for performance in that case.
The macro_* macros are private to this section of code. */
/* Add a pointer an an integer without complaint about a pointer going
out of range of the underlying array. */
/* Add a pointer P to an integer I without gcc -fsanitize complaining
about the result being out of range of the underlying array. */
#define macro_PNTR_ADD(p, i) ((p) + (i))