aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-10-08 00:10:21 -0700
committerGlenn Morris2012-10-08 00:10:21 -0700
commitd71a6517cbea35ce30f53810e51b8517a7df3605 (patch)
treeb520c751e1733bc177cebbb7513191b1fa42b8da
parentcad4f2902ed577f2bbf9d13b0d4a81d236031f4e (diff)
downloademacs-d71a6517cbea35ce30f53810e51b8517a7df3605.tar.gz
emacs-d71a6517cbea35ce30f53810e51b8517a7df3605.zip
Trivial NEWS copyedits
-rw-r--r--etc/NEWS31
1 files changed, 18 insertions, 13 deletions
diff --git a/etc/NEWS b/etc/NEWS
index c2ebfaad231..be0f50d9e46 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -23,18 +23,36 @@ so we will look at it and add it to the manual.
23 23
24* Installation Changes in Emacs 24.3 24* Installation Changes in Emacs 24.3
25 25
26---
27** The default toolkit has been changed to Gtk+ version 3.
28If you don't pass --with-x-toolkit to configure or if you pass
29--with-x-toolkit=gtk or --with-x-toolkit=yes, configure will try to build
30with Gtk+ version 3, and if that fails, try Gtk+ version 2.
31You can explicitly require a specific version by passing
32--with-x-toolkit=gtk2 or --with-x-toolkit=gtk3 to configure.
33
34---
26** New configure option '--without-all' to disable additional features. 35** New configure option '--without-all' to disable additional features.
27This disables most of the features that are normally enabled by default. 36This disables most of the features that are normally enabled by default.
28 37
38---
29** New configure option '--enable-link-time-optimization' to utilize 39** New configure option '--enable-link-time-optimization' to utilize
30an appropriate feature provided by GCC since version 4.5.0. 40an appropriate feature provided by GCC since version 4.5.0.
31 41
42---
32** New configure option '--enable-gcc-warnings', intended for developers. 43** New configure option '--enable-gcc-warnings', intended for developers.
33If building with GCC, this enables compile-time checks that warn about 44If building with GCC, this enables compile-time checks that warn about
34possibly-questionable C code. On a recent GNU system there should be 45possibly-questionable C code. On a recent GNU system there should be
35no warnings; on older and on non-GNU systems the generated warnings 46no warnings; on older and on non-GNU systems the generated warnings
36may be useful. 47may be useful.
37 48
49---
50** The configuration option '--enable-use-lisp-union-type' has been
51renamed to '--enable-check-lisp-object-type', as the resulting
52Lisp_Object type no longer uses a union to implement the compile time
53check that this option enables.
54
55---
38** The configure option '--disable-maintainer-mode' has been removed, 56** The configure option '--disable-maintainer-mode' has been removed,
39as it was confusingly-named and rarely useful. 57as it was confusingly-named and rarely useful.
40 58
@@ -60,19 +78,6 @@ directories to the search path. You must add them yourself if you want them.
60(from the bin and libexec directories, respectively). The former is 78(from the bin and libexec directories, respectively). The former is
61no longer relevant, the latter is replaced by lisp (in vc-sccs.el). 79no longer relevant, the latter is replaced by lisp (in vc-sccs.el).
62 80
63** The configuration option '--enable-use-lisp-union-type' has been
64renamed to '--enable-check-lisp-object-type', as the resulting
65Lisp_Object type no longer uses a union to implement the compile time
66check that this option enables.
67
68---
69** The default toolkit has been changed to Gtk+ version 3.
70If you don't pass --with-x-toolkit to configure or if you pass
71--with-x-toolkit=gtk or --with-x-toolkit=yes, configure will try to build
72with Gtk+ version 3, and if that fails, try Gtk+ version 2.
73You can explicitly require a specific version by passing
74--with-x-toolkit=gtk2 or --with-x-toolkit=gtk3 to configure.
75
76 81
77* Startup Changes in Emacs 24.3 82* Startup Changes in Emacs 24.3
78 83