From: Paul Eggert Date: Fri, 18 May 2018 22:53:21 +0000 (-0700) Subject: * src/alloc.c: Fix comment. X-Git-Tag: emacs-27.0.90~5022 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=593c367b0727affc739832ab4f4bdb9d7dd1ddd7;p=emacs.git * src/alloc.c: Fix comment. --- diff --git a/src/alloc.c b/src/alloc.c index 231ade5cf80..d959c55350a 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -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))