Add 7z archive format support (bug#5475).
[bpt/emacs.git] / etc / NEWS
... / ...
CommitLineData
1GNU Emacs NEWS -- history of user-visible changes.
2
3Copyright (C) 2010 Free Software Foundation, Inc.
4See the end of the file for license conditions.
5
6Please send Emacs bug reports to bug-gnu-emacs@gnu.org.
7If possible, use M-x report-emacs-bug.
8
9This file is about changes in Emacs version 24.
10
11See files NEWS.23, NEWS.22, NEWS.21, NEWS.20, NEWS.19, NEWS.18,
12and NEWS.1-17 for changes in older Emacs versions.
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.
16
17
18Temporary note:
19 +++ indicates that the appropriate manual has already been updated.
20 --- means no change in the manuals is called for.
21When you add a new item, please add it without either +++ or ---
22so we will look at it and add it to the manual.
23
24\f
25* Installation Changes in Emacs 24.1
26
27---
28** There are new configure options:
29--with-mmdf, --with-mail-unlink, --with-mailhost.
30These provide no new functionality, they just remove the need to edit
31lib-src/Makefile by hand in order to use the associated features.
32
33\f
34* Startup Changes in Emacs 24.1
35
36\f
37* Changes in Emacs 24.1
38
39** auto-mode-case-fold is now enabled by default.
40
41+++
42** Emacs now supports display and editing of bidirectional text.
43Warning: This is still very much experimental! The existing support
44is minimal, and when it's turned on (see below), many features are
45likely to give unexpected results, or break, or even crash! Use at
46your own risk!
47
48See the node "Bidirectional Editing" in the Emacs Manual for some
49initial documentation.
50
51To turn this on in any given buffer, set the buffer-local variable
52`bidi-display-reordering' to a non-nil value. The default is nil.
53
54The buffer-local variable `bidi-paragraph-direction', if non-nil,
55forces each paragraph in the buffer to have its base direction
56according to the value of this variable. Possible values are
57`right-to-left' and `left-to-right'. If the value is nil (the
58default), Emacs determines the base direction of each paragraph from
59its text, as specified by the Unicode Bidirectional Algorithm.
60
61Reordering of bidirectional text for display in Emacs is a "Full
62bidirectionality" class implementation of the Unicode Bidirectional
63Algorithm.
64
65** GTK scroll-bars are now placed on the right by default.
66Use `set-scroll-bar-mode' to change this.
67
68** Lucid menus and dialogs can display antialiased fonts if Emacs is built
69with Xft.
70
71** New scrolling commands `scroll-up-command' and `scroll-down-command'
72(bound to C-v/[next] and M-v/[prior]) does not signal errors at top/bottom
73of buffer at first key-press (instead moves to top/bottom of buffer)
74when a new variable `scroll-error-top-bottom' is non-nil.
75
76** New scrolling commands `scroll-up-line' and `scroll-down-line'
77scroll a line instead of full screen.
78
79** New property `scroll-command' should be set on a command's symbol to
80define it as a scroll command affected by `scroll-preserve-screen-position.
81
82\f
83* Editing Changes in Emacs 24.1
84
85\f
86* Changes in Specialized Modes and Packages in Emacs 24.1
87
88** Archive Mode has basic support to browse 7z archives.
89
90** partial-completion-mode is now obsolete.
91
92** mpc.el: Can use pseudo tags of the form tag1|tag2 as a union of two tags.
93** Customize
94
95*** Customize buffers now contain a search field.
96The search is performed using `customize-apropos'.
97To turn off the search field, set custom-search-field to nil .
98
99*** Custom options now start out hidden if at their default values.
100Use the arrow to the left of the option name to toggle visibility.
101
102*** custom-buffer-sort-alphabetically now defaults to t.
103
104*** The color widget now has a "Choose" button, which allows you to
105choose a color via list-colors-display.
106
107** VC and related modes
108
109*** New VC commands: vc-log-incoming and vc-log-outgoing.
110
111*** vc-dir for Bzr supports viewing shelve contents and shelving snapshots.
112
113*** Special markup can be added to log-edit buffers.
114
115**** For Bzr, adding an
116Author: NAME
117line will add "--author NAME" to the "bzr commit" command.
118
119**** For Git, adding an
120Author: NAME
121line will add "--author NAME" to the "git commit" command.
122
123**** For Hg, adding an
124Author: NAME
125line will add "--user NAME" to the "hg commit" command.
126
127** Directory local variables can apply to file-less buffers.
128For example, adding "(diff-mode . ((mode . whitespace)))" to your
129.dir-locals.el file, will turn on `whitespace-mode' for *vc-diff*
130buffers.
131
132** s-region.el is now declared obsolete, superceded by shift-select-mode
133enabled by default in 23.1.
134
135** gdb-mi
136
137*** GDB User Interface migrated to GDB Machine Interface and now
138supports multithread non-stop debugging and debugging of several
139threads simultaneously.
140
141\f
142* New Modes and Packages in Emacs 24.1
143
144** secrets.el is an implementation of the Secret Service API, an
145interface to password managers like GNOME Keyring or KDE Wallet. The
146Secret Service API requires D-Bus for communication.
147
148\f
149* Incompatible Lisp Changes in Emacs 24.1
150
151** Passing a nil argument to a minor mode function now turns the mode
152 ON unconditionally.
153\f
154* Lisp changes in Emacs 24.1
155
156** New completion style `substring'.
157
158** Image API
159
160*** When the image type is one of listed in `image-animated-types'
161and the number of sub-images in the image is more than one, then the
162new function `create-animated-image' creates an animated image where
163sub-images are displayed successively with the duration defined by
164`image-animate-max-time' and the delay between sub-images defined
165by the Graphic Control Extension of the image.
166
167*** `image-extension-data' is renamed to `image-metadata'.
168
169** Progress reporters can now "spin".
170The MIN-VALUE and MAX-VALUE arguments of `make-progress-reporter' can
171now be nil, or omitted. This makes a "non-numeric" reporter. Each
172time you call `progress-reporter-update' on that progress reporter,
173with a nil or omitted VALUE argument, the reporter message is
174displayed with a "spinning bar".
175
176\f
177* Changes in Emacs 24.1 on non-free operating systems
178
179\f
180----------------------------------------------------------------------
181This file is part of GNU Emacs.
182
183GNU Emacs is free software: you can redistribute it and/or modify
184it under the terms of the GNU General Public License as published by
185the Free Software Foundation, either version 3 of the License, or
186(at your option) any later version.
187
188GNU Emacs is distributed in the hope that it will be useful,
189but WITHOUT ANY WARRANTY; without even the implied warranty of
190MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
191GNU General Public License for more details.
192
193You should have received a copy of the GNU General Public License
194along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
195
196\f
197Local variables:
198mode: outline
199paragraph-separate: "[ \f]*$"
200end: