Minor-mode doc fixes for ARG behavior
[emacs.git] / etc / NEWS
blob68922657567fff7c299c995a9e18d1d3578421e9
1 GNU Emacs NEWS -- history of user-visible changes.
3 Copyright (C) 2010-2012  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 ---
28 ** Emacs can be compiled with Gtk+ 3.0 if you pass --with-x-toolkit=gtk3
29 to configure.  Note that other libraries used by Emacs, RSVG and GConf,
30 also depend on Gtk+.  You can disable them with --without-rsvg and
31 --without-gconf.
33 ---
34 ** Emacs can be compiled with GnuTLS support.
35 This happens by default if a suitably recent version of the library is
36 found at build time.  To prevent this, use the configure option
37 `--without-gnutls'.  See below for GnuTLS features.
39 ---
40 ** Emacs can be compiled with SELinux support.
41 This happens by default if a suitably recent version of the library is
42 found at build time.  To prevent this, use the configure option
43 `--without-selinux'.  See below for SELinux features.
45 ---
46 ** Emacs can be compiled with ImageMagick support.
47 This happens by default if a suitably recent version of the library is
48 found at build time.  To prevent this, use the configure option
49 `--without-imagemagick'.  See below for ImageMagick features.
50 This feature is not available for the Nextstep or MS ports.
52 ---
53 ** Emacs can be compiled with libxml2 support.
54 This happens by default if a suitably recent version of the library is
55 found at build time.  To prevent this, use the configure option
56 `--without-xml2'.  See below for libxml2 features.
58 ---
59 ** There is a new configure option --with-wide-int.
60 With it, Emacs integers typically have 62 bits, even on 32-bit machines.
61 On 32-bit hosts, this raises the limit on buffer sizes from about 512 MiB
62 to about 2 GiB.
64 ---
65 ** By default, the installed Info and man pages are compressed.
66 You can disable this by configuring --without-compress-info.
68 ---
69 ** There are new configure options:
70 --with-mmdf, --with-mail-unlink, --with-mailhost.
71 These provide no new functionality, they just remove the need to edit
72 lib-src/Makefile by hand in order to use the associated features.
74 ---
75 ** There is a new configure option --enable-use-lisp-union-type.
76 This is only useful for Emacs developers to debug certain types of bugs.
77 This is not a new feature; only the configure flag is new.
79 ---
80 ** The standalone programs digest-doc and sorted-doc are removed.
81 Emacs now uses Lisp commands `doc-file-to-man' and `doc-file-to-info'.
83 ---
84 ** The standalone program `fakemail' is removed.
85 If you need it, feedmail.el provides a superset of the functionality.
88 * Startup Changes in Emacs 24.1
90 ---
91 ** The --unibyte, --multibyte, --no-multibyte, and --no-unibyte
92 command line arguments, and the EMACS_UNIBYTE environment variable, no
93 longer have any effect.  (They were declared obsolete in Emacs 23.)
95 +++
96 ** New command line option `--no-site-lisp' removes site-lisp directories
97 from load-path.  -Q now implies this.  This option does not affect the
98 EMACSLOADPATH environment variable (and hence has no effect for
99 Nextstep builds.)
102 * Changes in Emacs 24.1
105 ** auto-mode-case-fold is now enabled by default.
107 ** Completion
109 *** shell-mode uses pcomplete rules, with the standard completion UI.
111 *** Many packages have been changed to use `completion-at-point'
112 rather than their own completion code.
114 *** `completion-at-point' now handles tags and semantic completion.
116 *** Completion in a non-minibuffer now tries to detect the end of completion
117 and pops down the *Completions* buffer accordingly.
119 *** Completion can cycle, depending on completion-cycle-threshold.
121 *** New completion style `substring'.
123 *** Completion style can be set per-category `completion-category-overrides'.
125 *** Completion of buffers now uses substring completion by default.
127 ** Mail changes
130 *** The default of `send-mail-function' is now `sendmail-query-once',
131 which asks the user (once) whether to use the smtpmail package to send
132 email, or to use the old defaults that rely on external mail
133 facilities (`sendmail-send-it' on GNU/Linux and other Unix-like
134 systems, and `mailclient-send-it' on Windows).
136 *** smtpmail changes
138 **** smtpmail now uses encrypted connections (via STARTTLS) if the
139 mail server supports them.  It also uses the auth-source framework for
140 getting credentials.
142 **** The variable `smtpmail-auth-credentials' has been removed.
143 That variable used to have the default value "~/.authinfo", in which
144 case you won't see any difference.  But if you changed it to be a list
145 of user names and passwords, that setting is now ignored; you will be
146 prompted for the user name and the password, which will then be saved
147 to ~/.authinfo.  (To control where and how the credentials are stored,
148 see the auth-source manual.  You may want to change the auth-source
149 preferences if you want to store the credentials encrypted, for
150 instance.)
152 You can also manually copy the credentials to your ~/.authinfo file.
153 For example, if you had
155   (setq smtpmail-auth-credentials
156         '(("mail.example.org" 25 "jim" "s!cret")))
158 then the equivalent line in ~/.authinfo would be
160   machine mail.example.org port 25 login jim password s!cret
162 **** The variable `smtpmail-starttls-credentials' has been removed.
164 If you had that set, then you need to put
166   machine smtp.whatever.foo port 25 key "~/.my_smtp_tls.key" cert "~/.my_smtp_tls.cert"
168 in your ~/.authinfo file instead.
170 *** Mail mode changes (this is the old Mail mode, not Message mode)
172 **** New command `mail-add-attachment' for adding MIME attachments
174 **** The command `mail-attach-file' was renamed to `mail-insert-file'.
175 The old name is now an obsolete alias to the new name.
177 ** Emacs server and client changes
179 *** New option `server-port' specifies the port on which the Emacs
180 server should listen.
182 *** New emacsclient argument -q/--quiet suppresses some status messages.
184 *** New emacsclient argument --frame-parameters can be used to set the
185 frame parameters of a newly-created graphical frame.
187 *** If emacsclient shuts down as a result of Emacs signaling an
188 error, its exit status is 1.
190 *** New emacsclient argument --parent-id ID.
191 This opens a client frame in parent X window ID, via XEmbed, similar
192 to the --parent-id argument to Emacs.
194 ** Internationalization changes
197 *** Emacs now supports display and editing of bidirectional text.
199 Text that includes characters from right-to-left (RTL) scripts, such
200 as Arabic, Farsi, or Hebrew, is displayed in the correct visual order
201 as expected by users of those scripts.  This display reordering is a
202 "Full bidirectionality" class implementation of the Unicode
203 Bidirectional Algorithm.  Buffers with no RTL text should look exactly
204 the same as before.
206 For more information, see the node "Bidirectional Editing" in the
207 Emacs Manual.
210 **** New buffer-local variable `bidi-display-reordering'.
211 To disable display reordering in any given buffer, change this to nil.
214 **** New buffer-local variable `bidi-paragraph-direction'.
215 If nil (the default), Emacs determines the base direction of each
216 paragraph from its text, as specified by the Unicode Bidirectional
217 Algorithm.
219 Setting this to `right-to-left' or `left-to-right' forces a particular
220 base direction on each paragraph in the buffer.
222 Paragraphs whose base direction is right-to-left are displayed
223 starting at the right margin of the window.
226 *** Enhanced support for characters with no glyphs in available fonts.
227 If a character has no glyphs in any of the available fonts, Emacs
228 normally displays it either as a hexadecimal code in a box or as a
229 thin 1-pixel space.  In addition to these two methods, Emacs can
230 display these characters as empty box, as an acronym, or not display
231 them at all.  To change how these characters are displayed, customize
232 the variable `glyphless-char-display-control'.
234 On character terminals, these methods are used for characters that
235 cannot be encoded by the `terminal-coding-system'.
238 *** New input methods for Farsi: farsi and farsi-translit.
241 *** `nobreak-char-display' now also highlights Unicode hyphen chars
242 (U+2010 and U+2011).
245 *** New translation of the Emacs Tutorial in Hebrew is available.
246 Type `C-u C-h t' to choose it in case your language setup doesn't
247 automatically select it.
249 ** Improved GTK integration
251 *** GTK scroll-bars are now placed on the right by default.
252 Use `set-scroll-bar-mode' to change this.
254 *** GTK tool bars can have just text, just images or images and text.
255 Customize `tool-bar-style' to choose style.  On a Gnome desktop, the default
256 is taken from the desktop settings.
258 *** GTK tool bars can be placed on the left/right or top/bottom of the frame.
259 The frame-parameter tool-bar-position controls this.  It takes the values
260 top, left, right or bottom.  The Options => Show/Hide menu has entries
261 for this.
263 *** The colors for selected text (the `region' face) are taken from
264 the GTK theme when Emacs is built with GTK.
266 *** Emacs uses GTK tooltips by default if built with GTK.  You can turn that
267 off by customizing x-gtk-use-system-tooltips.
270 ** New basic faces `error', `warning', `success' are available to
271 highlight strings that indicate failure, caution or successful operation.
274 ** Lucid menus and dialogs can display antialiased fonts if Emacs is built
275 with Xft.  To change font, use the X resource font, for example:
276 Emacs.pane.menubar.font:  Courier-12
279 ** On graphical displays, the mode-line no longer ends in dashes.
280 Also, the first dash (which does not indicate anything) is just
281 displayed as a space.
284 ** Basic SELinux support has been added.
285 This requires Emacs to be linked with libselinux at build time.
288 *** Emacs preserves the SELinux file context when backing up, and
289 optionally when copying files. To this end, copy-file has an extra
290 optional argument, and backup-buffer and friends include the SELinux
291 context in their return values.
294 *** The new functions file-selinux-context and set-file-selinux-context
295 get and set the SELinux context of a file.
297 *** Tramp offers handlers for file-selinux-context and set-file-selinux-context
298 for remote machines which support SELinux.
300 ** Changes for exiting Emacs
302 *** The function kill-emacs is now run upon receipt of the signals
303 SIGTERM and SIGHUP, and upon SIGINT in batch mode.
305 *** kill-emacs-hook is now also run in batch mode.
306 If you have code that adds something to kill-emacs-hook, you should
307 consider if it is still appropriate to add it in the noninteractive case.
309 ** Scrolling changes
311 *** New scrolling commands `scroll-up-command' and `scroll-down-command'
312 (bound to C-v/[next] and M-v/[prior]) do not signal errors at top/bottom
313 of buffer at first key-press (instead move to top/bottom of buffer)
314 when `scroll-error-top-bottom' is non-nil.
316 *** New variable `scroll-error-top-bottom' (see above).
318 *** New scrolling commands `scroll-up-line' and `scroll-down-line'
319 scroll a line instead of full screen.
321 *** New property `scroll-command' should be set on a command's symbol to
322 define it as a scroll command affected by `scroll-preserve-screen-position'.
324 *** If you customize `scroll-conservatively' to a value greater than 100,
325 Emacs will never recenter point in the window when it scrolls due to
326 cursor motion commands or commands that move point (e.f., `M-g M-g').
327 Previously, you needed to use `most-positive-fixnum' as the value of
328 `scroll-conservatively' to achieve the same effect.
330 *** ``Aggressive'' scrolling now honors the scroll margins.
331 If you customize `scroll-up-aggressively' or
332 `scroll-down-aggressively' and move point off the window, Emacs now
333 scrolls the window so as to avoid positioning point inside the scroll
334 margin.
336 ** Trash changes
338 *** `delete-by-moving-to-trash' now only affects commands that specify
339 trashing.  This avoids inadvertently trashing temporary files.
341 *** Calling `delete-file' or `delete-directory' with a prefix argument
342 now forces true deletion, regardless of `delete-by-moving-to-trash'.
345 ** New option `list-colors-sort' defines the color sort order
346 for `list-colors-display'.
348 ** An Emacs Lisp package manager is now included.
349 This is a convenient way to download and install additional packages,
350 from a package repository at http://elpa.gnu.org.
352 *** `M-x list-packages' shows a list of packages, which can be
353 selected for installation.
355 *** New command `describe-package', bound to `C-h P'.
357 *** By default, all installed packages are loaded and activated
358 automatically when Emacs starts up.  To disable this, set
359 `package-enable-at-startup' to nil.  To change which packages are
360 loaded, customize `package-load-list'.
362 ** Custom Themes
364 *** `M-x customize-themes' lists Custom themes which can be enabled.
366 *** New option `custom-theme-load-path' is the load path for themes.
367 Emacs no longer looks for custom themes in `load-path'.  The default
368 is to search in `custom-theme-directory', followed by a built-in theme
369 directory named "themes/" in `data-directory'.
371 *** New option `custom-safe-themes' records known-safe theme files.
372 If a theme is not in this list, Emacs queries before loading it, and
373 offers to save the theme to `custom-safe-themes' automatically.  By
374 default, all themes included in Emacs are treated as safe.
376 ** The user option `remote-file-name-inhibit-cache' controls whether
377 the remote file-name cache is used for read access.
379 ** File- and directory-local variable changes
381 *** You can stop directory local vars from applying to subdirectories.
382 Add an element (subdirs . nil) to the alist portion of any variables
383 settings to indicate that the section should not apply to
384 subdirectories.
386 *** Directory local variables can apply to some file-less buffers.
387 Affected modes include dired, vc-dir, and log-edit.  For example,
388 adding "(diff-mode . ((mode . whitespace)))" to .dir-locals.el will
389 turn on `whitespace-mode' for *vc-diff* buffers.  Modes should call
390 `hack-dir-local-variables-non-file-buffer' to support this.
392 *** Using "mode: MINOR-MODE" to enable a minor mode is deprecated.
393 Instead, use "eval: (minor-mode 1)".
396 *** The variable `inhibit-first-line-modes-regexps' has been renamed
397 to `inhibit-local-variables-regexps'.  As the name suggests, it now
398 applies to ALL file local variables, not just -*- mode ones.
399 The associated `inhibit-first-line-modes-suffixes' has been renamed
400 in the corresponding way.
403 ** The variable `focus-follows-mouse' now always defaults to nil.
405 ** New primitive `secure-hash' that supports many secure hash algorithms
406 including md5, sha-1 and sha-2 (sha-224, sha-256, sha-384 and sha-512).
407 The elisp implementation sha1.el is removed. Feature sha1 is provided
408 by default.
410 ** Menu-bar changes
412 *** `menu-bar-select-buffer-function' lets you choose another operation
413 instead of `switch-to-buffer' when selecting an item in the Buffers menu.
415 ** Window changes
418 *** Resizing an Emacs frame now preserves proportional window sizes,
419 modulo restrictions like window minimum sizes and fixed-size windows.
421 *** The behavior of `display-buffer' is now customizable in detail.
423 **** New option `display-buffer-base-action' specifies a list of
424 user-determined display "actions" (functions and optional arguments
425 for choosing the displaying window).
427 This takes precedence over the default display action, which is
428 specified by `display-buffer-fallback-action'.
431 **** New option `display-buffer-alist' maps buffer name regexps to
432 display actions, taking precedence over `display-buffer-base-action'.
435 *** New option `window-combination-limit'.
436 The new option `window-combination-limit' allows to return the space
437 obtained for resizing or creating a window more reliably to the window
438 from which such space was obtained.
441 *** New option `window-combination-resize'.
442 The new option `window-combination-resize' allows to split a window that
443 otherwise cannot be split because it's too small by stealing space from
444 other windows in the same combination.  Subsequent resizing or deletion
445 of the window will resize all windows in the same combination as well.
448 *** New commands `maximize-window' and `minimize-window'.
449 These maximize and minimize the size of a window within its frame.
452 *** New commands `switch-to-prev-buffer' and `switch-to-next-buffer'.
453 These functions allow to navigate through the live buffers that have
454 been shown in a specific window.
456 ** The inactive minibuffer has its own major mode `minibuffer-inactive-mode'.
457 This is handy for minibuffer-only frames, and is also used for the "mouse-1
458 pops up *Messages*" feature, which can now easily be changed.
461 * Editing Changes in Emacs 24.1
463 ** Search changes
465 *** C-y in Isearch is now bound to isearch-yank-kill, instead of
466 isearch-yank-line.
468 *** M-y in Isearch is now bound to isearch-yank-pop, instead of
469 isearch-yank-kill.
471 *** M-s C-e in Isearch is now bound to isearch-yank-line.
474 ** New commands `count-words-region' and `count-words'.
476 *** `count-lines-region' is now an alias for `count-words-region',
477 bound to M-=, which shows the number of lines, words, and characters.
480 ** The default value of `backup-by-copying-when-mismatch' is now t.
483 ** The command `just-one-space' (M-SPC), if given a negative argument,
484 also deletes newlines around point.
486 ** Deletion changes
488 *** New option `delete-active-region'.
489 If non-nil, [delete] and DEL delete the region if it is active and no
490 prefix argument is given.  If set to `kill', these commands kill
491 instead.
493 *** New command `delete-forward-char', bound to [delete].
494 This is meant for interactive use, and obeys `delete-active-region'.
495 The command `delete-char' does not obey `delete-active-region'.
497 *** `delete-backward-char' is now a Lisp function.
498 Apart from obeying `delete-active-region', its behavior is unchanged.
499 However, the byte compiler now warns if it is called from Lisp; you
500 should use delete-char with a negative argument instead.
502 *** The option `mouse-region-delete-keys' has been deleted.
504 ** Selection changes.
506 The default handling of clipboard and primary selections was changed
507 to conform with modern X applications.  In short, most commands for
508 killing and yanking text now use the clipboard, while mouse commands
509 use the primary selection.
511 In the following, we provide a list of these changes, followed by a
512 list of steps to get the old behavior back if you prefer that.
515 *** `select-active-regions' now defaults to t.
516 Merely selecting text (e.g. with drag-mouse-1) no longer puts it in
517 the kill ring.  The selected text is put in the primary selection, if
518 the system possesses a separate primary selection facility (e.g. X).
521 **** `select-active-regions' also accepts a new value, `only'.
522 This means to only set the primary selection for temporarily active
523 regions (usually made by mouse-dragging or shift-selection);
524 "ordinary" active regions, such as those made with C-SPC followed by
525 point motion, do not alter the primary selection.
528 **** `mouse-drag-copy-region' now defaults to nil.
531 *** mouse-2 is now bound to `mouse-yank-primary'.
532 This pastes from the primary selection, ignoring the kill-ring.
533 Previously, mouse-2 was bound to `mouse-yank-at-click'.
536 *** `x-select-enable-clipboard' now defaults to t on all platforms.
538 *** `x-select-enable-primary' now defaults to nil.
539 Thus, commands that kill text or copy it to the kill-ring (such as
540 M-w, C-w, and C-k) also use the clipboard---not the primary selection.
543 **** The "Copy", "Cut", and "Paste" items in the "Edit" menu are now
544 exactly equivalent to, respectively M-w, C-w, and C-y.
547 **** Note that on MS-Windows, `x-select-enable-clipboard' was already
548 non-nil by default, as Windows does not support the primary selection
549 between applications.
552 *** To return to the previous behavior, do the following:
553 **** Change `select-active-regions' to nil.
554 **** Change `mouse-drag-copy-region' to t.
555 **** Change `x-select-enable-primary' to t (on X only).
556 **** Change `x-select-enable-clipboard' to nil.
557 **** Bind `mouse-yank-at-click' to mouse-2.
560 *** Support for X cut buffers has been removed.
562 *** X clipboard managers are now supported.
563 To inhibit this, change `x-select-enable-clipboard-manager' to nil.
566 ** New command `rectangle-number-lines', bound to `C-x r N', numbers
567 the lines in the current rectangle.  With a prefix argument, this
568 prompts for a number to count from and for a format string.
571 ** The default value of redisplay-dont-pause is now t
572 This makes Emacs feel more responsive to editing commands that arrive
573 at high rate, e.g. if you lean on some key, because stopping redisplay
574 in the middle (when this variable is nil) forces more expensive
575 updates later on, and Emacs appears to be unable to keep up.
578 ** The behavior of <TAB> for active regions in Text mode has changed.
579 In Text and related modes, typing <TAB> (`indent-for-tab-command')
580 when the region is active causes Emacs to indent all the lines in the
581 region, aligning them with the line previous to the first line in the
582 region (or with the left margin if there is no previous line).
585 * Changes in Specialized Modes and Packages in Emacs 24.1
588 ** Archive Mode has basic support for browsing and updating 7z archives.
591 ** browse-url has a new variable `browse-url-mailto-function'
592 specifies how mailto: URLs are handled.  The default is `browse-url-mail'.
595 ** BibTeX mode
597 *** BibTeX mode now supports biblatex.
598 Use the variable bibtex-dialect to select support for different BibTeX
599 dialects.  bibtex-entry-field-alist is now an obsolete alias for
600 bibtex-BibTeX-entry-alist.
602 *** New command `bibtex-search-entries' bound to C-c C-a.
604 *** New `bibtex-entry-format' option `sort-fields', disabled by default.
606 *** New variable `bibtex-search-entry-globally'.
608 ** Calendar, Diary, and Appt
611 *** Diary entries can contain non-printing `comments'.
612 See the variable `diary-comment-start'.
615 *** Appointments can specify their individual warning times.
616 See the variable `appt-warning-time-regexp'.
619 *** The function specified by `appt-disp-window-function' may be passed
620 lists of arguments if multiple appointments are due at similar times.
621 If you are using a custom function for this, you should update it.
624 *** New function `diary-hebrew-birthday'.
627 *** Elements of `calendar-day-abbrev-array' and `calendar-month-abbrev-array'
628 may no longer be nil, but must all be strings.
631 *** The obsolete (since Emacs 22.1) method of enabling the appt package
632 by adding appt-make-list to diary-hook has been removed.  Use appt-activate.
635 *** Some appt variables (obsolete since Emacs 22.1) have been removed:
636 appt-issue-message (use the function appt-activate)
637 appt-visible/appt-msg-window (use the variable appt-display-format)
640 *** Some diary function aliases (obsolete since Emacs 22.1) have been removed:
641 view-diary-entries, list-diary-entries, show-all-diary-entries
643 ** CC Mode (C, C++, etc.)
645 *** New feature to "guess" the style in an existing buffer.
647 ** comint and modes derived from it use the generic completion code.
649 ** Compilation mode
651 *** Compilation mode can be used without font-lock-mode.
652 `compilation-parse-errors-function' is now obsolete.
654 *** `compilation-filter-start' is let-bound to the start of the text
655 inserted by the compilation filter function, when calling
656 compilation-filter-hook.
658 *** `compilation-error-screen-columns' is obeyed in the editing buffer.
659 So programming language modes can set it, whereas previously only the value
660 in the *compilation* buffer was used.
662 ** Customize
665 *** Customize buffers now contain a search field.
666 The search is performed using `customize-apropos'.
667 To turn off the search field, set custom-search-field to nil.
670 *** Custom options now start out hidden if at their default values.
671 Use the arrow to the left of the option name to toggle visibility.
673 *** custom-buffer-sort-alphabetically now defaults to t.
676 *** The color widget now has a "Choose" button, which allows you to
677 choose a color via list-colors-display.
679 ** D-Bus
681 *** It is possible now, to access alternative buses than the default
682 system or session bus.
684 *** dbus-register-{service,method,property}
685 The -method and -property functions do not automatically register
686 names anymore.
688 The new function dbus-register-service registers a service known name
689 on a D-Bus without simultaneously registering a property or a method.
691 ** Dired-x
693 *** dired-jump and dired-jump-other-window called with a prefix argument
694 read a file name from the minibuffer instead of using buffer-file-name.
697 *** The `dired local variables' feature provided by Dired-x is obsolete.
698 The standard directory local variables feature replaces it.
700 ** ERC changes
702 *** New vars `erc-autojoin-timing' and `erc-autojoin-delay'.
703 If the value of `erc-autojoin-timing' is 'ident, ERC autojoins after a
704 successful NickServ identification, or after `erc-autojoin-delay'
705 seconds.  The default value, 'ident, means to autojoin immediately
706 after connecting.
708 *** New variable `erc-coding-system-precedence': If we use `undecided'
709 as the server coding system, this variable will then be consulted.
710 The default is to decode strings that can be decoded as utf-8 as
711 utf-8, and do the normal `undecided' decoding for the rest.
713 ** Eshell changes
716 *** The default value of `eshell-directory-name' has changed
717 to be an "eshell" directory in `user-emacs-directory'.
718 The old "~/.eshell/" directory is still used if it exists, though.
720 ** gdb-mi
722 *** The GDB User Interface has been migrated to GDB Machine Interface.
723 It now supports multithread non-stop debugging and simultaneous
724 debugging of several threads.
726 ** Image mode
729 *** RET (`image-toggle-animation') toggles animation, if applicable.
730 Animation plays once, unless the option `image-animate-loop' is non-nil.
732 ** Info
734 *** New command `info-display-manual' displays an Info manual
735 specified by its name.  If that manual is already visited in some Info
736 buffer within the current session, the command will display that
737 buffer.  Otherwise, it will load the manual and display it.  This is
738 handy if you have many manuals in many Info buffers, and don't
739 remember the name of the buffer visiting the manual you want to
740 consult.
743 *** `e' is now bound to `end-of-buffer' rather than to `Info-edit'.
744 This is for compatibility with the stand-alone Info reader program,
745 and also because `Info-edit' is a rarely used command that is disabled
746 by default.
749 ** MH-E has been upgraded to MH-E version 8.3.1.
750 See MH-E-NEWS for details.
752 ** Modula-2 mode provides auto-indentation.
754 ** mpc.el: Can use pseudo tags of the form tag1|tag2 as a union of two tags.
756 ** Prolog mode has been completely revamped, with lots of additional
757 functionality such as more intelligent indentation, electricity, support for
758 more variants, including Mercury, and a lot more.
760 ** Rmail
762 *** The command `rmail-epa-decrypt' decrypts OpenPGP data
763 in the Rmail incoming message.
766 *** The variable `rmail-message-filter' no longer has any effect.
767 This change was made in Emacs 23.1 but was not advertised at the time.
768 Try using `rmail-show-message-hook' instead.
770 ** Shell mode
772 *** Shell mode uses pcomplete rules, with the standard completion UI.
774 *** The `shell' command prompts for the shell path name if the default
775 directory is a remote file name and neither the environment variable
776 $ESHELL nor the variable `explicit-shell-file-name' is set.
779 ** SQL Mode enhancements.
781 *** `sql-dialect' is an alias for `sql-product'.
783 *** New variable `sql-port' specifies the port number for connecting
784 to a MySQL or Postgres server.
786 *** The command `sql-product-interactive' now takes a prefix argument,
787 which causes it to prompt for an SQL product instead of the current
788 value of `sql-product'.
790 *** Product-specific SQL interactive commands now take prefix args.
791 These commands (`sql-sqlite', `sql-postgres', `sql-mysql', etc.),
792 given a prefix argument, prompt for a name for the SQL interactive
793 buffer.  This reduces the need for calling `sql-rename-buffer'.
795 *** SQL interactive modes suppress command continuation prompts, and
796 replace tabs with spaces.  The first change impacts multiple line SQL
797 statements entered with C-j between each line, statements yanked into
798 the buffer and statements sent with `sql-send-*' functions.  The
799 second change prevents the MySQL and Postgres interpreters from
800 listing object name completions when sent text via `sql-send-*'
801 functions.
803 *** New custom variables control prompting for login parameters.
804 Each supported product has a custom variable `sql-*-login-params',
805 which is a list of the parameters to be prompted for before a
806 connection is established.
808 *** New variable `sql-connection-alist' for login parameter values.
809 This can be used to store different username, database and server
810 values.  Connections defined in this variable appear in the submenu
811 SQL->Start... for making new SQLi sessions.
813 *** New command `sql-connect' starts a predefined SQLi session,
814 using the login parameters from `sql-connection-alist'.
816 *** New "Save Connection" menu item in SQLi buffers.
817 This gathers the login params specified for the SQLi session, if it
818 was not started by a connection, and saves them as a new connection.
820 *** Commands for listing database objects and details.
821 In an SQLi session, you can get a list of objects in the database.
822 The contents of these lists are product specific.
824 **** `C-c C-l a' or the "SQL->List all objects" menu item
825 lists all the objects in the database.  With a prefix argument, it
826 displays additional details or extend the listing to include other
827 schemas objects.
829 **** `C-c C-l t' or the "SQL->List Table details" menu item
830 prompts for the name of a database table or view and displays the list
831 of columns in the relation.  With a prefix argument, it displays
832 additional details about each column.
834 *** New options `sql-send-terminator' and `sql-oracle-scan-on'.
836 *** An API for manipulating SQL product definitions has been added.
838 ** TeX modes
840 *** latex-electric-env-pair-mode keeps \begin..\end matched on the fly.
842 ** Tramp
844 *** There exists a new inline access method "ksu" (kerberized su).
846 *** The following access methods are discontinued: "ssh1_old",
847 "ssh2_old", "scp1_old", "scp2_old", "imap", "imaps" and "fish".
849 *** The option `ange-ftp-binary-file-name-regexp' has changed its
850 default value to "".
852 ** `url-queue-retrieve' downloads web pages asynchronously, but allow
853 controlling the degree of parallelism.
855 ** VC and related modes
858 *** Support for pulling on distributed version control systems.
859 `C-x v +' (`vc-pull') runs a "pull" operation, if it is supported, to
860 update the current branch and working tree.  A prefix argument means
861 to prompt the user for specifics, e.g. a pull location.
863 **** `vc-update' is now an alias for `vc-pull'.
865 **** Currently supported by Bzr, Git, and Mercurial.
868 *** Support for merging on distributed version control systems.
869 The vc-merge command now runs a "merge" operation, if it is supported,
870 to merge changes from another branch into the current one.  It prompts
871 for specifics, e.g. a merge source.
873 **** Currently supported for Bzr, Git, and Mercurial.
876 *** New option `vc-revert-show-diff' controls whether `vc-revert'
877 shows a diff while querying the user.  It defaults to t.
880 *** Log entries in some Log View buffers can be toggled to display a
881 longer description by typing RET (log-view-toggle-entry-display).
882 In the Log View buffers made by `C-x v L' (vc-print-root-log), you can
883 use this to display the full log entry for the revision at point.
885 **** Currently supported for Bzr, Git, and Mercurial.
887 **** Packages using Log View mode can enable this functionality by
888 binding `log-view-expanded-log-entry-function' to a suitable function.
891 *** New command `vc-ediff' allows visual comparison of two revisions
892 of a file similar to `vc-diff', but using ediff backend.
895 *** The option `vc-initial-comment' was removed in Emacs 23.2, but
896 this was not advertised at the time.
899 *** `vc-toggle-read-only' is an obsolete alias for `toggle-read-only'.
900 Since Emacs 23, it has done the same thing as `toggle-read-only', but
901 this was not advertised at the time.
903 ** FIXME: xdg-open for browse-url and reportbug, 2010/08.
905 ** Obsolete modes
907 *** partial-completion-mode is obsolete.
908 You can get a comparable behavior with:
909 (setq completion-styles '(partial-completion initials))
910 (setq completion-pcm-complete-word-inserts-delimiters t)
912 *** pc-mode.el is obsolete.
914 *** sregex.el is obsolete, since rx.el is a strict superset.
916 *** s-region.el and pc-select are obsolete.
917 They are superseded by shift-select-mode enabled by default in 23.1.
919 ** Miscellaneous
922 *** The Landmark game is now invoked with `landmark', not `lm'.
925 *** In `ido-file-completion-map', C-v is no longer bound to ido-toggle-vc.
926 (This interfered with cua-mode.)
929 *** f90.el has some support for Fortran 2008 syntax.
932 *** `copyright-fix-years' can optionally convert consecutive years to ranges.
935 *** New command `nato-region' converts text to NATO phonetic alphabet.
938 * New Modes and Packages in Emacs 24.1
941 ** Occur Edit mode applies edits made in *Occur* buffers to the
942 original buffers.  It is bound to "e" in Occur mode.
944 ** New global minor modes electric-pair-mode, electric-indent-mode,
945 and electric-layout-mode.
947 ** tabulated-list.el provides a generic major mode for tabulated data,
948 from which other modes can be derived.
950 ** pcase.el provides the ML-style pattern matching macro `pcase'.
952 ** secrets.el is an implementation of the Secret Service API, an
953 interface to password managers like GNOME Keyring or KDE Wallet.  The
954 Secret Service API requires D-Bus for communication.  The command
955 `secrets-show-secrets' offers a buffer with a visualization of the
956 secrets.
958 ** notifications.el provides an implementation of the Desktop
959 Notifications API.  It requires D-Bus for communication.
961 ** soap-client.el supports access to SOAP web services from Emacs.
962 soap-inspect.el is an interactive inspector for SOAP WSDL structures.
964 ** xmodmap-generic-mode for xmodmap files.
966 ** New emacs-lock.el package.
967 (The pre-existing one has been renamed to old-emacs-lock.el and moved
968 to obsolete/.)  Now, Emacs Lock is a proper minor mode
969 `emacs-lock-mode'.  Protection against exiting Emacs and killing the
970 buffer can be set separately.  The mechanism for auto turning off
971 protection for buffers with inferior processes has been generalized.
974 * Incompatible Lisp Changes in Emacs 24.1
977 ** `char-direction-table' and the associated function `char-direction'
978 were deleted.  They were buggy and inferior to the new support of
979 bidirectional editing introduced in Emacs 24.  If you need the
980 bidirectional properties of a character, use `get-char-code-property'
981 with the last argument `bidi-class'.
984 ** `copy-directory' now copies the source directory as a subdirectory
985 of the target directory, if the latter is an existing directory.  The
986 new optional arg COPY-CONTENTS, if non-nil, makes the function copy
987 the contents directly into a pre-existing target directory.
989 ** `compose-mail' now accepts an optional 8th arg, RETURN-ACTION, and
990 passes it to the mail user agent function.  This argument specifies an
991 action for returning to the caller after finishing with the mail.
992 This is currently used by Rmail to delete a mail window.
994 ** For mouse click input events in the text area, the Y pixel
995 coordinate in the POSITION list now counts from the top of the text
996 area, excluding any header line.  Previously, it counted from the top
997 of the header line.
1000 ** Support for "old-style" backquotes, which have been obsolete for
1001 more than 10 years, has been further reduced.  Now a backquote not
1002 followed by a space is always treated as a "new-style" backquote.
1003 Please consider completely removing all "old-style" backquotes from
1004 your code as a matter of some urgency.  If your code uses backquotes
1005 as documented in the Elisp manual, and compiles without warning, then
1006 you have nothing to do in this regard.  Code not following the
1007 appropriate conventions may fail to compile.  The most common cause of
1008 trouble seems to be an old-style backquote followed by a newline.
1011 ** view-buffer now treats special mode-class in the same way that
1012 view-file has since Emacs 22 (ie, it won't enable View mode if the
1013 major-mode is special).
1016 ** Passing a nil argument to a minor mode defined by define-minor-mode
1017 now turns the mode ON unconditionally.  This is so that you can write, e.g.
1018   (add-hook 'text-mode-hook 'foo-minor-mode)
1019 to enable foo-minor-mode in Text mode buffers, thus removing the need
1020 for `turn-on-foo-minor-mode' style functions.
1023 ** During startup, Emacs no longer adds entries for `menu-bar-lines'
1024 and `tool-bar-lines' to `default-frame-alist' and `initial-frame-alist'.
1025 With these alist entries omitted, `make-frame' checks the value of the
1026 variable `menu-bar-mode'/`tool-bar-mode' to determine whether to create
1027 a menu-bar or tool-bar, respectively.  If the alist entries are added,
1028 they override the value of `menu-bar-mode'/`tool-bar-mode'.
1031 ** Regions created by mouse dragging are now normal active regions,
1032 similar to the ones created by shift-selection.  In previous Emacs
1033 versions, these regions were delineated by `mouse-drag-overlay', which
1034 has now been removed.
1037 ** The fourth argument of filter-buffer-substring, which says to remove
1038 text properties from the final result, has been removed.
1039 Eg simply pass the result through substring-no-properties if you need this.
1042 ** cl.el no longer provides `cl-19'.
1044 ** The menu bar bindings's caches are not used any more.
1045 Use (where-is-internal <def> nil t) instead.
1048 ** The following obsolete (mostly since at least 21.1) functions and aliases
1049 have been removed (the appropriate new function is given in parentheses):
1050 comint-kill-output (comint-delete-output),
1051 decompose-composite-char (char-to-string),
1052 outline-visible (outline-invisible-p),
1053 internal-find-face (facep), internal-get-face (facep and check-face),
1054 frame-update-faces (not needed),
1055 frame-update-face-colors (frame-set-background-mode),
1056 x-frob-font-weight and x-frob-font-slant (appropriate make-face-* function),
1057 x-make-font-bold and x-make-font-demibold (make-face-bold),
1058 x-make-font-italic and x-make-font-oblique (make-face-italic),
1059 x-make-font-bold-italic (make-face-bold-italic),
1060 x-make-font-unbold (make-face-unbold),
1061 x-make-font-unitalic (make-face-unitalic),
1062 mldrag-drag-mode-line (mouse-drag-mode-line),
1063 mldrag-drag-vertical-line (mouse-drag-vertical-line),
1064 iswitchb-default-keybindings (iswitchb-mode), char-bytes (== 1),
1065 isearch-return-char (isearch-printing-char), make-local-hook (not needed)
1068 ** The following obsolete (mostly since at least 21.1) variables and varaliases
1069 have been removed (the appropriate new variable is given in parentheses):
1070 checkdoc-minor-keymap (checkdoc-minor-mode-map),
1071 vc-header-alist (vc-BACKEND-header), directory-sep-char (== ?/)
1072 font-lock-defaults-alist (font-lock-defaults), and e (float-e).
1075 ** The following obsolete files were removed:
1076 sc.el, x-menu.el, rnews.el, rnewspost.el
1078 ** FIXME finder-inf.el changes.
1081 * Lisp changes in Emacs 24.1
1084 ** Code can now use lexical scoping by default instead of dynamic scoping.
1085 The `lexical-binding' variable lets code use lexical scoping for local
1086 variables.  It is typically set via a file-local variable in the first
1087 line of the file, in which case it applies to all the code in that file.
1089 *** `eval' takes a new optional argument `lexical' to choose the new lexical
1090 binding instead of the old dynamic binding mode.
1092 *** Lexically scoped interpreted functions are represented with a new form
1093 of function value which looks like (closure ENV ARGS &rest BODY).
1095 *** New macro `letrec' to define recursive local functions.
1097 *** New function `special-variable-p' to check whether a variable is
1098 declared as dynamically bound.
1101 ** An Emacs Lisp testing tool is now included.
1102 Emacs Lisp developers can use this tool to write automated tests for
1103 their code.  See the ERT info manual for details.
1105 ** Changes for bidirectional display and editing
1108 *** New function `current-bidi-paragraph-direction'.
1109 This returns the actual value of base direction of the paragraph at
1110 point.
1113 *** New function `bidi-string-mark-left-to-right'.
1114 Given a string containing characters from right-to-left (RTL) scripts,
1115 this function returns another string which can be safely inserted into
1116 a buffer, such that any following text will be always displayed to the
1117 right of that string.  (This works by appending the Unicode
1118 "LEFT-TO-RIGHT MARK" character when the argument string might need that.)
1120 This is useful when the buffer has overall left-to-right (LTR)
1121 paragraph direction and you need to insert a string whose contents and
1122 directionality are not known in advance, without disrupting the layout
1123 of the line.
1125 ** Window changes
1127 *** Window tree functions are accessible in Elisp.
1128 Functions are provided to return the parent, siblings or child windows
1129 of any window including internal windows (windows not associated with a
1130 buffer) in the window tree.
1132 **** New function `window-valid-p' gives non-nil for live and internal
1133 windows.
1135 **** Window manipulation can deal with internal windows.
1136 Many window handling functions like `split-window', `delete-window', or
1137 `delete-other-windows' as well as the window resizing functions can now
1138 act on any window including internal ones.
1140 *** window-total-height/-width vs window-body-height/-width.
1141 The function `window-height' has been renamed to `window-total-height'
1142 and `window-width' has been renamed to `window-body-width'.  The old
1143 names are provided as aliases.  Two new functions `window-total-width'
1144 and `window-body-height' are provided.
1146 *** Window parameters specific to window handling functions.
1147 For each window you can specify a parameter to override the default
1148 behavior of a number of functions like `split-window', `delete-window'
1149 and `delete-other-windows'.  The variable `ignore-window-parameters'
1150 allows to ignore processing such parameters.
1152 *** New semantics of third argument of `split-window'.
1153 The third argument of `split-window' has been renamed to SIDE and can be
1154 set to any of the values 'below, 'right, 'above, or 'left to make the
1155 new window appear on the corresponding side of the window that shall be
1156 split.  Any other value of SIDE will cause `split-window' to split the
1157 window into two side-by-side windows as before.
1159 *** Window resizing functions.
1160 A new standard function for resizing windows called `window-resize' has
1161 been introduced.  This and all other functions for resizing windows no
1162 longer delete any windows when they become too small.
1164 *** Deleting the selected window now selects the most recently selected
1165 live window on that frame instead.
1167 *** `adjust-window-trailing-edge' adjustments.
1168 `adjust-window-trailing-edge' can now deal with fixed-size windows and
1169 is able to resize other windows if a window adjacent to the trailing
1170 edge cannot be shrunk any more.  This makes its behavior more similar to
1171 that of Emacs 21 without compromising, however, its inability to delete
1172 windows which was introduced in Emacs 22.
1174 *** Window-local buffer lists.
1175 Windows now have local buffer lists.  This means that removing a buffer
1176 from display in a window will preferably show the buffer previously
1177 shown in that window with its previous window-start and window-point
1178 positions.  This also means that the same buffer may be automatically
1179 shown twice even if it already appears in another window.
1181 *** `switch-to-buffer' has a new optional argument FORCE-SAME-WINDOW,
1182 which if non-nil requires the buffer to be displayed in the currently
1183 selected window, signaling an error otherwise.  If nil, another window
1184 can be used, e.g. if the selected one is strongly dedicated.
1186 *** `split-window-vertically' and `split-window-horizontally' renamed
1187 to `split-window-below' and `split-window-right' respectively.
1188 The old names are kept as aliases.
1190 *** Display actions
1192 **** The second arg to `display-buffer' and `pop-to-buffer' is now
1193 named ACTION, and takes a display action of the same form as
1194 `display-buffer-base-action' (see Changes, above).  A non-nil,
1195 non-list value is treated specially, as the old meaning.
1197 **** New variable `display-buffer-overriding-action'.
1199 **** The procedure of `display-buffer' etc. to choose a window is
1200 determined by combining `display-buffer-overriding-action',
1201 `display-buffer-alist', the ACTION arg, `display-buffer-base-action',
1202 and `display-buffer-fallback-action'.  The second and fourth of these
1203 are user-customizable variables.
1205 See the docstring of `display-buffer' for details.
1208 *** New behavior of `quit-window'.
1209 The behavior of `quit-window' has been changed in order to restore the
1210 state before the last buffer display operation in that window.
1213 *** The new option `frame-auto-hide-function' lets you choose between
1214 iconifying or deleting a frame when burying a buffer shown in a dedicated
1215 frame or quitting a window showing a buffer in a frame of its own.
1218 *** New functions `window-state-get' and `window-state-put'.
1219 These functions allow to save and restore the state of an arbitrary
1220 frame or window as an Elisp object.
1222 ** Completion
1224 *** New variable completion-extra-properties used to specify extra properties
1225 of the current completion:
1226 - :annotate-function, same as the old completion-annotate-function.
1227 - :exit-function, function to call after completion took place.
1229 *** Functions on completion-at-point-functions can return any of the properties
1230 valid for completion-extra-properties.
1232 *** completion-annotate-function is obsolete.
1234 *** New `metadata' method for completion tables.  The metadata thus returned
1235 can specify various details of the data returned by `all-completions':
1236 - `category' is the kind of objects returned (e.g., `buffer', `file', ...),
1237   used to select a style in completion-category-overrides.
1238 - `annotation-function' to add annotations in *Completions*.
1239 - `display-sort-function' to specify how to sort entries in *Completions*.
1240 - `cycle-sort-function' to specify how to sort entries when cycling.
1242 *** minibuffer-local-filename-must-match-map is not used any more.
1243 Instead, the bindings in minibuffer-local-filename-completion-map are
1244 combined with minibuffer-local-must-match-map.
1246 *** New variable `completing-read-function' allows overriding the
1247 behavior of `completing-read'.
1250 ** `glyphless-char-display' can now distinguish between graphical and
1251 text terminal display, via a char-table entry that is a cons cell.
1253 ** `open-network-stream' can now be used to open an encrypted stream.
1254 It now accepts an optional `:type' parameter for initiating a TLS
1255 connection, directly or via STARTTLS.  To do STARTTLS, additional
1256 parameters (`:end-of-command', `:success', `:capabilities-command')
1257 must also be supplied.
1260 ** pre/post-command-hook are not reset to nil upon error.
1261 Instead, the offending function is removed.
1263 ** New hook types
1266 *** New function `run-hook-wrapped' for running an abnormal hook by
1267 passing the hook functions as arguments to a "wrapping" function.
1268 Like `run-hook-with-args-until-success', it stops at the first
1269 non-nil return value.
1272 *** New macro `with-wrapper-hook' for running an abnormal hook as a
1273 set of "wrapping" filters, similar to around advice.
1274 (A version of this macro was actually added in Emacs 23.2 but was not
1275 advertised at the time.)
1278 ** The macros `condition-case-no-debug' and `with-demoted-errors' were
1279 added in Emacs 23.1, but not advertised.
1282 ** The new function `server-eval-at' allows evaluation of Lisp forms on
1283 named Emacs server instances, using TCP sockets.
1286 ** `call-process' and `call-process-region' allow a `(:file "file")' spec
1287 to redirect STDOUT to a file.
1290 ** Variable `stack-trace-on-error' removed.
1291 Also the debugger can now "continue" from an error, which means it will jump
1292 to the error handler as if the debugger had not been invoked instead of
1293 jumping all the way to the top-level.
1296 ** The function format-time-string now supports the %N directive, for
1297 higher-resolution time stamps.
1300 ** New function `read-char-choice' reads a restricted set of characters,
1301 discarding any inputs not inside the set.
1304 ** `image-library-alist' is renamed to `dynamic-library-alist'.
1305 The variable is now used to load all kind of supported dynamic libraries,
1306 not just image libraries.  The previous name is still available as an
1307 obsolete alias.
1309 ** New variable `syntax-propertize-function'.
1310 This replaces `font-lock-syntactic-keywords' which is now obsolete.
1311 This allows syntax-table properties to be set independently from font-lock:
1312 just call syntax-propertize to make sure the text is propertized.
1313 Together with this new variable come a new hook
1314 syntax-propertize-extend-region-functions, as well as two helper functions:
1315 syntax-propertize-via-font-lock to reuse old font-lock-syntactic-keywords
1316 as-is; and syntax-propertize-rules which provides a new way to specify
1317 syntactic rules.
1320 ** New hook post-self-insert-hook run at the end of self-insert-command.
1323 ** Syntax tables support a new "comment style c" additionally to style b.
1326 ** frame-local variables cannot be let-bound any more.
1328 ** Major and minor mode changes
1330 *** `prog-mode' is a new major mode from which programming modes
1331 should be derived.
1334 **** `prog-mode-hook' can be used to enable features for programming
1335 modes, e.g. (add-hook 'prog-mode-hook 'flyspell-prog-mode) to enable
1336 on-the-fly spell checking for comments and strings.
1339 *** New hook `change-major-mode-after-body-hook', run by
1340 `run-mode-hooks' just before any other mode hooks.
1343 *** Enabled globalized minor modes can be disabled in specific major modes.
1344 If the global mode is global-FOO-mode, then run (FOO-mode -1) in the
1345 major mode's hook, where FOO-mode toggles the mode on a per-buffer basis.
1348 *** `define-minor-mode' accepts a new keyword :variable.
1351 ** `delete-file' and `delete-directory' now accept optional arg TRASH.
1352 Trashing is performed if TRASH and `delete-by-moving-to-trash' are
1353 both non-nil.  Interactively, TRASH defaults to t, unless a prefix
1354 argument is supplied (see Trash changes, above).
1357 ** `facemenu-read-color' is now an alias for `read-color'.
1360 ** The command `read-color' now requires a match for a color name
1361 or RGB triplet, instead of signaling an error if the user provides
1362 invalid input.
1365 ** Tool-bars can display separators.
1366 Tool-bar separators are handled like menu separators in menu-bar maps,
1367 i.e. via menu entries of the form `(menu-item "--")'.
1369 ** Image API
1372 *** Animated images support (currently animated gifs only).
1375 **** `image-animated-p' returns non-nil if an image can be animated.
1378 **** `image-animate' animates a supplied image spec.
1381 **** `image-animate-timer' returns the timer object for an image that
1382 is being animated.
1385 *** `image-extension-data' has been renamed to `image-metadata'.
1386 The old name is an obsolete alias to the new one.
1389 *** Emacs can be compiled with ImageMagick support.
1390 This feature is not available for the Nextstep or MS ports.
1391 Then the function `imagemagick-types' returns a list of image file
1392 extensions that your installation of ImageMagick supports.  The
1393 function `imagemagick-register-types' enables ImageMagick support for
1394 these image types, minus those listed in `imagemagick-types-inhibit'.
1395 Visiting one of these file types will then use Image mode.
1397 ** XML and HTML parsing
1398 If Emacs is compiled with libxml2 support, there are two new functions:
1399 `libxml-parse-html-region' (which parses "real world" HTML) and
1400 `libxml-parse-xml-region' (which parses XML).  Both return an Emacs
1401 Lisp parse tree.
1403 FIXME: These should be front-ended by xml.el.
1405 ** GnuTLS
1407 *** New library `gnutls.el'.
1408 This requires Emacs to have been built with GnuTLS support.
1409 The main functions are `open-gnutls-stream' and `gnutls-negotiate'.
1410 It's easiest to use these functions through `open-network-stream'
1411 because it can upgrade connections through STARTTLS opportunistically
1412 or use plain SSL, depending on your needs.  For debugging, set
1413 `gnutls-log-level' greater than 0.
1415 ** Isearch
1418 *** New hook `isearch-update-post-hook' that runs in `isearch-update'.
1421 ** Progress reporters can now "spin".
1422 The MIN-VALUE and MAX-VALUE arguments of `make-progress-reporter' can
1423 now be nil, or omitted.  This makes a "non-numeric" reporter.  Each
1424 time you call `progress-reporter-update' on that progress reporter,
1425 with a nil or omitted VALUE argument, the reporter message is
1426 displayed with a "spinning bar".
1429 ** New variable `revert-buffer-in-progress-p' is true while a buffer is
1430 being reverted, even if the buffer has a local `revert-buffer-function'.
1432 ** New variables `delayed-warnings-list' and `delayed-warnings-hook' allow
1433 deferring warnings until the main command loop is executed.
1436 ** `set-auto-mode' now respects mode: local variables at the end of files,
1437 as well as those in the -*- line.
1440 ** rx.el has a new `group-n' construct for explicitly numbered groups.
1443 ** New function `make-composed-keymap' that constructs a new keymap
1444 from multiple input maps.  You can use this to make a keymap that
1445 inherits from multiple maps, eg:
1446  (set-keymap-parent newmap (make-composed-keymap othermap parent))
1449 ** Set `debug-on-event' to make Emacs enter the debugger e.g. on receipt
1450 of SIGUSR1.  This can be useful when `inhibit-quit' is set.
1453 ** New reader macro ## that stands for the empty symbol.
1454 This means that the empty symbol can now be read back.  Also, #: by itself
1455 (when not immediately followed by a possible symbol character) stands for
1456 an empty uninterned symbol.
1459 ** New math functions `isnan', `copysign', `frexp', `ldexp'.
1461 ** Obsolete functions and variables
1464 *** `tooltip-use-echo-area' is obsolete.
1465 Rather than setting this to t, disable Tooltip mode instead.
1468 *** buffer-substring-filters is obsolete.
1469 Use `filter-buffer-substring-functions' instead.
1472 *** `byte-compile-disable-print-circle' is obsolete.
1475 *** `deferred-action-list' and `deferred-action-function' are obsolete.
1476 Use `post-command-hook' instead.
1479 *** `font-lock-maximum-size' is obsolete.
1482 * Changes in Emacs 24.1 on non-free operating systems
1485 ** On MS Windows, Emacs warns when using the obsolete init file _emacs,
1486 and also when HOME is set to C:\ by default.
1488 ** New configure.bat options
1491 *** --enable-checking builds Emacs with extra runtime checks.
1494 *** --distfiles specifies files to be included in binary distribution.
1497 *** --without-gnutls disables automatic GnuTLS detection.
1500 *** --lib for general library linkage, works with the USER_LIBS build variable.
1503 ** New make target `dist' to create binary distribution for MS Windows.
1506 ** The Lisp function `w32-default-color-map' is now obsolete.
1507 (It is only used internally in the Emacs C code.)
1510 ** Customize ns-auto-hide-menu-bar to have the menu-bar hidden, but
1511 reappear on mouse-over.  (Requires OS X 10.6 or later.)
1514 ----------------------------------------------------------------------
1515 This file is part of GNU Emacs.
1517 GNU Emacs is free software: you can redistribute it and/or modify
1518 it under the terms of the GNU General Public License as published by
1519 the Free Software Foundation, either version 3 of the License, or
1520 (at your option) any later version.
1522 GNU Emacs is distributed in the hope that it will be useful,
1523 but WITHOUT ANY WARRANTY; without even the implied warranty of
1524 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1525 GNU General Public License for more details.
1527 You should have received a copy of the GNU General Public License
1528 along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
1531 Local variables:
1532 mode: outline
1533 paragraph-separate: "[  \f]*$"
1534 end: