cosmetics, and changing of defconst to defcustom
[emacs.git] / etc / NEWS
blobe9d29c9ea876df1f8a8070a88156a6ab718c5558
1 GNU Emacs NEWS -- history of user-visible changes.
3 Copyright (C) 2010 Free Software Foundation, Inc.
4 See the end of the file for license conditions.
6 Please send Emacs bug reports to bug-gnu-emacs@gnu.org.
7 If possible, use M-x report-emacs-bug.
9 This file is about changes in Emacs version 24.
11 See files NEWS.23, NEWS.22, NEWS.21, NEWS.20, NEWS.19, NEWS.18,
12 and NEWS.1-17 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.
18 Temporary note:
19  +++ indicates that the appropriate manual has already been updated.
20  --- means no change in the manuals is called for.
21 When you add a new item, please add it without either +++ or ---
22 so we will look at it and add it to the manual.
25 * Installation Changes in Emacs 24.1
27 ** Configure links against libselinux if it is found.
28 You can disable this by using --without-selinux.
30 ---
31 ** By default, the installed Info and man pages are compressed.
32 You can disable this by configuring --without-compress-info.
34 ---
35 ** There are new configure options:
36 --with-mmdf, --with-mail-unlink, --with-mailhost.
37 These provide no new functionality, they just remove the need to edit
38 lib-src/Makefile by hand in order to use the associated features.
40 ---
41 ** There is a new configure option --with-crt-dir.
42 This is only useful if your crt*.o files are in a non-standard location.
45 * Startup Changes in Emacs 24.1
48 * Changes in Emacs 24.1
50 ** New emacsclient argument --parent-id ID can be used to open a
51 client frame in parent X window ID, via XEmbed.  This works like the
52 --parent-id argument to Emacs.
54 ** Completion can cycle, depending on completion-cycle-threshold.
56 ** auto-mode-case-fold is now enabled by default.
58 +++
59 ** Emacs now supports display and editing of bidirectional text.
61 See the node "Bidirectional Editing" in the Emacs Manual for some
62 initial documentation.
64 To 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.
67 The buffer-local variable `bidi-paragraph-direction', if non-nil,
68 forces each paragraph in the buffer to have its base direction
69 according to the value of this variable.  Possible values are
70 `right-to-left' and `left-to-right'.  If the value is nil (the
71 default), Emacs determines the base direction of each paragraph from
72 its text, as specified by the Unicode Bidirectional Algorithm.
74 The function `current-bidi-paragraph-direction' returns the actual
75 value of paragraph base direction at point.
77 Reordering of bidirectional text for display in Emacs is a "Full
78 bidirectionality" class implementation of the Unicode Bidirectional
79 Algorithm.
81 Note that some advanced display features, such as overlay strings and
82 `display' text properties, do not yet work correctly when
83 bidirectional text is reordered for display.
85 ** GTK scroll-bars are now placed on the right by default.
86 Use `set-scroll-bar-mode' to change this.
88 ** GTK tool bars can have just text, just images or images and text.
89 Customize `tool-bar-style' to choose style.  On a Gnome desktop, the default
90 is taken from the desktop settings.
92 ** Lucid menus and dialogs can display antialiased fonts if Emacs is built
93 with Xft.
95 ** Basic SELinux support has been added.
96 This requires Emacs to be linked with libselinux at build time.
98 *** Emacs preserves the SELinux file context when backing up, and
99 optionally when copying files. To this end, copy-file has an extra
100 optional argument, and backup-buffer and friends include the SELinux
101 context in their return values.
103 *** The new functions file-selinux-context and set-file-selinux-context
104 get and set the SELinux context of a file.
106 *** Tramp offers handlers for file-selinux-context and set-file-selinux-context
107 for remote machines which support SELinux.
109 ** New scrolling commands `scroll-up-command' and `scroll-down-command'
110 (bound to C-v/[next] and M-v/[prior]) does not signal errors at top/bottom
111 of buffer at first key-press (instead moves to top/bottom of buffer)
112 when a new variable `scroll-error-top-bottom' is non-nil.
114 ** New scrolling commands `scroll-up-line' and `scroll-down-line'
115 scroll a line instead of full screen.
117 ** New property `scroll-command' should be set on a command's symbol to
118 define it as a scroll command affected by `scroll-preserve-screen-position.
120 ** Trash changes
122 *** `delete-by-moving-to-trash' now only affects commands that specify
123 trashing.  This avoids inadvertently trashing temporary files.
125 *** Calling `delete-file' or `delete-directory' with a prefix argument
126 now forces true deletion, regardless of `delete-by-moving-to-trash'.
129 * Editing Changes in Emacs 24.1
131 ** completion-at-point is now an alias for complete-symbol.
133 ** mouse-region-delete-keys has been deleted.
135 * Changes in Specialized Modes and Packages in Emacs 24.1
137 ** Archive Mode has basic support to browse 7z archives.
139 ** In ido-mode, C-v is no longer bound to ido-toggle-vc.
140 The reason is that this interferes with cua-mode.
142 ** partial-completion-mode is now obsolete.
143 You can get a comparable behavior with:
144 (setq completion-styles '(partial-completion initials))
145 (setq completion-pcm-complete-word-inserts-delimiters t)
147 ** mpc.el: Can use pseudo tags of the form tag1|tag2 as a union of two tags.
148 ** Customize
150 *** Customize buffers now contain a search field.
151 The search is performed using `customize-apropos'.
152 To turn off the search field, set custom-search-field to nil .
154 *** Custom options now start out hidden if at their default values.
155 Use the arrow to the left of the option name to toggle visibility.
157 *** custom-buffer-sort-alphabetically now defaults to t.
159 *** The color widget now has a "Choose" button, which allows you to
160 choose a color via list-colors-display.
162 ** Dired-x
164 *** dired-jump and dired-jump-other-window called with a prefix argument
165 read a file name from the minibuffer instead of using buffer-file-name.
167 ** VC and related modes
169 *** New VC commands: vc-log-incoming, vc-log-outgoing, vc-find-conflicted-file.
171 **** vc-log-incoming for Git runs "git fetch" so that the necessary
172 data is available locally.
174 **** vc-log-incoming and vc-log-outgoing for Git require version 1.7 (or newer).
176 *** New key bindings: C-x v I and C-x v O bound to vc-log-incoming and
177 vc-log-outgoing, respectively.
179 *** vc-dir for Bzr supports viewing shelve contents and shelving snapshots.
181 *** Special markup can be added to log-edit buffers.
182 The log-edit buffers are expected to have a format similar to email messages
183 with headers of the form:
184   Author: <author of this change>
185   Summary: <one line summary of this change>
186   Fixes: <reference to the bug fixed by this change>
187 Some backends handle some of those headers specially, but any unknown header
188 is just left as is in the message, so it is not lost.
190 **** vc-git handles Author: and Date:
191 **** vc-hg handles  Author: and Date:
192 **** vc-bzr handles Author:, Date: and Fixes:
193 **** vc-mtn handles Author: and Date:
195 ** Directory local variables can apply to file-less buffers.
196 For example, adding "(diff-mode . ((mode . whitespace)))" to your
197 .dir-locals.el file, will turn on `whitespace-mode' for *vc-diff* buffers.
199 ** SQL Mode enhancements.
201 *** Several variables have been marked as safe local variables.
202 The variables `sql-product', `sql-user', `sql-server', and
203 `sql-database' can now be safely used as local variables.
205 *** Added ability to login with a port on MySQL.
206 The custom variable `sql-port' can be specified for connection to
207 MySQL servers.
209 *** Custom variables control prompting for login parameters.
210 Each supported product has a custom variable `sql-*-login-params'
211 which is a list of the parameters to be prompted for before a
212 connection is established.
214 *** Added option `sql-send-terminator'.
215 When set makes sure that each command sent with `sql-send-*' commands
216 are properly terminated and submitted to the SQL processor.
218 *** Added option `sql-oracle-scan-on'.
219 When set commands sent to Oracle's SQL*Plus are scanned for strings
220 starting with an ampersand and the user is asked for replacement
221 text.  In general, the SQL*Plus option SCAN should be set OFF under
222 SQL interactive mode.
224 *** SQL interactive mode will replace tabs with spaces.
225 This prevents the comand interpretter for MySQL and Postgres from
226 listing object name completions when being sent text via
227 `sql-send-*' functions.
229 *** An API for manipulating SQL product definitions has been added.
231 ** s-region.el is now declared obsolete, superceded by shift-select-mode
232 enabled by default in 23.1.
234 ** gdb-mi
236 *** GDB User Interface migrated to GDB Machine Interface and now
237 supports multithread non-stop debugging and debugging of several
238 threads simultaneously.
241 * New Modes and Packages in Emacs 24.1
243 ** smie.el is a package providing a simple generic indentation engine.
245 ** secrets.el is an implementation of the Secret Service API, an
246 interface to password managers like GNOME Keyring or KDE Wallet.  The
247 Secret Service API requires D-Bus for communication.  The command
248 `secrets-show-secrets' offers a buffer with a visualization of the
249 secrets.
251 ** notifications.el provides an implementation of the Desktop
252 Notifications API.  It requires D-Bus for communication.
255 * Incompatible Lisp Changes in Emacs 24.1
257 ** Test for special mode-class was moved from view-file to view-buffer.
259 ** Passing a nil argument to a minor mode function now turns the mode
260    ON unconditionally.
262 * Lisp changes in Emacs 24.1
264 ** frame-local variables cannot be let-bound any more.
265 ** prog-mode is a new major-mode meant to be the parent of programming mode.
266 ** define-minor-mode accepts a new keyword :variable.
268 ** `delete-file' and `delete-directory now accept optional arg TRASH.
269 Trashing is performed if TRASH and `delete-by-moving-to-trash' are
270 both non-nil.  Interactively, TRASH defaults to t, unless a prefix
271 argument is supplied (see Trash changes, above).
273 ** buffer-substring-filters is obsoleted by filter-buffer-substring-functions.
275 ** New completion style `substring'.
277 ** Image API
279 *** When the image type is one of listed in `image-animated-types'
280 and the number of sub-images in the image is more than one, then the
281 new function `create-animated-image' creates an animated image where
282 sub-images are displayed successively with the duration defined by
283 `image-animate-max-time' and the delay between sub-images defined
284 by the Graphic Control Extension of the image.
286 *** `image-extension-data' is renamed to `image-metadata'.
288 ** Isearch
290 *** New hook `isearch-update-post-hook' that runs in `isearch-update'.
292 ** Progress reporters can now "spin".
293 The MIN-VALUE and MAX-VALUE arguments of `make-progress-reporter' can
294 now be nil, or omitted.  This makes a "non-numeric" reporter.  Each
295 time you call `progress-reporter-update' on that progress reporter,
296 with a nil or omitted VALUE argument, the reporter message is
297 displayed with a "spinning bar".
300 * Changes in Emacs 24.1 on non-free operating systems
303 ----------------------------------------------------------------------
304 This file is part of GNU Emacs.
306 GNU Emacs is free software: you can redistribute it and/or modify
307 it under the terms of the GNU General Public License as published by
308 the Free Software Foundation, either version 3 of the License, or
309 (at your option) any later version.
311 GNU Emacs is distributed in the hope that it will be useful,
312 but WITHOUT ANY WARRANTY; without even the implied warranty of
313 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
314 GNU General Public License for more details.
316 You should have received a copy of the GNU General Public License
317 along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
320 Local variables:
321 mode: outline
322 paragraph-separate: "[  \f]*$"
323 end: