Bind `C-v' to `scroll-up-command' and `M-v' to `scroll-down-command'.
[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
aded53ff
GM
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
0bfd685e 33\f
eb199145 34* Startup Changes in Emacs 24.1
4a263588 35
0bfd685e 36\f
eb199145 37* Changes in Emacs 24.1
7841339b 38
2372f278
SM
39** auto-mode-case-fold is now enabled by default.
40
f4b6ba46
EZ
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
303500aa 65** GTK scroll-bars are now placed on the right by default.
52834b6b
CY
66Use `set-scroll-bar-mode' to change this.
67
1ecb2d3f
JD
68** Lucid menus and dialogs can display antialiased fonts if Emacs is built
69with Xft.
99852628 70
79ce172a
JL
71** New scrolling commands `scroll-up-command' and `scroll-down-command'
72(bound to [next] and [prior]) does not signal errors at top/bottom
73of buffer at first key-press (instead moves to top/bottom of buffer).
74
5a97d2da
JL
75** New scrolling commands `scroll-up-line' and `scroll-down-line'
76scroll a line instead of full screen.
77
9013a7f8
JL
78** New variable `scroll-preserve-screen-position-commands' defines
79a list of scroll command affected by `scroll-preserve-screen-position.
80
0bfd685e 81\f
eb199145 82* Editing Changes in Emacs 24.1
b350bdf2 83
9bae34bf 84\f
eb199145 85* Changes in Specialized Modes and Packages in Emacs 24.1
efeb796b 86
c1e25821
SM
87** partial-completion-mode is now obsolete.
88
18c812bd 89** mpc.el: Can use pseudo tags of the form tag1|tag2 as a union of two tags.
52834b6b
CY
90** Customize
91
92*** Customize buffers now contain a search field.
93The search is performed using `customize-apropos'.
94To turn off the search field, set custom-search-field to nil .
95
96*** Custom options now start out hidden if at their default values.
97Use the arrow to the left of the option name to toggle visibility.
98
99*** custom-buffer-sort-alphabetically now defaults to t.
100
101*** The color widget now has a "Choose" button, which allows you to
102choose a color via list-colors-display.
103
855a2294
DN
104** VC and related modes
105
31527c56
DN
106*** New VC commands: vc-log-incoming and vc-log-outgoing.
107
855a2294
DN
108*** vc-dir for Bzr supports viewing shelve contents and shelving snapshots.
109
09158997
DN
110*** Special markup can be added to log-edit buffers.
111
112**** For Bzr, adding an
113Author: NAME
114line will add "--author NAME" to the "bzr commit" command.
115
6aebd58c
DN
116**** For Git, adding an
117Author: NAME
118line will add "--author NAME" to the "git commit" command.
119
09158997
DN
120**** For Hg, adding an
121Author: NAME
122line will add "--user NAME" to the "hg commit" command.
123
8117868f
DN
124** Directory local variables can apply to file-less buffers.
125For example, adding "(diff-mode . ((mode . whitespace)))" to your
126.dir-locals.el file, will turn on `whitespace-mode' for *vc-diff*
127buffers.
128
5e418f17
JL
129** s-region.el is now declared obsolete, superceded by shift-select-mode
130enabled by default in 23.1.
131
691cf4a0
NR
132** gdb-mi
133
134*** GDB User Interface migrated to GDB Machine Interface and now
135supports multithread non-stop debugging and debugging of several
136threads simultaneously.
137
eb199145
GM
138\f
139* New Modes and Packages in Emacs 24.1
d445b3f8 140
7725ebb7
MA
141** secrets.el is an implementation of the Secret Service API, an
142interface to password managers like GNOME Keyring or KDE Wallet. The
143Secret Service API requires D-Bus for communication.
144
eb199145
GM
145\f
146* Incompatible Lisp Changes in Emacs 24.1
6dfcbe31 147
3b7e1d5f
SM
148** Passing a nil argument to a minor mode function now turns the mode
149 ON unconditionally.
eb199145
GM
150\f
151* Lisp changes in Emacs 24.1
9097e8af 152
00278747
SM
153** New completion style `substring'.
154
00fe2df1
JL
155** Image API
156
157*** When the image type is one of listed in `image-animated-types'
1546c559 158and the number of sub-images in the image is more than one, then the
00fe2df1
JL
159new function `create-animated-image' creates an animated image where
160sub-images are displayed successively with the duration defined by
161`image-animate-max-time' and the delay between sub-images defined
162by the Graphic Control Extension of the image.
163
1546c559
JL
164*** `image-extension-data' is renamed to `image-metadata'.
165
9326ba26
CY
166** Progress reporters can now "spin".
167The MIN-VALUE and MAX-VALUE arguments of `make-progress-reporter' can
168now be nil, or omitted. This makes a "non-numeric" reporter. Each
169time you call `progress-reporter-update' on that progress reporter,
170with a nil or omitted VALUE argument, the reporter message is
171displayed with a "spinning bar".
172
eb199145
GM
173\f
174* Changes in Emacs 24.1 on non-free operating systems
d53a60a6 175
05197f40 176\f
a933dad1 177----------------------------------------------------------------------
5b87ad55 178This file is part of GNU Emacs.
a933dad1 179
ab73e885 180GNU Emacs is free software: you can redistribute it and/or modify
5b87ad55 181it under the terms of the GNU General Public License as published by
ab73e885
GM
182the Free Software Foundation, either version 3 of the License, or
183(at your option) any later version.
5b87ad55
GM
184
185GNU Emacs is distributed in the hope that it will be useful,
186but WITHOUT ANY WARRANTY; without even the implied warranty of
187MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
188GNU General Public License for more details.
a933dad1 189
5b87ad55 190You should have received a copy of the GNU General Public License
ab73e885 191along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
a933dad1 192
05197f40 193\f
a933dad1
DL
194Local variables:
195mode: outline
196paragraph-separate: "[ \f]*$"
197end: