international/quail.el (quail-insert-kbd-layout): Fix the showing of untranslated...
[bpt/emacs.git] / etc / NEWS
CommitLineData
29b7722a 1GNU Emacs NEWS -- history of user-visible changes.
5b87ad55 2
eb199145 3Copyright (C) 2010 Free Software Foundation, Inc.
5b87ad55 4See the end of the file for license conditions.
a933dad1 5
893db5bc 6Please send Emacs bug reports to bug-gnu-emacs@gnu.org.
9a21d88b
KS
7If possible, use M-x report-emacs-bug.
8
eb199145 9This file is about changes in Emacs version 24.
9a21d88b 10
eb199145
GM
11See files NEWS.23, NEWS.22, NEWS.21, NEWS.20, NEWS.19, NEWS.18,
12and NEWS.1-17 for 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 16
adce950d
CY
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
eb199145 25* Installation Changes in Emacs 24.1
09e18d03 26
338648ad
GM
27** Configure links against libselinux if it is found.
28You can disable this by using --without-selinux.
29
30---
31** By default, the installed Info and man pages are compressed.
32You can disable this by configuring --without-compress-info.
33
aded53ff
GM
34---
35** There are new configure options:
36--with-mmdf, --with-mail-unlink, --with-mailhost.
37These provide no new functionality, they just remove the need to edit
38lib-src/Makefile by hand in order to use the associated features.
39
1ddac986
GM
40---
41** There is a new configure option --with-crt-dir.
42This is only useful if your crt*.o files are in a non-standard location.
43
0bfd685e 44\f
eb199145 45* Startup Changes in Emacs 24.1
4a263588 46
0bfd685e 47\f
eb199145 48* Changes in Emacs 24.1
7841339b 49
0191e222
CY
50** New emacsclient argument --parent-id ID can be used to open a
51client frame in parent X window ID, via XEmbed. This works like the
52--parent-id argument to Emacs.
53
902a6d8d
SM
54** Completion can cycle, depending on completion-cycle-threshold.
55
2372f278
SM
56** auto-mode-case-fold is now enabled by default.
57
f4b6ba46
EZ
58+++
59** Emacs now supports display and editing of bidirectional text.
f4b6ba46
EZ
60
61See the node "Bidirectional Editing" in the Emacs Manual for some
62initial documentation.
63
64To turn this on in any given buffer, set the buffer-local variable
65`bidi-display-reordering' to a non-nil value. The default is nil.
66
67The buffer-local variable `bidi-paragraph-direction', if non-nil,
68forces each paragraph in the buffer to have its base direction
69according to the value of this variable. Possible values are
70`right-to-left' and `left-to-right'. If the value is nil (the
71default), Emacs determines the base direction of each paragraph from
72its text, as specified by the Unicode Bidirectional Algorithm.
73
d20e1419
EZ
74The function `current-bidi-paragraph-direction' returns the actual
75value of paragraph base direction at point.
76
f4b6ba46
EZ
77Reordering of bidirectional text for display in Emacs is a "Full
78bidirectionality" class implementation of the Unicode Bidirectional
79Algorithm.
80
46759717
EZ
81Note that some advanced display features, such as overlay strings and
82`display' text properties, do not yet work correctly when
83bidirectional text is reordered for display.
84
303500aa 85** GTK scroll-bars are now placed on the right by default.
52834b6b
CY
86Use `set-scroll-bar-mode' to change this.
87
20fe03ad 88** GTK tool bars can have just text, just images or images and text.
d8004abe 89Customize `tool-bar-style' to choose style. On a Gnome desktop, the default
20fe03ad
JD
90is taken from the desktop settings.
91
1ecb2d3f
JD
92** Lucid menus and dialogs can display antialiased fonts if Emacs is built
93with Xft.
99852628 94
b7d65a5f
GM
95** Basic SELinux support has been added.
96This requires Emacs to be linked with libselinux at build time.
97
d8004abe
GM
98*** Emacs preserves the SELinux file context when backing up, and
99optionally when copying files. To this end, copy-file has an extra
100optional argument, and backup-buffer and friends include the SELinux
101context in their return values.
b7d65a5f
GM
102
103*** The new functions file-selinux-context and set-file-selinux-context
104get and set the SELinux context of a file.
105
a5bee597
MA
106*** Tramp offers handlers for file-selinux-context and set-file-selinux-context
107for remote machines which support SELinux.
108
79ce172a 109** New scrolling commands `scroll-up-command' and `scroll-down-command'
7b05466f
JL
110(bound to C-v/[next] and M-v/[prior]) does not signal errors at top/bottom
111of buffer at first key-press (instead moves to top/bottom of buffer)
112when a new variable `scroll-error-top-bottom' is non-nil.
79ce172a 113
5a97d2da
JL
114** New scrolling commands `scroll-up-line' and `scroll-down-line'
115scroll a line instead of full screen.
116
a4b000fb
JL
117** New property `scroll-command' should be set on a command's symbol to
118define it as a scroll command affected by `scroll-preserve-screen-position.
9013a7f8 119
f1a5d776
CY
120** Trash changes
121
122*** `delete-by-moving-to-trash' now only affects commands that specify
123trashing. This avoids inadvertently trashing temporary files.
124
125*** Calling `delete-file' or `delete-directory' with a prefix argument
126now forces true deletion, regardless of `delete-by-moving-to-trash'.
127
f0bf7c8e
JL
128** New option `list-colors-sort' defines the color sort order
129for `list-colors-display'.
130
44198b6e
CY
131** An Emacs Lisp package manager is now included.
132This is a convenient way to download and install additional packages,
133from elpa.gnu.org. `M-x package-list-packages' shows a list of
134packages, which can be selected for installation.
135
136*** By default, all installed packages are loaded and activated
137automatically when Emacs starts up. To disable this, set
138`package-enable-at-startup' to nil. To change which packages are
139loaded, customize `package-load-list'.
140
0bfd685e 141\f
eb199145 142* Editing Changes in Emacs 24.1
b350bdf2 143
a982c7ec
CY
144** completion-at-point is now an alias for complete-symbol.
145
53967e09 146** mouse-region-delete-keys has been deleted.
b9229673
CY
147
148** Deletion changes
149
150*** New option `delete-active-region'.
151If non-nil, C-d, [delete], and DEL delete the region if it is active
152and no prefix argument is given. If set to `kill', these commands
153kill instead.
154
155*** New command `delete-forward-char', bound to C-d and [delete].
156This is meant for interactive use, and obeys `delete-active-region';
157delete-char, meant for Lisp, does not obey `delete-active-region'.
158
159*** `delete-backward-char' is now a Lisp function.
160Apart from obeying `delete-active-region', its behavior is unchanged.
161However, the byte compiler now warns if it is called from Lisp; you
162should use delete-char with a negative argument instead.
163
164*** The option `mouse-region-delete-keys' has been deleted.
165
9bae34bf 166\f
eb199145 167* Changes in Specialized Modes and Packages in Emacs 24.1
efeb796b 168
b3671a51
JL
169** Archive Mode has basic support to browse 7z archives.
170
27d3cd56
CY
171** In ido-mode, C-v is no longer bound to ido-toggle-vc.
172The reason is that this interferes with cua-mode.
173
c1e25821 174** partial-completion-mode is now obsolete.
79ccd68f
SM
175You can get a comparable behavior with:
176(setq completion-styles '(partial-completion initials))
177(setq completion-pcm-complete-word-inserts-delimiters t)
c1e25821 178
18c812bd 179** mpc.el: Can use pseudo tags of the form tag1|tag2 as a union of two tags.
52834b6b
CY
180** Customize
181
182*** Customize buffers now contain a search field.
183The search is performed using `customize-apropos'.
184To turn off the search field, set custom-search-field to nil .
185
186*** Custom options now start out hidden if at their default values.
187Use the arrow to the left of the option name to toggle visibility.
188
189*** custom-buffer-sort-alphabetically now defaults to t.
190
191*** The color widget now has a "Choose" button, which allows you to
192choose a color via list-colors-display.
193
f5d6548a
JL
194** Dired-x
195
196*** dired-jump and dired-jump-other-window called with a prefix argument
197read a file name from the minibuffer instead of using buffer-file-name.
198
855a2294
DN
199** VC and related modes
200
e97a42c1 201*** New VC commands: vc-log-incoming, vc-log-outgoing, vc-find-conflicted-file.
31527c56 202
6941ffec
DN
203**** vc-log-incoming for Git runs "git fetch" so that the necessary
204data is available locally.
205
eccdfe5f
DN
206**** vc-log-incoming and vc-log-outgoing for Git require version 1.7 (or newer).
207
54d3626e
DN
208*** New key bindings: C-x v I and C-x v O bound to vc-log-incoming and
209vc-log-outgoing, respectively.
210
855a2294
DN
211*** vc-dir for Bzr supports viewing shelve contents and shelving snapshots.
212
09158997 213*** Special markup can be added to log-edit buffers.
e97a42c1
SM
214The log-edit buffers are expected to have a format similar to email messages
215with headers of the form:
216 Author: <author of this change>
217 Summary: <one line summary of this change>
218 Fixes: <reference to the bug fixed by this change>
219Some backends handle some of those headers specially, but any unknown header
220is just left as is in the message, so it is not lost.
09158997 221
fab43c76
DN
222**** vc-git handles Author: and Date:
223**** vc-hg handles Author: and Date:
224**** vc-bzr handles Author:, Date: and Fixes:
225**** vc-mtn handles Author: and Date:
226
8117868f
DN
227** Directory local variables can apply to file-less buffers.
228For example, adding "(diff-mode . ((mode . whitespace)))" to your
d8004abe 229.dir-locals.el file, will turn on `whitespace-mode' for *vc-diff* buffers.
8117868f 230
7492acc9
MM
231** SQL Mode enhancements.
232
233*** Several variables have been marked as safe local variables.
234The variables `sql-product', `sql-user', `sql-server', and
235`sql-database' can now be safely used as local variables.
236
237*** Added ability to login with a port on MySQL.
238The custom variable `sql-port' can be specified for connection to
239MySQL servers.
240
241*** Custom variables control prompting for login parameters.
242Each supported product has a custom variable `sql-*-login-params'
243which is a list of the parameters to be prompted for before a
244connection is established.
245
246*** Added option `sql-send-terminator'.
247When set makes sure that each command sent with `sql-send-*' commands
248are properly terminated and submitted to the SQL processor.
249
250*** Added option `sql-oracle-scan-on'.
251When set commands sent to Oracle's SQL*Plus are scanned for strings
252starting with an ampersand and the user is asked for replacement
253text. In general, the SQL*Plus option SCAN should be set OFF under
254SQL interactive mode.
255
256*** SQL interactive mode will replace tabs with spaces.
257This prevents the comand interpretter for MySQL and Postgres from
258listing object name completions when being sent text via
259`sql-send-*' functions.
260
261*** An API for manipulating SQL product definitions has been added.
262
5e418f17
JL
263** s-region.el is now declared obsolete, superceded by shift-select-mode
264enabled by default in 23.1.
265
691cf4a0
NR
266** gdb-mi
267
268*** GDB User Interface migrated to GDB Machine Interface and now
269supports multithread non-stop debugging and debugging of several
270threads simultaneously.
271
eb199145
GM
272\f
273* New Modes and Packages in Emacs 24.1
d445b3f8 274
5ad4bef5
SM
275** smie.el is a package providing a simple generic indentation engine.
276
7725ebb7
MA
277** secrets.el is an implementation of the Secret Service API, an
278interface to password managers like GNOME Keyring or KDE Wallet. The
065f2743
MA
279Secret Service API requires D-Bus for communication. The command
280`secrets-show-secrets' offers a buffer with a visualization of the
281secrets.
7725ebb7 282
f9e78150
MA
283** notifications.el provides an implementation of the Desktop
284Notifications API. It requires D-Bus for communication.
285
eb199145
GM
286\f
287* Incompatible Lisp Changes in Emacs 24.1
6dfcbe31 288
288cf4e9
SM
289** A backquote not followed by a space is now always treated as new-style.
290
fd5c9dfa 291** Test for special mode-class was moved from view-file to view-buffer.
288cf4e9
SM
292FIXME: This only says what was changed, but not what are the
293programmer-visible consequences.
fd5c9dfa 294
3b7e1d5f
SM
295** Passing a nil argument to a minor mode function now turns the mode
296 ON unconditionally.
6431f2e6
CY
297
298** During startup, Emacs no longer adds entries for `menu-bar-lines'
299and `tool-bar-lines' to `default-frame-alist' and
300`initial-frame-alist'. With these alist entries omitted, `make-frame'
301checks the value of the variable `menu-bar-mode'/`tool-bar-mode' to
302determine whether to create a menu-bar or tool-bar, respectively.
303If the alist entries are added, they override the value of
304`menu-bar-mode'/`tool-bar-mode'.
305
eb199145
GM
306\f
307* Lisp changes in Emacs 24.1
9097e8af 308
4e2db1fe 309** frame-local variables cannot be let-bound any more.
10dcc561 310** prog-mode is a new major-mode meant to be the parent of programming mode.
f44379e7
SM
311** define-minor-mode accepts a new keyword :variable.
312
f1a5d776
CY
313** `delete-file' and `delete-directory now accept optional arg TRASH.
314Trashing is performed if TRASH and `delete-by-moving-to-trash' are
315both non-nil. Interactively, TRASH defaults to t, unless a prefix
316argument is supplied (see Trash changes, above).
53967e09 317
8f92b8ad
SM
318** buffer-substring-filters is obsoleted by filter-buffer-substring-functions.
319
00278747
SM
320** New completion style `substring'.
321
00fe2df1
JL
322** Image API
323
324*** When the image type is one of listed in `image-animated-types'
1546c559 325and the number of sub-images in the image is more than one, then the
00fe2df1
JL
326new function `create-animated-image' creates an animated image where
327sub-images are displayed successively with the duration defined by
328`image-animate-max-time' and the delay between sub-images defined
329by the Graphic Control Extension of the image.
330
1546c559
JL
331*** `image-extension-data' is renamed to `image-metadata'.
332
a6020335
MH
333** Isearch
334
335*** New hook `isearch-update-post-hook' that runs in `isearch-update'.
336
9326ba26
CY
337** Progress reporters can now "spin".
338The MIN-VALUE and MAX-VALUE arguments of `make-progress-reporter' can
339now be nil, or omitted. This makes a "non-numeric" reporter. Each
340time you call `progress-reporter-update' on that progress reporter,
341with a nil or omitted VALUE argument, the reporter message is
342displayed with a "spinning bar".
343
eb199145
GM
344\f
345* Changes in Emacs 24.1 on non-free operating systems
d53a60a6 346
05197f40 347\f
a933dad1 348----------------------------------------------------------------------
5b87ad55 349This file is part of GNU Emacs.
a933dad1 350
ab73e885 351GNU Emacs is free software: you can redistribute it and/or modify
5b87ad55 352it under the terms of the GNU General Public License as published by
ab73e885
GM
353the Free Software Foundation, either version 3 of the License, or
354(at your option) any later version.
5b87ad55
GM
355
356GNU Emacs is distributed in the hope that it will be useful,
357but WITHOUT ANY WARRANTY; without even the implied warranty of
358MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
359GNU General Public License for more details.
a933dad1 360
5b87ad55 361You should have received a copy of the GNU General Public License
ab73e885 362along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
a933dad1 363
05197f40 364\f
a933dad1
DL
365Local variables:
366mode: outline
367paragraph-separate: "[ \f]*$"
368end: