Require easymenu.
[bpt/emacs.git] / etc / NEWS
CommitLineData
29b7722a 1GNU Emacs NEWS -- history of user-visible changes.
5b87ad55 2
0bfd685e 3Copyright (C) 2007 Free Software Foundation, Inc.
5b87ad55 4See the end of the file for license conditions.
a933dad1 5
3f7194ed 6Please send Emacs bug reports to emacs-pretest-bug@gnu.org.
9a21d88b
KS
7If possible, use M-x report-emacs-bug.
8
0bfd685e 9This file is about changes in Emacs version 23.
9a21d88b 10
0bfd685e
GM
11See files NEWS.22, NEWS.21, NEWS.20, NEWS.19, NEWS.18, and NEWS.1-17
12for changes in older Emacs versions.
9a21d88b
KS
13
14You can narrow news to a specific version by calling `view-emacs-news'
15with a prefix argument or by typing C-u C-h C-n.
3f7194ed
GM
16
17Temporary note:
18 +++ indicates that the appropriate manual has already been updated.
19 --- means no change in the manuals is called for.
20When you add a new item, please add it without either +++ or ---
21so we will look at it and add it to the manual.
22
05197f40 23\f
9c576ea0
KS
24* About external Lisp packages
25
9c576ea0 26\f
0bfd685e 27* Installation Changes in Emacs 23.1
c58dccad 28
3f7194ed
GM
29** The default X toolkit is now Gtk+, rather than Lucid.
30
9d3cc9b2
GM
31** configure now checks for libgif before libungif when searching for
32a GIF library.
b5ac89f8 33
36e625ec
GM
34** Support for systems without alloca has been removed.
35
48a8be40
GM
36** The `emacstool' utility has been removed.
37
4e5cdb4f 38\f
6dadd99f
NR
39* Changes in Emacs 23.1
40
780d7bb9
RS
41** Emacs now supports using both X displays and ttys in one session.
42You can also use any number of different ttys.
43
44You can test for the presence of this feature in your Lisp code by
45testing for the `multi-tty' feature.
46
251ad2de
TTN
47** Emacs comes with a new set of icons for Mac OS X.
48OS-X-style icons (an application icon and a relevant document icon)
49were contributed by Kentaro Ohkouchi.
50Source files for these icons can be found in Emacs.app/Contents/Resources.
51
f664fee9
MC
52** Built-in functions (subr) can now have an interactive specification
53that is not a prompt string. If the `intspec' parameter of a `DEFUN'
54starts with a `(', the string is evaluated as a Lisp form.
55
56** set-file-modes is now interactive and can take the mode value in
57symbolic notation thanks to auxiliary functions.
58
90ab5c62
SM
59** split-window-preferred-function specifies whether display-buffer should
60split windows vertically or horizontally.
61
24cdde13
GM
62** Emacsclient has been extended to support opening a new terminal
63frame. Its behavior has been changed to open a new Emacs frame by
64default. Use the -c option to get the old behavior of opening files in
65the currently selected Emacs frame.
66
c0dadae9
MC
67** The refcards are now shipped as PDF files.
68
795a2a94
GM
69** Emacs now supports the SVG image format through librsvg2.
70
75f6af19 71** If you set find-file-confirm-nonexistent-file to t, then C-x C-f
0a963185
SM
72requires confirmation before opening a non-existent file.
73
6dadd99f
NR
74** If the gpm mouse server is running and t-mouse-mode enabled, Emacs uses a
75Unix socket in a GNU/Linux console to talk to server, rather than faking events
76using the client program mev. This C level approach provides mouse
77highlighting, and help echoing in the minibuffer.
78
c2e8590b
TTN
79** The new variable next-error-recenter specifies how next-error should
80recenter the visited source file. Its value can be a number (for example,
810 for top line, -1 for bottom line), or nil for no recentering.
82
d87b5ced 83** The mode-line displays a `@' if the default-directory for the current buffer
1f2e1c75 84is on a remote machine, or a hyphen otherwise.
6c5d503f 85
de3054d5 86** The new command balance-windows-area balances windows both vertically
62e3c31f 87and horizontally.
d466e9fc
SM
88
89** The new command close-display-connection can be used to close a connection
90to a remote display, e.g. because the display is about to become unreachable.
6c5d503f
MA
91
92** The command shell prompts for the default directory, when it is
93called with a prefix, and the default directory is a remote file name.
de3054d5 94This is because some file name handlers (like ange-ftp) are not able to
6c5d503f 95run processes remotely.
aff2ba04
RS
96
97** The new command `display-time-world' starts an updating time display
98using several time zones, in a buffer.
6dadd99f 99\f
0bfd685e 100* Startup Changes in Emacs 23.1
21f7b9d8 101
56e1896b
JL
102** New user option `initial-buffer-choice' specifies what to display
103after starting Emacs: startup screen, *scratch* buffer, visiting a
104file or directory.
105
aa5310e4
DK
106** New alias `argv' for `command-line-args-left'
107This is a convenience alias, so that one can write `(pop argv)'
108inside of --eval command line arguments in order to access
109following arguments.
c44da964 110\f
0bfd685e 111* Incompatible Editing Changes in Emacs 23.1
b58cb59f 112
406c0f12 113\f
0bfd685e 114* Editing Changes in Emacs 23.1
406c0f12 115
1ac03a31
JL
116+++
117** M-q now fills the region if the region is active and
118`transient-mark-mode' is turned on. Otherwise, it fills the current
119paragraph. The new command bound to M-q is `fill-paragraph-or-region'.
120
6dd697d9
DN
121** TAB now indents the region if the region is active and
122`transient-mark-mode' is turned on.
123
24cdde13
GM
124** C-z now invokes `suspend-frame', C-x C-c now invokes
125`save-buffers-kill-terminal'.
126
a151f82c
SS
127** New command kill-matching-buffers kills buffers whose name matches a regexp.
128
297b8ccd
JL
129** Minibuffer changes:
130
131*** isearch started in the minibuffer searches in the minibuffer history.
132Reverse isearch commands (C-r, C-M-r) search in previous minibuffer
133history elements, and forward isearch commands (C-s, C-M-s) search in
134next history elements. When the reverse search reaches the first history
135element, it wraps to the last history element, and the forward search
136wraps to the first history element. When the search is terminated, the
137history element containing the search string becomes the current.
138
0bfd685e
GM
139\f
140* New Modes and Packages in Emacs 23.1
0091c67e 141
1816bda7
MC
142** The package doc-view.el has been added. It supports viewing of PDF,
143PostScript and DVI documents inside an Emacs buffer by converting the
144document to a set of PNG images first. One can also search for a
145regular expression in the document. The commentary of the file explains
146its usage.
147
ddc961c5 148** A new game called `bubbles' has been added.
a0818148 149
dcd6e8d7 150** minibuffer-indicate-depth-mode shows the minibuffer depth in the prompt.
3f7194ed 151
0bfd685e
GM
152\f
153* Changes in Specialized Modes and Packages in Emacs 23.1
61d244ca 154
be36f934 155** diff-fine-highlight highlights char-level details of changes in a diff hunk.
e6a01e4e 156** archive-mode has basic support to browse Rar archives.
24cdde13
GM
157** talk.el has been extended for multiple tty support.
158
813fb3fe
SM
159** compilation-auto-jump-to-first-error tells `compile' to jump to
160the first error encountered during compilations.
161
b649d2e4
SM
162** In the `copyright' package, you can specify your copyright holders's names.
163Only copyright lines with holders matching copyright-names-regexp will be
164considered for update.
165
e7ce8577
GM
166** eldoc highlights the function argument under point
167with the face `eldoc-highlight-function-argument'.
168
56dada42 169** VC
397c4757
DN
170*** Clicking on the VC mode-line entry now pops the VC menu.
171
9372a958 172*** The VC mode-line entry now has a tooltip that explains the VC file status.
cb223bba 173
082c5622
DN
174*** VC now supports applying VC operations to a set of files at a time.
175
5d503af9
SM
176** sgml-electric-tag-pair-mode lets you simultaneously edit matched tag pairs.
177
332de56f
GM
178** The appearance of superscript and subscript in TeX is more customizable.
179See the documentation of the variables: tex-fontify-script,
180tex-font-script-display, tex-suscript-height-ratio, and
181tex-suscript-height-minimum.
182
2793c9bb
RW
183** BibTeX mode:
184
185*** New `bibtex-entry-format' options `whitespace', `braces', and
186`string', disabled by default.
187
188*** New variable `bibtex-cite-matcher-alist' contains rules to
189identify cited keys in BibTeX entries, used by `bibtex-find-crossref.
190
191*** Command `bibtex-url' now allows multiple URLs per entry.
192
cc213f24
MA
193+++
194** Tramp
195
196*** New connection methods.
197The new methods "plinkx", "plink2", "psftp", "sftp" and "fish" have
198been introduced. There are also new so-called gateway methods
199"tunnel" and "socks".
200
201*** Multihop syntax has been removed.
202The pseudo-method "multi" has been removed. Instead of, multi hops
203can be specified by the new variable `tramp-default-proxies-alist'.
204
205*** More default settings.
206Default values can be set via the variables `tramp-default-user',
207`tramp-default-user-alist' and `tramp-default-host'.
208
209*** Connection information is cached.
210In order to reduce connection setup, information about used
211connections are kept persistent in a file. The name of this file is
212defined in the variable `tramp-persistency-file-name'.
213
214*** Control of remote processes.
215Running processes on a remote host can be controlled by settings in
216`tramp-remote-path' and `tramp-remote-process-environment'.
217
218*** Success of remote copy is checked.
219When the variable `file-precious-flag' is set, the success of a remote
220file copy is checked via the file's checksum.
221
d15f7b68
GM
222** Miscellaneous programming mode changes
223
da26ea8d
GM
224*** The file etc/emacs.py now supports both Python 2 and 3, meaning
225that either version can be used as inferior Python by python.el.
c3f01f42 226
d15f7b68
GM
227*** The variable `fortran-line-length' can change the fixed-form line-length.
228
229** Miscellaneous
230
231*** comint-mode uses `start-file-process' now (see Lisp Changes).
cc213f24
MA
232If `default-directory' is a remote file name, subprocesses are started
233on the corresponding remote system.
234
d15f7b68 235*** C-x C-q in dired-mode now runs the command wdired-change-to-wdired-mode,
40aa8257
JL
236and C-x C-q in wdired-mode exits it with asking a question about
237saving changes.
d15f7b68 238
4596901f
GM
239*** The new command `eshell/info' runs info in an eshell buffer.
240
0bfd685e
GM
241\f
242* Changes in Emacs 23.1 on non-free operating systems
8ab314f9 243
672f99b6
JR
244---
245** IPv6 is supported on MS-Windows.
246Emacs now supports IPv6 on Windows XP and later, and earlier versions
247of Windows with third party IPv6 stacks installed. Previously IPv6 was
248supported on other platforms, but not on Windows due to using the winsock
2491.1 header file, even though Emacs was linking to the winsock 2 library.
250
0bfd685e
GM
251\f
252* Incompatible Lisp Changes in Emacs 23.1
8ec65cd7 253
03605a28
MA
254+++
255** The function `dired-call-process' has been removed.
256
0bfd685e
GM
257\f
258* Lisp Changes in Emacs 23.1
8ab314f9 259
4f4a84ec
SM
260** New keymap `input-decode-map' overrides like key-translation-map, but
261applies before function-key-map. Also it is terminal-local contrary to
262key-translation-map. Terminal-specific key-sequences are generally added to
263this map rather than to function-key-map now.
264
24cdde13
GM
265** Changes related to multiple tty support.
266
b12f6e85
SM
267*** $TERM is now set to `dumb' for subprocesses. If you want to know the
268$TERM inherited by Emacs you will have to look inside initial-environment.
269
6168122d
SM
270*** $DISPLAY is now dynamically inherited from the frame's `display'.
271
24cdde13
GM
272*** The `window-system' variable has been made frame-local. The new
273`initial-window-system' variable contains the `window-system' value
274for the first frame.
275
276*** You can specify a terminal device (`tty' parameter) and a terminal
277type (`tty-type' parameter) to `make-terminal-frame'.
278
279*** The new function `make-frame-on-tty' allows you to create a new
280frame on another tty device interactively.
281
282*** The function `make-frame-on-display' now works during a tty
283session, and `make-frame-on-tty' works during a graphical session.
284
da406961 285*** New functions: `delete-tty', `suspend-tty', `resume-tty'.
24cdde13 286
419f8f49
SM
287*** A new data type for terminals with functions: `get-device-terminal',
288`terminal-parameters', `terminal-parameter', `set-terminal-parameter'.
24cdde13 289
1816bda7 290*** New hooks: `suspend-tty-functions' and `resume-tty-functions'
92cd6a7c 291are called after a tty frame has been suspended or resumed,
de3054d5 292respectively. The functions are called with the terminal id of the frame
92cd6a7c
DN
293being suspended/resumed as a parameter.
294
da406961
RS
295*** New functions: `environment', `let-environment'.
296
4f4a84ec
SM
297*** New variable: `local-function-key-map'.
298This in addition to the global function-key-map variable that already existed.
da406961 299
82866ad5
SM
300*** `initial-environment' holds the environment inherited from Emacs's parent.
301
24cdde13
GM
302*** The `keyboard-translate-table' variable and the terminal and
303keyboard coding systems have been made terminal-local.
304
305*** In addition to the global key-translation-map and
306function-key-map, Emacs has terminal-local local-key-translation-map
307and local-function-key-map variables, and uses them instead of the
308global keymaps to set up translations and function key sequences
309relevant to a specific terminal device.
310
311
90ab5c62
SM
312** You can now also pass the value of the `invisible' property to invisible-p
313to check whether it would cause the text to be invisible. Convenient when
314checking invisibility of text which has no buffer position
315(e.g. in before/after-strings).
9f44d41a 316
ea2e3ef4
RS
317** Non-breaking space now acts as whitespace.
318
41bd52f7 319+++
8d371994
RS
320** In `condition-case', a handler can specify "let the debugger run first".
321
322You do this by writing `debug' in the list of conditions to be handled,
323like this:
324
325 (condition-case nil
326 (foo bar)
327 ((debug error) nil))
328
0a963185
SM
329** The `require-match' argument to `completing-read' accepts a new value
330`confirm-only'.
331
c69b0314
SM
332+++
333** The regexp form \(?<num>:<regexp>\) specifies the group number explicitly.
334
9f44d41a
RS
335** New function `window-full-width-p' returns t if a window is as wide
336as its frame.
337
338** The new function `split-string-and-unquote' does (what?)
339
340** The new function `combine-and-quote-strings' does (what?)
341
342** The new function `image-refresh' refreshes all images associated
343with a given image specification.
344
abf13a8b
CY
345+++
346** New variable `user-emacs-directory'.
347Use this instead of "~/.emacs.d".
348
b2b387f9
MA
349+++
350** The new function `start-file-process is similar to `start-process',
351but obeys file handlers. The file handler is chosen based on
6dbe7eb4
MA
352`default-directory'. The functions `start-file-process-shell-command'
353and `process-file-shell-command' are also new; they call internally
354`start-file-process and `process-file', respectively.
b2b387f9 355
64639e26 356+++
41bd52f7
MA
357** `file-remote-p' has new optional parameters IDENTIFICATION and CONNECTED.
358IDENTIFICATION specifies which part of the remote identifier has to be
359returned. With CONNECTED passed non-nil, it is checked whether a
360remote connection has been established already.
64639e26 361
45595a4f
RS
362** The two new functions `looking-at-p' and `string-match-p' can do
363the same matching as `looking-at' and `string-match' without changing
364the match data.
89835619
SM
365
366** The interactive-form of a function can be added post-facto via the
367`interactive-form' symbol property. Mostly useful to add complex interactive
368forms to subroutines.
9bae34bf 369\f
0bfd685e 370* New Packages for Lisp Programming in Emacs 23.1
efeb796b 371
d53a60a6
TTN
372** The new package avl-tree.el deals with the AVL tree data structure.
373
05197f40 374\f
a933dad1 375----------------------------------------------------------------------
5b87ad55 376This file is part of GNU Emacs.
a933dad1 377
5b87ad55
GM
378GNU Emacs is free software; you can redistribute it and/or modify
379it under the terms of the GNU General Public License as published by
64be3a42 380the Free Software Foundation; either version 3, or (at your option)
5b87ad55
GM
381any later version.
382
383GNU Emacs is distributed in the hope that it will be useful,
384but WITHOUT ANY WARRANTY; without even the implied warranty of
385MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
386GNU General Public License for more details.
a933dad1 387
5b87ad55
GM
388You should have received a copy of the GNU General Public License
389along with GNU Emacs; see the file COPYING. If not, write to the
390Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
391Boston, MA 02110-1301, USA.
a933dad1 392
05197f40 393\f
a933dad1
DL
394Local variables:
395mode: outline
396paragraph-separate: "[ \f]*$"
397end:
ab5796a9 398
a533413c 399arch-tag: e759449d-88b3-4de4-9900-3a6c3dfa23e2