aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2018-01-01 01:44:58 -0800
committerPaul Eggert2018-01-01 01:45:29 -0800
commit973d10a34b23f2ce5acc00a90ec9767e6237fefa (patch)
treeb6b71b4f8ade693fbdab0f22abdf2d995fb9dbaf
parent751989772768fe787ec0bb02929c3d2a49805388 (diff)
downloademacs-973d10a34b23f2ce5acc00a90ec9767e6237fefa.tar.gz
emacs-973d10a34b23f2ce5acc00a90ec9767e6237fefa.zip
* etc/NEWS: Improve -fcheck-pointer-bounds wording.
-rw-r--r--etc/NEWS5
1 files changed, 3 insertions, 2 deletions
diff --git a/etc/NEWS b/etc/NEWS
index dd907ab76fb..3ba95c1ff61 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -38,8 +38,9 @@ interpreter or modules that it uses. If your platform supports it you
38can enable it when configuring, e.g., './configure CFLAGS="-g3 -O2 38can enable it when configuring, e.g., './configure CFLAGS="-g3 -O2
39-mmpx -fcheck-pointer-bounds"' on Intel MPX platforms. 39-mmpx -fcheck-pointer-bounds"' on Intel MPX platforms.
40 40
41** Emacs now normally uses a pointer type instead of an integer type 41** Emacs now normally uses a C pointer type instead of a C integer
42for the fundamental word in the Emacs Lisp interpreter, to help 42type to implement Lisp_Object, which is the fundamental machine word
43type internal to the Emacs Lisp interpreter. This change aims to
43catch typos and support -fcheck-pointer-bounds. The 'configure' 44catch typos and support -fcheck-pointer-bounds. The 'configure'
44option --enable-check-lisp-object-type is therefore no longer as 45option --enable-check-lisp-object-type is therefore no longer as
45useful and so is no longer enabled by default in developer builds, 46useful and so is no longer enabled by default in developer builds,