From: Paul Eggert Date: Wed, 20 Nov 2019 19:57:17 +0000 (-0800) Subject: * src/sysdep.c: Improve comment wording. X-Git-Tag: emacs-27.0.90~561^2~14 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9ca40c4e701e925eaf4b580b20a261737d578706;p=emacs.git * src/sysdep.c: Improve comment wording. --- diff --git a/src/sysdep.c b/src/sysdep.c index e34ab2eb587..b436bfe74a8 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -167,7 +167,7 @@ maybe_disable_address_randomization (int argc, char **argv) { /* If dumping via unexec, ASLR must be disabled, as otherwise data may be scattered and undumpable as a simple executable. - If pdumping, disabling ASLR makes the .pdmp file reproducible. */ + If pdumping, disabling ASLR lessens differences in the .pdmp file. */ bool disable_aslr = will_dump_p (); # ifdef __PPC64__ disable_aslr = true;