]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/alloc.c: Fix comment.
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 18 May 2018 22:53:21 +0000 (15:53 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 18 May 2018 22:53:21 +0000 (15:53 -0700)
src/alloc.c

index 231ade5cf80d9fc386a82c13c6d52f5888ee4f01..d959c55350a50dbcfed8141b2c919a12b116acdf 100644 (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))