aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorMiles Bader2007-10-13 05:53:03 +0000
committerMiles Bader2007-10-13 05:53:03 +0000
commit2b42d458a45eaf9767da327f76a40a1cf9c77c23 (patch)
treef896828e65199d043ea7ab366fffea8bd315a986 /etc
parent3e88ae627ef8d827b3f79e4e6f14aaad7adfe322 (diff)
parente2cfa9afa691fb8b7a554cb685c16ff3d4e1ff2b (diff)
downloademacs-2b42d458a45eaf9767da327f76a40a1cf9c77c23.tar.gz
emacs-2b42d458a45eaf9767da327f76a40a1cf9c77c23.zip
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 880-885) - Remove RCS keywords from doc/misc/cc-mode.texi - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-264
Diffstat (limited to 'etc')
-rw-r--r--etc/ChangeLog4
-rw-r--r--etc/NEWS16
2 files changed, 18 insertions, 2 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index ffdba84db2d..daf43c08d97 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,7 @@
12007-10-10 Eric S. Raymond <esr@snark.thyrsus.com>
2
3 * NEWS: Explain the VC fileset changes a bit better.
4
12007-09-28 Glenn Morris <rgm@gnu.org> 52007-09-28 Glenn Morris <rgm@gnu.org>
2 6
3 * PROBLEMS: Mention Tex superscript font issue. 7 * PROBLEMS: Mention Tex superscript font issue.
diff --git a/etc/NEWS b/etc/NEWS
index 8cc4b9ed6f3..4ecdca35c52 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -107,6 +107,8 @@ file or directory.
107This is a convenience alias, so that one can write `(pop argv)' 107This is a convenience alias, so that one can write `(pop argv)'
108inside of --eval command line arguments in order to access 108inside of --eval command line arguments in order to access
109following arguments. 109following arguments.
110
111** The abbrev file is no longer read at startup in batch mode.
110 112
111* Incompatible Editing Changes in Emacs 23.1 113* Incompatible Editing Changes in Emacs 23.1
112 114
@@ -173,6 +175,11 @@ with the face `eldoc-highlight-function-argument'.
173 175
174*** VC now supports applying VC operations to a set of files at a time. 176*** VC now supports applying VC operations to a set of files at a time.
175 177
178This enables VC to work much more effectively with changeset-oriented
179version-control systems such as Subversion, GNU Arch, Mercurial, and
180Bzr. VC will now pass a multiple-file commit to these systems
181as a single changeset.
182
176** sgml-electric-tag-pair-mode lets you simultaneously edit matched tag pairs. 183** sgml-electric-tag-pair-mode lets you simultaneously edit matched tag pairs.
177 184
178** The appearance of superscript and subscript in TeX is more customizable. 185** The appearance of superscript and subscript in TeX is more customizable.
@@ -257,6 +264,8 @@ supported on other platforms, but not on Windows due to using the winsock
257 264
258* Lisp Changes in Emacs 23.1 265* Lisp Changes in Emacs 23.1
259 266
267** `frame-inherited-parameters' lets new frames inherit parameters from
268the selected frame.
260** New keymap `input-decode-map' overrides like key-translation-map, but 269** New keymap `input-decode-map' overrides like key-translation-map, but
261applies before function-key-map. Also it is terminal-local contrary to 270applies before function-key-map. Also it is terminal-local contrary to
262key-translation-map. Terminal-specific key-sequences are generally added to 271key-translation-map. Terminal-specific key-sequences are generally added to
@@ -292,10 +301,13 @@ are called after a tty frame has been suspended or resumed,
292respectively. The functions are called with the terminal id of the frame 301respectively. The functions are called with the terminal id of the frame
293being suspended/resumed as a parameter. 302being suspended/resumed as a parameter.
294 303
295*** New functions: `environment', `let-environment'. 304*** New function: `environment'.
296 305
297*** New variable: `local-function-key-map'. 306*** New variable: `local-function-key-map'.
298This in addition to the global function-key-map variable that already existed. 307This in addition to the global function-key-map variable that
308already existed. The global variable is not used directly any more;
309instead, the local-function-key-map is initialized so as to inherit from
310function-key-map.
299 311
300*** `initial-environment' holds the environment inherited from Emacs's parent. 312*** `initial-environment' holds the environment inherited from Emacs's parent.
301 313