Revert recent bookmark keybinding changes, thus returning to using
[emacs.git] / etc / NEWS
blob6b21ba4eb1a71db9ec3bb015db123f0323b7390a
1 GNU Emacs NEWS -- history of user-visible changes.
3 Copyright (C) 2007 Free Software Foundation, Inc.
4 See the end of the file for license conditions.
6 Please send Emacs bug reports to emacs-pretest-bug@gnu.org.
7 If possible, use M-x report-emacs-bug.
9 This file is about changes in Emacs version 23.
11 See files NEWS.22, NEWS.21, NEWS.20, NEWS.19, NEWS.18, and NEWS.1-17
12 for changes in older Emacs versions.
14 You can narrow news to a specific version by calling `view-emacs-news'
15 with a prefix argument or by typing C-u C-h C-n.
17 Temporary note:
18  +++ indicates that the appropriate manual has already been updated.
19  --- means no change in the manuals is called for.
20 When you add a new item, please add it without either +++ or ---
21 so we will look at it and add it to the manual.
24 * About external Lisp packages
27 * Installation Changes in Emacs 23.1
29 ** The default X toolkit is now Gtk+, rather than Lucid.
31 ** configure now checks for libgif before libungif when searching for
32 a GIF library.
35 * Changes in Emacs 23.1
37 ** If you set find-file-confirm-nonexistent-file to t, then C-x C-f
38 requires confirmation before opening a non-existent file.
40 ** If the gpm mouse server is running and t-mouse-mode enabled, Emacs uses a
41 Unix socket in a GNU/Linux console to talk to server, rather than faking events
42 using the client program mev.  This C level approach provides mouse
43 highlighting, and help echoing in the minibuffer.
45 ** The new variable next-error-recenter specifies how next-error should
46 recenter the visited source file.  Its value can be a number (for example,
47 0 for top line, -1 for bottom line), or nil for no recentering.
50 * Startup Changes in Emacs 23.1
53 * Incompatible Editing Changes in Emacs 23.1
56 * Editing Changes in Emacs 23.1
58 ** New command kill-matching-buffers kills buffers whose name matches a regexp.
61 * New Modes and Packages in Emacs 23.1
63 ** css-mode to edit Cascading Style Sheets.
65 ** bibtex-style-mode helps you write BibTeX's *.bst files.
67 ** vera-mode to edit Vera files.
69 ** socks.el (which had been part of W3) is now part of Emacs.
71 ** minibuffer-indicate-depth-mode shows the minibuffer depth in the prompt.
74 * Changes in Specialized Modes and Packages in Emacs 23.1
76 ** compilation-auto-jump-to-first-error tells `compile' to jump to
77 the first error encountered during compilations.
79 ** In the `copyright' package, you can specify your copyright holders's names.
80 Only copyright lines with holders matching copyright-names-regexp will be
81 considered for update.
83 ** VC
84 *** VC backends can provide completion of revision names.
85 *** VC has some support for Bazaar (bzr).
87 *** VC has some support for Mercurial (hg).
89 ** sgml-electric-tag-pair-mode lets you simultaneously edit matched tag pairs.
91 ** BibTeX mode:
93 *** New `bibtex-entry-format' options `whitespace', `braces', and
94 `string', disabled by default.
96 *** New variable `bibtex-cite-matcher-alist' contains rules to
97 identify cited keys in BibTeX entries, used by `bibtex-find-crossref.
99 *** Command `bibtex-url' now allows multiple URLs per entry.
102 ** Tramp
104 *** New connection methods.
105 The new methods "plinkx", "plink2", "psftp", "sftp" and "fish" have
106 been introduced.  There are also new so-called gateway methods
107 "tunnel" and "socks".
109 *** Multihop syntax has been removed.
110 The pseudo-method "multi" has been removed.  Instead of, multi hops
111 can be specified by the new variable `tramp-default-proxies-alist'.
113 *** More default settings.
114 Default values can be set via the variables `tramp-default-user',
115 `tramp-default-user-alist' and `tramp-default-host'.
117 *** Connection information is cached.
118 In order to reduce connection setup, information about used
119 connections are kept persistent in a file.  The name of this file is
120 defined in the variable `tramp-persistency-file-name'.
122 *** Control of remote processes.
123 Running processes on a remote host can be controlled by settings in
124 `tramp-remote-path' and `tramp-remote-process-environment'.
126 *** Success of remote copy is checked.
127 When the variable `file-precious-flag' is set, the success of a remote
128 file copy is checked via the file's checksum.
130 ** comint-mode uses `start-file-process' now (see Lisp Changes).
131 If `default-directory' is a remote file name, subprocesses are started
132 on the corresponding remote system.
135 * Changes in Emacs 23.1 on non-free operating systems
138 ** IPv6 is supported on MS-Windows.
139 Emacs now supports IPv6 on Windows XP and later, and earlier versions
140 of Windows with third party IPv6 stacks installed. Previously IPv6 was
141 supported on other platforms, but not on Windows due to using the winsock
142 1.1 header file, even though Emacs was linking to the winsock 2 library.
145 * Incompatible Lisp Changes in Emacs 23.1
148 ** The function `dired-call-process' has been removed.
151 * Lisp Changes in Emacs 23.1
153 +++ 
154 ** In `condition-case', a handler can specify "let the debugger run first".
156 You do this by writing `debug' in the list of conditions to be handled,
157 like this:
159     (condition-case nil
160         (foo bar)
161       ((debug error) nil))
163 ** The `require-match' argument to `completing-read' accepts a new value
164 `confirm-only'.
167 ** The regexp form \(?<num>:<regexp>\) specifies the group number explicitly.
170 ** New variable `user-emacs-directory'.
171 Use this instead of "~/.emacs.d".
174 ** The new function `image-refresh' refreshes all images associated
175 with a given image specification.
178 ** The new function `start-file-process is similar to `start-process',
179 but obeys file handlers.  The file handler is chosen based on
180 `default-directory'.
183 ** `file-remote-p' has a new optional parameter CONNECTED.
184 With this paramter passed non-nil, it is checked whether a remote
185 connection has been established already.
187 ** The two new functions `looking-at-p' and `string-match-p' can do
188 the same matching as `looking-at' and `string-match' without changing
189 the match data.
191 * New Packages for Lisp Programming in Emacs 23.1
194 ----------------------------------------------------------------------
195 This file is part of GNU Emacs.
197 GNU Emacs is free software; you can redistribute it and/or modify
198 it under the terms of the GNU General Public License as published by
199 the Free Software Foundation; either version 2, or (at your option)
200 any later version.
202 GNU Emacs is distributed in the hope that it will be useful,
203 but WITHOUT ANY WARRANTY; without even the implied warranty of
204 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
205 GNU General Public License for more details.
207 You should have received a copy of the GNU General Public License
208 along with GNU Emacs; see the file COPYING.  If not, write to the
209 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
210 Boston, MA 02110-1301, USA.
213 Local variables:
214 mode: outline
215 paragraph-separate: "[  \f]*$"
216 end:
218 arch-tag: e759449d-88b3-4de4-9900-3a6c3dfa23e2