aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-04-14 13:43:11 -0700
committerGlenn Morris2012-04-14 13:43:11 -0700
commit764a3017e2f66af637a3642734e5153eae02b4ef (patch)
tree810d2d2a67037dd44f7cad6856451e49d70934a5
parent41be52d7fb4fa2919f7aa56696d42d9554b8b7c9 (diff)
downloademacs-764a3017e2f66af637a3642734e5153eae02b4ef.tar.gz
emacs-764a3017e2f66af637a3642734e5153eae02b4ef.zip
doc/lispref/anti.texi small edits
* doc/lispref/anti.texi (Antinews): Copyedits. Don't @dfn anything here. open-network-stream does exist in Emacs 23, but is simpler. * admin/FOR-RELEASE: Related markup.
-rw-r--r--admin/FOR-RELEASE2
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/anti.texi18
3 files changed, 16 insertions, 9 deletions
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE
index 428332e2aa4..adbeeaa296c 100644
--- a/admin/FOR-RELEASE
+++ b/admin/FOR-RELEASE
@@ -177,7 +177,7 @@ xresources.texi cyd
177 177
178abbrevs.texi rgm 178abbrevs.texi rgm
179advice.texi cyd 179advice.texi cyd
180anti.texi 180anti.texi rgm
181back.texi rgm 181back.texi rgm
182backups.texi cyd 182backups.texi cyd
183buffers.texi cyd 183buffers.texi cyd
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index e58ef2aa3ec..61130316461 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,8 @@
12012-04-14 Glenn Morris <rgm@gnu.org>
2
3 * anti.texi (Antinews): Copyedits. Don't @dfn anything here.
4 open-network-stream does exist in Emacs 23, but is simpler.
5
12012-04-13 Chong Yidong <cyd@gnu.org> 62012-04-13 Chong Yidong <cyd@gnu.org>
2 7
3 * customize.texi (Custom Themes): Also document load-theme etc. 8 * customize.texi (Custom Themes): Also document load-theme etc.
diff --git a/doc/lispref/anti.texi b/doc/lispref/anti.texi
index 0e3c9eadeae..59f8f91c855 100644
--- a/doc/lispref/anti.texi
+++ b/doc/lispref/anti.texi
@@ -65,9 +65,9 @@ Emacs windows now have most of their internal state hidden from Lisp.
65Internal windows are no longer visible to Lisp; functions such as 65Internal windows are no longer visible to Lisp; functions such as
66@code{window-parent}, window parameters related to window arrangement, 66@code{window-parent}, window parameters related to window arrangement,
67and window-local buffer lists have all been removed. Functions for 67and window-local buffer lists have all been removed. Functions for
68resizing windows can delete windows if when they become too small. 68resizing windows can delete windows if they become too small.
69 69
70The @dfn{action function} feature for controlling buffer display has 70The ``action function'' feature for controlling buffer display has
71been removed, including @code{display-buffer-overriding-action} and 71been removed, including @code{display-buffer-overriding-action} and
72related variables, as well as the @var{action} argument to 72related variables, as well as the @var{action} argument to
73@code{display-buffer} and other functions. The way to 73@code{display-buffer} and other functions. The way to
@@ -80,7 +80,7 @@ variables.
80The standard completion interface has been simplified, eliminating the 80The standard completion interface has been simplified, eliminating the
81@code{completion-extra-properties} variable, the @code{metadata} 81@code{completion-extra-properties} variable, the @code{metadata}
82action flag for completion functions, and the concept of 82action flag for completion functions, and the concept of
83@dfn{completion categories}. Lisp programmers may now find the choice 83``completion categories''. Lisp programmers may now find the choice
84of methods for tuning completion less bewildering, but if a package 84of methods for tuning completion less bewildering, but if a package
85finds the streamlined interface insufficient for its needs, it must 85finds the streamlined interface insufficient for its needs, it must
86implement its own specialized completion feature. 86implement its own specialized completion feature.
@@ -123,17 +123,19 @@ an additional @var{cache} entry in their definitions, like this:
123The @var{cache} entry is used internally by Emacs to record equivalent 123The @var{cache} entry is used internally by Emacs to record equivalent
124keyboard key sequences for invoking the same command; Lisp programs 124keyboard key sequences for invoking the same command; Lisp programs
125should never use it. 125should never use it.
126@c Not really NEWS-worthy then...
126 127
127@item 128@item
128The @code{open-network-stream} function has been removed, and so has 129The @code{gnutls} library has been removed, and the function
129the @code{gnutls} library. Lisp programs that want an encrypted 130@code{open-network-stream} correspondingly simplified.
130network connection must now call external utilities such as 131Lisp programs that want an encrypted network connection must now call
131@command{starttls} or @command{gnutls-cli}. 132external utilities such as @command{starttls} or @command{gnutls-cli}.
132 133
133@item 134@item
134Tool bars can no longer display separators, which frees up several 135Tool bars can no longer display separators, which frees up several
135pixels of space on each graphical frame. 136pixels of space on each graphical frame.
136 137
137@item 138@item
138Many other functions and variables have been eliminated. 139As part of the ongoing quest for simplicity, many other functions and
140variables have been eliminated.
139@end itemize 141@end itemize