diff options
| author | Kim F. Storm | 2006-07-14 23:32:14 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2006-07-14 23:32:14 +0000 |
| commit | bd04e7deabe504071670b645b7cdbb29f57a845b (patch) | |
| tree | 3dbeb59fba2197852f4bc313b55edda84345ed21 | |
| parent | 3f11901a5d35e2f229ab42ee83de1ff46cca3d42 (diff) | |
| download | emacs-bd04e7deabe504071670b645b7cdbb29f57a845b.tar.gz emacs-bd04e7deabe504071670b645b7cdbb29f57a845b.zip | |
(Antinews): Mention redisplay function.
The kbd macro existed, but was not documented, before 22.x.
Function pos-visible-in-window-p is not new in 22.x, just enhanced.
| -rw-r--r-- | lispref/anti.texi | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/lispref/anti.texi b/lispref/anti.texi index 78152d7ab31..87bf79b64b0 100644 --- a/lispref/anti.texi +++ b/lispref/anti.texi | |||
| @@ -24,6 +24,12 @@ redisplay engine, which will be even simpler.) | |||
| 24 | 24 | ||
| 25 | @itemize @minus | 25 | @itemize @minus |
| 26 | @item | 26 | @item |
| 27 | The function @code{redisplay} has been removed. To update the display | ||
| 28 | without delay, call @code{(sit-for 0)}. Since it is generally | ||
| 29 | considered wasteful to update the display if there are any pending | ||
| 30 | input events, no replacement for @code{(redisplay t)} is provided. | ||
| 31 | |||
| 32 | @item | ||
| 27 | The function @code{force-window-update} has been removed. It | 33 | The function @code{force-window-update} has been removed. It |
| 28 | shouldn't be needed, since changes in window contents are detected | 34 | shouldn't be needed, since changes in window contents are detected |
| 29 | automatically. In case they aren't, call @code{redraw-display} to | 35 | automatically. In case they aren't, call @code{redraw-display} to |
| @@ -80,8 +86,8 @@ removed. In @code{defface} specifications, the @code{supports} | |||
| 80 | predicate is no longer supported. | 86 | predicate is no longer supported. |
| 81 | 87 | ||
| 82 | @item | 88 | @item |
| 83 | @code{face-attribute-relative-p} and @code{merge-face-attribute} have | 89 | The functions @code{face-attribute-relative-p} and |
| 84 | been removed. | 90 | @code{merge-face-attribute} have been removed. |
| 85 | 91 | ||
| 86 | @item | 92 | @item |
| 87 | The priority of faces in a list supplied by the @code{:inherit} face | 93 | The priority of faces in a list supplied by the @code{:inherit} face |
| @@ -126,9 +132,9 @@ and key sequences: | |||
| 126 | 132 | ||
| 127 | @itemize @minus | 133 | @itemize @minus |
| 128 | @item | 134 | @item |
| 129 | The @code{kbd} macro has been removed. It isn't that difficult to | 135 | The @code{kbd} macro is now obsolete and is no longer documented. |
| 130 | write key sequences using the string and vector representations, and | 136 | It isn't that difficult to write key sequences using the string and |
| 131 | we want to encourage users to learn. | 137 | vector representations, and we want to encourage users to learn. |
| 132 | 138 | ||
| 133 | @item | 139 | @item |
| 134 | Emacs no longer supports key remapping. You can do pretty much the | 140 | Emacs no longer supports key remapping. You can do pretty much the |
| @@ -304,7 +310,7 @@ In @code{replace-match}, the replacement text now inherits properties | |||
| 304 | from the surrounding text. | 310 | from the surrounding text. |
| 305 | 311 | ||
| 306 | @item | 312 | @item |
| 307 | @code{mode-line-format} no longer supports the @code{:propertize}, | 313 | The variable @code{mode-line-format} no longer supports the @code{:propertize}, |
| 308 | @code{%i}, and @code{%I} constructs. The function | 314 | @code{%i}, and @code{%I} constructs. The function |
| 309 | @code{format-mode-line} has been removed. | 315 | @code{format-mode-line} has been removed. |
| 310 | 316 | ||
| @@ -319,8 +325,9 @@ The functions @code{window-pixel-edges} and | |||
| 319 | think in terms of lines and columns, not pixel coordinates. (Sometime | 325 | think in terms of lines and columns, not pixel coordinates. (Sometime |
| 320 | in the distant past, we will do away with graphical terminals | 326 | in the distant past, we will do away with graphical terminals |
| 321 | entirely, in favor of text terminals.) For similar reasons, the | 327 | entirely, in favor of text terminals.) For similar reasons, the |
| 322 | functions @code{posn-at-point}, @code{posn-at-x-y}, and | 328 | functions @code{posn-at-point} and @code{posn-at-x-y} have been removed, and |
| 323 | @code{pos-visible-in-window-p} have been removed. | 329 | @code{pos-visible-in-window-p} no longer worries about partially |
| 330 | visible rows. | ||
| 324 | 331 | ||
| 325 | @item | 332 | @item |
| 326 | The macro @code{save-selected-window} only saves the selected window | 333 | The macro @code{save-selected-window} only saves the selected window |