aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2003-04-14 16:31:52 +0000
committerStefan Monnier2003-04-14 16:31:52 +0000
commit052797a781ea6b826efbd62dc0dad94b71c7efe8 (patch)
treeb64d539dde526390c12ceca782c14e38e579da01
parent659d9874adc3d9e9c5adc10630dc51258e937444 (diff)
downloademacs-052797a781ea6b826efbd62dc0dad94b71c7efe8.tar.gz
emacs-052797a781ea6b826efbd62dc0dad94b71c7efe8.zip
*** empty log message ***
-rw-r--r--etc/NEWS15
1 files changed, 15 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index e1c6715c61a..702290eabd1 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1184,6 +1184,12 @@ timing measurements of code (including the garbage collection component).
1184 1184
1185* Lisp Changes in Emacs 21.4 1185* Lisp Changes in Emacs 21.4
1186 1186
1187** `sit-for' understands XEmacs args (SECONDS &optional NODISP).
1188
1189** New standard font-lock face `font-lock-preprocessor-face'.
1190
1191** The macro `with-syntax-table' does not copy the table any more.
1192
1187** The variable `face-font-rescale-alist' specifies how much larger 1193** The variable `face-font-rescale-alist' specifies how much larger
1188(or smaller) font we should use. For instance, if the value is 1194(or smaller) font we should use. For instance, if the value is
1189'((SOME-FONTNAME-PATTERN . 1.3)) and a face requests a font of 10 1195'((SOME-FONTNAME-PATTERN . 1.3)) and a face requests a font of 10
@@ -1858,6 +1864,15 @@ over minor mode keymaps.
1858** A hex escape in a string forces the string to be multibyte. 1864** A hex escape in a string forces the string to be multibyte.
1859An octal escape makes it unibyte. 1865An octal escape makes it unibyte.
1860 1866
1867** The code that forced point to move out of images and composition
1868has been generalized to apply to overlays as well and to invisible text.
1869This makes it generally unnecessary to mark invisible text as intangible,
1870which is particularly good due to the fact that the intangible property
1871can often have unexpected side-effects because the property applies
1872to everything (including `goto-char', ...) whereas this new code is
1873only run after post-command-hook and thus does not care about intermediate
1874states.
1875
1861** Only one of the beginning or end of an invisible, intangible region is 1876** Only one of the beginning or end of an invisible, intangible region is
1862considered an acceptable value for point; which one is determined by 1877considered an acceptable value for point; which one is determined by
1863examining how the invisible/intangible properties are inherited when new 1878examining how the invisible/intangible properties are inherited when new