diff etc/NEWS @ 50975:bf7c2783b20d

*** empty log message ***
author Stefan Monnier <monnier@iro.umontreal.ca>
date Tue, 13 May 2003 20:15:13 +0000
parents 289523dd4fa7
children aafee8ba3f90
line wrap: on
line diff
--- a/etc/NEWS	Tue May 13 19:48:50 2003 +0000
+++ b/etc/NEWS	Tue May 13 20:15:13 2003 +0000
@@ -88,6 +88,15 @@
 
 * Changes in Emacs 21.4
 
+** `undo-only' (bound to C-x U) does an undo which does not redo any
+previous undo.
+
+** `uniquify-strip-common-suffix' tells uniquify to prefer
+`file|dir1' and `file|dir2' to `file|dir1/subdir' and `file|dir2/subdir'.
+
+** If the user visits a file larger than `large-file-warning-threshold',
+Emacs will prompt her for confirmation.
+
 ** A UTF-7 coding system is available in the library `utf-7'.
 
 ** GUD mode has its own tool bar for controlling execution of the inferior
@@ -348,6 +357,8 @@
 *** verbatim environments are now highlighted in courier by font-lock
 and super/sub-scripts are made into super/sub-scripts.
 
+*** New major mode doctex-mode for *.dtx files.
+
 +++
 ** New display feature: focus follows the mouse from one Emacs window
 to another, even within a frame.  If you set the variable
@@ -775,6 +786,8 @@
 allows you to specify a compression level using the "-z#" option for
 CVS.
 
+*** New backends for Subversion and Meta-CVS.
+
 ** EDiff changes.
 
 +++
@@ -1222,6 +1235,16 @@
 
 * Lisp Changes in Emacs 21.4
 
+** (map-keymap FUNCTION KEYMAP) applies the function to each binding
+in the keymap.
+
+** VC changes for backends:
+*** (vc-switches BACKEND OPERATION) is a new function for use by backends.
+*** The new `find-version' backend function replaces the `destfile'
+parameter of the `checkout' backend function.
+Old code still works thanks to a default `find-version' behavior that
+uses the old `destfile' parameter.
+
 ** `minor-mode-list' now holds a list of minor mode commands.
 
 ** The new command `modify-all-frames-parameters' modifies parameters
@@ -1911,6 +1934,12 @@
 text, in the same way it moves out from within text covered by an
 image or composition property.
 
+This makes it generally unnecessary to mark invisible text as intangible.
+This is particularly good because the intangible property often has
+unexpected side-effects since the property applies to everything
+(including `goto-char', ...) whereas this new code is only run after
+post-command-hook and thus does not care about intermediate states.
+	
 ** Only one of the beginning or end of an invisible, intangible region is
 considered an acceptable value for point; which one is determined by
 examining how the invisible/intangible properties are inherited when new