More updates to Maintaining chapter of Emacs manual.
[emacs.git] / etc / NEWS
blob95d1854744ba1b31d544c1360148a30c0d7c38cc
1 GNU Emacs NEWS -- history of user-visible changes.
3 Copyright (C) 2010-2011  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 ** Emacs can be compiled against Gtk+ 3.0 if you pass --with-x-toolkit=gtk3
42 to configure.  Note that other libraries used by Emacs, RSVG and GConf,
43 also depend on Gtk+.  You can disable them with --without-rsvg and
44 --without-gconf.
46 ---
47 ** There is a new configure option --enable-use-lisp-union-type.
48 This is only useful for Emacs developers to debug certain types of bugs.
49 This is not a new feature; only the configure flag is new.
51 ---
52 ** There is a new configure option --with-wide-int.
53 With it, Emacs integers typically have 62 bits, even on 32-bit machines.
54 On 32-bit hosts, this raises the limit on buffer sizes from about 512 MiB
55 to about 2 GiB.
57 ---
58 ** New translation of the Emacs Tutorial in Hebrew is available.
59 Type `C-u C-h t' to choose it in case your language setup doesn't
60 automatically select it.
62 ** Emacs can be compiled with ImageMagick support.
63 Emacs links to ImageMagick if version 6.2.8 or newer of the library is
64 present at build time.  To inhibit ImageMagick, use the configure
65 option `--without-imagemagick' .
67 ---
68 ** The standalone programs digest-doc and sorted-doc are removed.
69 Emacs now uses Lisp commands `doc-file-to-man' and `doc-file-to-info'.
71 ---
72 ** The standalone program `fakemail' is removed.
73 If you need it, feedmail.el provides a superset of the functionality.
76 * Startup Changes in Emacs 24.1
78 ---
79 ** The --unibyte, --multibyte, --no-multibyte, and --no-unibyte
80 command line arguments, and the EMACS_UNIBYTE environment variable, no
81 longer have any effect.  (They were declared obsolete in Emacs 23.)
83 +++
84 ** New command line option `--no-site-lisp' removes site-lisp directories
85 from load-path.  -Q now implies this.
87 ---
88 ** On Windows, Emacs now warns when the obsolete _emacs init file is used,
89 and also when HOME is set to C:\ by default.
92 * Changes in Emacs 24.1
94 +++
95 ** auto-mode-case-fold is now enabled by default.
97 ** Completion
99 *** shell-mode uses pcomplete rules, with the standard completion UI.
101 *** Many packages have been changed to use `completion-at-point'
102 rather than their own completion code.
104 *** `completion-at-point' now handles tags and semantic completion.
106 *** Completion in a non-minibuffer now tries to detect the end of completion
107 and pops down the *Completions* buffer accordingly.
109 *** Completion can cycle, depending on completion-cycle-threshold.
111 *** New completion style `substring'.
113 *** Completion style can be set per-category `completion-category-overrides'.
115 *** Completion of buffers now uses substring completion by default.
117 ** Mail changes
119 The default of `send-mail-function' is now `sendmail-query-once',
120 which asks the user (once) whether to use the smtpmail package to send
121 email, or to use the old defaults that rely on external mail
122 facilities (`sendmail-send-it' on GNU/Linux and other Unix-like
123 systems, and `mailclient-send-it' on Windows).
125 *** smtpmail changes
127 **** smtpmail now uses encrypted connections (via STARTTLS) if the
128 mail server supports them.  It also uses the auth-source framework for
129 getting credentials.
131 **** The variable `smtpmail-auth-credentials' has been removed.
132 That variable used to have the default value "~/.authinfo", in which
133 case you won't see any difference.  But if you changed it to be a list
134 of user names and passwords, that setting is now ignored; you will be
135 prompted for the user name and the password, which will then be saved
136 to ~/.authinfo.  (To control where and how the credentials are stored,
137 see the auth-source manual.  You may want to change the auth-source
138 preferences if you want to store the credentials encrypted, for
139 instance.)
141 You can also manually copy the credentials to your ~/.authinfo file.
142 For example, if you had
144   (setq smtpmail-auth-credentials
145         '(("mail.example.org" 25 "jim" "s!cret")))
147 then the equivalent line in ~/.authinfo would be
149   machine mail.example.org port 25 login jim password s!cret
151 **** The variable `smtpmail-starttls-credentials' has been removed.
153 If you had that set, then you need to put
155   machine smtp.whatever.foo port 25 key "~/.my_smtp_tls.key" cert "~/.my_smtp_tls.cert"
157 in your ~/.authinfo file instead.
159 *** sendmail changes
161 You can now add MIME attachments to outgoing messages with the new
162 command `mail-add-attachment'.
165 The command `mail-attach-file' was renamed to `mail-insert-file'; the
166 old name is now an obsolete alias to the new name.
168 ** Emacs server and client changes
170 *** New option `server-port' specifies the port on which the Emacs
171 server should listen.
173 *** New emacsclient argument -q/--quiet suppresses some status messages.
175 *** New emacsclient argument --frame-parameters can be used to set the
176 frame parameters of a newly-created graphical frame.
178 *** If emacsclient shuts down as a result of Emacs signaling an
179 error, its exit status is 1.
181 *** New emacsclient argument --parent-id ID.
182 This opens a client frame in parent X window ID, via XEmbed, similar
183 to the --parent-id argument to Emacs.
185 ** Internationalization changes
188 *** Emacs now supports display and editing of bidirectional text.
190 Text that includes characters from right-to-left (RTL) scripts, such
191 as Arabic, Farsi, or Hebrew, is displayed in the correct visual order
192 as expected by users of those scripts.  This display reordering is a
193 "Full bidirectionality" class implementation of the Unicode
194 Bidirectional Algorithm.  Buffers with no RTL text should look exactly
195 the same as before.
197 For more information, see the node "Bidirectional Editing" in the
198 Emacs Manual.
201 **** New buffer-local variable `bidi-display-reordering'.
202 To disable display reordering in any given buffer, change this to nil.
205 **** New buffer-local variable `bidi-paragraph-direction'.
206 If nil (the default), Emacs determines the base direction of each
207 paragraph from its text, as specified by the Unicode Bidirectional
208 Algorithm.
210 Setting this to `right-to-left' or `left-to-right' forces a particular
211 base direction on each paragraph in the buffer.
213 Paragraphs whose base direction is right-to-left are displayed
214 starting at the right margin of the window.
217 *** Enhanced support for characters with no glyphs in available fonts.
218 If a character has no glyphs in any of the available fonts, Emacs
219 normally displays it either as a hexadecimal code in a box or as a
220 thin 1-pixel space.  In addition to these two methods, Emacs can
221 display these characters as empty box, as an acronym, or not display
222 them at all.  To change how these characters are displayed, customize
223 the variable `glyphless-char-display-control'.
225 On character terminals, these methods are used for characters that
226 cannot be encoded by the `terminal-coding-system'.
229 *** New input methods for Farsi: farsi and farsi-translit.
232 *** `nobreak-char-display' now also highlights Unicode hyphen chars
233 (U+2010 and U+2011).
235 ** Improved GTK integration
237 *** GTK scroll-bars are now placed on the right by default.
238 Use `set-scroll-bar-mode' to change this.
240 *** GTK tool bars can have just text, just images or images and text.
241 Customize `tool-bar-style' to choose style.  On a Gnome desktop, the default
242 is taken from the desktop settings.
244 *** GTK tool bars can be placed on the left/right or top/bottom of the frame.
245 The frame-parameter tool-bar-position controls this.  It takes the values
246 top, left, right or bottom.  The Options => Show/Hide menu has entries
247 for this.
249 *** The colors for selected text (the `region' face) are taken from
250 the GTK theme when Emacs is built with GTK.
252 *** Emacs uses GTK tooltips by default if built with GTK.  You can turn that
253 off by customizing x-gtk-use-system-tooltips.
256 ** New basic faces `error', `warning', `success' are available to
257 highlight strings that indicate failure, caution or successful operation.
260 ** Lucid menus and dialogs can display antialiased fonts if Emacs is built
261 with Xft.  To change font, use the X resource font, for example:
262 Emacs.pane.menubar.font:  Courier-12
265 ** On graphical displays, the mode-line no longer ends in dashes.
266 Also, the first dash (which does not indicate anything) is just
267 displayed as a space.
269 ** Basic SELinux support has been added.
270 This requires Emacs to be linked with libselinux at build time.
272 *** Emacs preserves the SELinux file context when backing up, and
273 optionally when copying files. To this end, copy-file has an extra
274 optional argument, and backup-buffer and friends include the SELinux
275 context in their return values.
277 *** The new functions file-selinux-context and set-file-selinux-context
278 get and set the SELinux context of a file.
280 *** Tramp offers handlers for file-selinux-context and set-file-selinux-context
281 for remote machines which support SELinux.
283 ** Changes for exiting Emacs
285 *** The function kill-emacs is now run upon receipt of the signals
286 SIGTERM and SIGHUP, and upon SIGINT in batch mode.
288 *** kill-emacs-hook is now also run in batch mode.
289 If you have code that adds something to kill-emacs-hook, you should
290 consider if it is still appropriate to add it in the noninteractive case.
292 ** Scrolling changes
294 *** New scrolling commands `scroll-up-command' and `scroll-down-command'
295 (bound to C-v/[next] and M-v/[prior]) do not signal errors at top/bottom
296 of buffer at first key-press (instead move to top/bottom of buffer)
297 when `scroll-error-top-bottom' is non-nil.
299 *** New variable `scroll-error-top-bottom' (see above).
301 *** New scrolling commands `scroll-up-line' and `scroll-down-line'
302 scroll a line instead of full screen.
304 *** New property `scroll-command' should be set on a command's symbol to
305 define it as a scroll command affected by `scroll-preserve-screen-position'.
307 *** If you customize `scroll-conservatively' to a value greater than 100,
308 Emacs will never recenter point in the window when it scrolls due to
309 cursor motion commands or commands that move point (e.f., `M-g M-g').
310 Previously, you needed to use `most-positive-fixnum' as the value of
311 `scroll-conservatively' to achieve the same effect.
313 *** ``Aggressive'' scrolling now honors the scroll margins.
314 If you customize `scroll-up-aggressively' or
315 `scroll-down-aggressively' and move point off the window, Emacs now
316 scrolls the window so as to avoid positioning point inside the scroll
317 margin.
319 ** Trash changes
321 *** `delete-by-moving-to-trash' now only affects commands that specify
322 trashing.  This avoids inadvertently trashing temporary files.
324 *** Calling `delete-file' or `delete-directory' with a prefix argument
325 now forces true deletion, regardless of `delete-by-moving-to-trash'.
327 ** New option `list-colors-sort' defines the color sort order
328 for `list-colors-display'.
330 ** An Emacs Lisp package manager is now included.
331 This is a convenient way to download and install additional packages,
332 from a package repository at http://elpa.gnu.org.
334 *** `M-x list-packages' shows a list of packages, which can be
335 selected for installation.
337 *** New command `describe-package', bound to `C-h P'.
339 *** By default, all installed packages are loaded and activated
340 automatically when Emacs starts up.  To disable this, set
341 `package-enable-at-startup' to nil.  To change which packages are
342 loaded, customize `package-load-list'.
344 ** Custom Themes
346 *** `M-x customize-themes' lists Custom themes which can be enabled.
348 *** New option `custom-theme-load-path' is the load path for themes.
349 Emacs no longer looks for custom themes in `load-path'.  The default
350 is to search in `custom-theme-directory', followed by a built-in theme
351 directory named "themes/" in `data-directory'.
353 *** New option `custom-safe-themes' records known-safe theme files.
354 If a theme is not in this list, Emacs queries before loading it, and
355 offers to save the theme to `custom-safe-themes' automatically.  By
356 default, all themes included in Emacs are treated as safe.
358 ** The user option `remote-file-name-inhibit-cache' controls whether
359 the remote file-name cache is used for read access.
361 ** File- and directory-local variable changes
363 *** You can stop directory local vars from applying to subdirectories.
364 Add an element (subdirs . nil) to the alist portion of any variables
365 settings to indicate that the section should not apply to
366 subdirectories.
368 *** Directory local variables can apply to some file-less buffers.
369 Affected modes include dired, vc-dir, and log-edit.  For example,
370 adding "(diff-mode . ((mode . whitespace)))" to .dir-locals.el will
371 turn on `whitespace-mode' for *vc-diff* buffers.  Modes should call
372 `hack-dir-local-variables-non-file-buffer' to support this.
374 *** Using "mode: MINOR-MODE" to enable a minor mode is deprecated.
375 Instead, use "eval: (minor-mode 1)".
378 ** The variable `focus-follows-mouse' now always defaults to nil.
380 ** New primitive `secure-hash' that supports many secure hash algorithms
381 including md5, sha-1 and sha-2 (sha-224, sha-256, sha-384 and sha-512).
382 The elisp implementation sha1.el is removed. Feature sha1 is provided
383 by default.
385 ** Menu-bar changes
387 *** `menu-bar-select-buffer-function' lets you choose another operation
388 instead of `switch-to-buffer' when selecting an item in the Buffers menu.
390 ** Window changes
393 *** Resizing an Emacs frame now preserves proportional window sizes,
394 modulo restrictions like window minimum sizes and fixed-size windows.
396 *** The behavior of `display-buffer' is now customizable in detail.
398 **** New option `display-buffer-base-action' specifies a list of
399 user-determined display "actions" (functions and optional arguments
400 for choosing the displaying window).
402 This takes precedence over the default display action, which is
403 specified by `display-buffer-fallback-action'.
406 **** New option `display-buffer-alist' maps buffer name regexps to
407 display actions, taking precedence over `display-buffer-base-action'.
410 *** New option `window-combination-limit'.
411 The new option `window-combination-limit' allows to return the space
412 obtained for resizing or creating a window more reliably to the window
413 from which such space was obtained.
416 *** New option `window-combination-resize'.
417 The new option `window-combination-resize' allows to split a window that
418 otherwise cannot be split because it's too small by stealing space from
419 other windows in the same combination.  Subsequent resizing or deletion
420 of the window will resize all windows in the same combination as well.
423 *** New commands `maximize-window' and `minimize-window'.
424 These maximize and minimize the size of a window within its frame.
427 *** New commands `switch-to-prev-buffer' and `switch-to-next-buffer'.
428 These functions allow to navigate through the live buffers that have
429 been shown in a specific window.
432 *** New functions `window-state-get' and `window-state-put'.
433 These functions allow to save and restore the state of an arbitrary
434 frame or window as an Elisp object.
436 ** The inactive minibuffer has its own major mode `minibuffer-inactive-mode'.
437 This is handy for minibuffer-only frames, and is also used for the "mouse-1
438 pops up *Messages*" feature, which can now easily be changed.
441 * Editing Changes in Emacs 24.1
443 ** Search changes
445 *** C-y in Isearch is now bound to isearch-yank-kill, instead of
446 isearch-yank-line.
448 *** M-y in Isearch is now bound to isearch-yank-pop, instead of
449 isearch-yank-kill.
451 *** M-s C-e in Isearch is now bound to isearch-yank-line.
454 ** New commands `count-words-region' and `count-words'.
456 *** `count-lines-region' is now an alias for `count-words-region',
457 bound to M-=, which shows the number of lines, words, and characters.
460 ** The default value of `backup-by-copying-when-mismatch' is now t.
463 ** The command `just-one-space' (M-SPC), if given a negative argument,
464 also deletes newlines around point.
466 ** Deletion changes
468 *** New option `delete-active-region'.
469 If non-nil, [delete] and DEL delete the region if it is active and no
470 prefix argument is given.  If set to `kill', these commands kill
471 instead.
473 *** New command `delete-forward-char', bound to [delete].
474 This is meant for interactive use, and obeys `delete-active-region'.
475 The command `delete-char' does not obey `delete-active-region'.
477 *** `delete-backward-char' is now a Lisp function.
478 Apart from obeying `delete-active-region', its behavior is unchanged.
479 However, the byte compiler now warns if it is called from Lisp; you
480 should use delete-char with a negative argument instead.
482 *** The option `mouse-region-delete-keys' has been deleted.
484 ** Selection changes.
486 The default handling of clipboard and primary selections was changed
487 to conform with modern X applications.  In short, most commands for
488 killing and yanking text now use the clipboard, while mouse commands
489 use the primary selection.
491 In the following, we provide a list of these changes, followed by a
492 list of steps to get the old behavior back if you prefer that.
495 *** `select-active-regions' now defaults to t.
496 Merely selecting text (e.g. with drag-mouse-1) no longer puts it in
497 the kill ring.  The selected text is put in the primary selection, if
498 the system possesses a separate primary selection facility (e.g. X).
501 **** `select-active-regions' also accepts a new value, `only'.
502 This means to only set the primary selection for temporarily active
503 regions (usually made by mouse-dragging or shift-selection);
504 "ordinary" active regions, such as those made with C-SPC followed by
505 point motion, do not alter the primary selection.
508 **** `mouse-drag-copy-region' now defaults to nil.
511 *** mouse-2 is now bound to `mouse-yank-primary'.
512 This pastes from the primary selection, ignoring the kill-ring.
513 Previously, mouse-2 was bound to `mouse-yank-at-click'.
516 *** `x-select-enable-clipboard' now defaults to t on all platforms.
518 *** `x-select-enable-primary' now defaults to nil.
519 Thus, commands that kill text or copy it to the kill-ring (such as
520 M-w, C-w, and C-k) also use the clipboard---not the primary selection.
523 **** The "Copy", "Cut", and "Paste" items in the "Edit" menu are now
524 exactly equivalent to, respectively M-w, C-w, and C-y.
527 **** Note that on MS-Windows, `x-select-enable-clipboard' was already
528 non-nil by default, as Windows does not support the primary selection
529 between applications.
532 *** To return to the previous behavior, do the following:
533 **** Change `select-active-regions' to nil.
534 **** Change `mouse-drag-copy-region' to t.
535 **** Change `x-select-enable-primary' to t (on X only).
536 **** Change `x-select-enable-clipboard' to nil.
537 **** Bind `mouse-yank-at-click' to mouse-2.
540 *** Support for X cut buffers has been removed.
542 *** X clipboard managers are now supported.
543 To inhibit this, change `x-select-enable-clipboard-manager' to nil.
546 ** New command `rectangle-number-lines', bound to `C-x r N', numbers
547 the lines in the current rectangle.  With a prefix argument, this
548 prompts for a number to count from and for a format string.
551 ** The default value of redisplay-dont-pause is now t
552 This makes Emacs feel more responsive to editing commands that arrive
553 at high rate, e.g. if you lean on some key, because stopping redisplay
554 in the middle (when this variable is nil) forces more expensive
555 updates later on, and Emacs appears to be unable to keep up.
558 ** The behavior of <TAB> for active regions in Text mode has changed.
559 In Text and related modes, typing <TAB> (`indent-for-tab-command')
560 when the region is active causes Emacs to indent all the lines in the
561 region, aligning them with the line previous to the first line in the
562 region (or with the left margin if there is no previous line).
565 * Changes in Specialized Modes and Packages in Emacs 24.1
568 ** Archive Mode has basic support for browsing and updating 7z archives.
570 ** browse-url has a new variable `browse-url-mailto-function'
571 specifies how mailto: URLs are handled.  The default is `browse-url-mail'.
574 ** BibTeX mode
576 *** BibTeX mode now supports biblatex.
577 Use the variable bibtex-dialect to select support for different BibTeX
578 dialects.  bibtex-entry-field-alist is now an obsolete alias for
579 bibtex-BibTeX-entry-alist.
581 *** New command `bibtex-search-entries' bound to C-c C-a.
583 *** New `bibtex-entry-format' option `sort-fields', disabled by default.
585 *** New variable `bibtex-search-entry-globally'.
587 ** Calendar, Diary, and Appt
590 *** Diary entries can contain non-printing `comments'.
591 See the variable `diary-comment-start'.
594 *** Appointments can specify their individual warning times.
595 See the variable `appt-warning-time-regexp'.
598 *** The function specified by `appt-disp-window-function' may be passed
599 lists of arguments if multiple appointments are due at similar times.
600 If you are using a custom function for this, you should update it.
603 *** New function `diary-hebrew-birthday'.
606 *** Elements of `calendar-day-abbrev-array' and `calendar-month-abbrev-array'
607 may no longer be nil, but must all be strings.
610 *** The obsolete (since Emacs 22.1) method of enabling the appt package
611 by adding appt-make-list to diary-hook has been removed.  Use appt-activate.
614 *** Some appt variables (obsolete since Emacs 22.1) have been removed:
615 appt-issue-message (use the function appt-activate)
616 appt-visible/appt-msg-window (use the variable appt-display-format)
619 *** Some diary function aliases (obsolete since Emacs 22.1) have been removed:
620 view-diary-entries, list-diary-entries, show-all-diary-entries
622 ** CC Mode (C, C++, etc.)
624 *** New feature to "guess" the style in an existing buffer.
626 ** comint and modes derived from it use the generic completion code.
628 ** Compilation mode
630 *** Compilation mode can be used without font-lock-mode.
631 `compilation-parse-errors-function' is now obsolete.
633 *** `compilation-filter-start' is let-bound to the start of the text
634 inserted by the compilation filter function, when calling
635 compilation-filter-hook.
637 *** `compilation-error-screen-columns' is obeyed in the editing buffer.
638 So programming language modes can set it, whereas previously only the value
639 in the *compilation* buffer was used.
641 ** Customize
643 *** Customize buffers now contain a search field.
644 The search is performed using `customize-apropos'.
645 To turn off the search field, set custom-search-field to nil.
647 *** Custom options now start out hidden if at their default values.
648 Use the arrow to the left of the option name to toggle visibility.
650 *** custom-buffer-sort-alphabetically now defaults to t.
652 *** The color widget now has a "Choose" button, which allows you to
653 choose a color via list-colors-display.
655 ** D-Bus
657 *** It is possible now, to access alternative buses than the default
658 system or session bus.
660 *** dbus-register-{service,method,property}
661 The -method and -property functions do not automatically register
662 names anymore.
664 The new function dbus-register-service registers a service known name
665 on a D-Bus without simultaneously registering a property or a method.
667 ** Dired-x
669 *** dired-jump and dired-jump-other-window called with a prefix argument
670 read a file name from the minibuffer instead of using buffer-file-name.
673 *** The `dired local variables' feature provided by Dired-x is obsolete.
674 The standard directory local variables feature replaces it.
676 ** ERC changes
678 *** New vars `erc-autojoin-timing' and `erc-autojoin-delay'.
679 If the value of `erc-autojoin-timing' is 'ident, ERC autojoins after a
680 successful NickServ identification, or after `erc-autojoin-delay'
681 seconds.  The default value, 'ident, means to autojoin immediately
682 after connecting.
684 *** New variable `erc-coding-system-precedence': If we use `undecided'
685 as the server coding system, this variable will then be consulted.
686 The default is to decode strings that can be decoded as utf-8 as
687 utf-8, and do the normal `undecided' decoding for the rest.
689 ** Eshell changes
691 *** The default value of eshell-directory-name is a directory named
692 "eshell" in `user-emacs-directory'.  If the old "~/.eshell/" directory
693 exists, that is used instead.
695 ** gdb-mi
697 *** GDB User Interface migrated to GDB Machine Interface and now
698 supports multithread non-stop debugging and debugging of several
699 threads simultaneously.
701 ** In ido-mode, C-v is no longer bound to ido-toggle-vc.
702 The reason is that this interferes with cua-mode.
704 ** Image mode
706 *** RET (`image-toggle-animation') toggles animation, if the displayed
707 image can be animated.
709 *** Option `image-animate-loop', if non-nil, loops the animation.
710 If nil, `image-toggle-animation' plays the animation once.
712 ** Info
714 *** New command `info-display-manual' displays an Info manual
715 specified by its name.  If that manual is already visited in some Info
716 buffer within the current session, the command will display that
717 buffer.  Otherwise, it will load the manual and display it.  This is
718 handy if you have many manuals in many Info buffers, and don't
719 remember the name of the buffer visiting the manual you want to
720 consult.
722 ** The Landmark game is now invoked with `landmark', not `lm'.
724 ** MH-E has been upgraded to MH-E version 8.3.1.
725 See MH-E-NEWS for details.
727 ** Modula-2 mode provides auto-indentation.
729 ** mpc.el: Can use pseudo tags of the form tag1|tag2 as a union of two tags.
731 ** Prolog mode has been completely revamped, with lots of additional
732 functionality such as more intelligent indentation, electricity, support for
733 more variants, including Mercury, and a lot more.
735 ** Rmail
737 *** The command `rmail-epa-decrypt' decrypts OpenPGP data
738 in the Rmail incoming message.
741 *** The variable `rmail-message-filter' no longer has any effect.
742 This change was made in Emacs 23.1 but was not advertised at the time.
743 Try using `rmail-show-message-hook' instead.
745 ** Shell mode
747 *** Shell mode uses pcomplete rules, with the standard completion UI.
749 *** The `shell' command prompts for the shell path name if the default
750 directory is a remote file name and neither the environment variable
751 $ESHELL nor the variable `explicit-shell-file-name' is set.
753 *** New variable `shell-dir-cookie-re'.
754 If set to an appropriate regexp, Shell mode can track your cwd by
755 reading it from your prompt.
758 ** SQL Mode enhancements.
760 *** `sql-dialect' is an alias for `sql-product'.
762 *** New variable `sql-port' specifies the port number for connecting
763 to a MySQL or Postgres server.
765 *** The command `sql-product-interactive' now takes a prefix argument,
766 which causes it to prompt for an SQL product instead of the current
767 value of `sql-product'.
769 *** Product-specific SQL interactive commands now take prefix args.
770 These commands (`sql-sqlite', `sql-postgres', `sql-mysql', etc.),
771 given a prefix argument, prompt for a name for the SQL interactive
772 buffer.  This reduces the need for calling `sql-rename-buffer'.
774 *** SQL interactive modes suppress command continuation prompts, and
775 replace tabs with spaces.  The first change impacts multiple line SQL
776 statements entered with C-j between each line, statements yanked into
777 the buffer and statements sent with `sql-send-*' functions.  The
778 second change prevents the MySQL and Postgres interpreters from
779 listing object name completions when sent text via `sql-send-*'
780 functions.
782 *** New custom variables control prompting for login parameters.
783 Each supported product has a custom variable `sql-*-login-params',
784 which is a list of the parameters to be prompted for before a
785 connection is established.
787 *** New variable `sql-connection-alist' for login parameter values.
788 This can be used to store different username, database and server
789 values.  Connections defined in this variable appear in the submenu
790 SQL->Start... for making new SQLi sessions.
792 *** New command `sql-connect' starts a predefined SQLi session,
793 using the login parameters from `sql-connection-alist'.
795 *** New "Save Connection" menu item in SQLi buffers.
796 This gathers the login params specified for the SQLi session, if it
797 was not started by a connection, and saves them as a new connection.
799 *** Commands for listing database objects and details.
800 In an SQLi session, you can get a list of objects in the database.
801 The contents of these lists are product specific.
803 **** `C-c C-l a' or the "SQL->List all objects" menu item
804 lists all the objects in the database.  With a prefix argument, it
805 displays additional details or extend the listing to include other
806 schemas objects.
808 **** `C-c C-l t' or the "SQL->List Table details" menu item
809 prompts for the name of a database table or view and displays the list
810 of columns in the relation.  With a prefix argument, it displays
811 additional details about each column.
813 *** New options `sql-send-terminator' and `sql-oracle-scan-on'.
815 *** An API for manipulating SQL product definitions has been added.
817 ** TeX modes
819 *** latex-electric-env-pair-mode keeps \begin..\end matched on the fly.
821 ** Tramp
823 *** There exists a new inline access method "ksu" (kerberized su).
825 *** The following access methods are discontinued: "ssh1_old",
826 "ssh2_old", "scp1_old", "scp2_old", "imap", "imaps" and "fish".
828 *** The option `ange-ftp-binary-file-name-regexp' has changed its
829 default value to "".
831 ** `url-queue-retrieve' downloads web pages asynchronously, but allow
832 controlling the degree of parallelism.
834 ** VC and related modes
837 *** Support for pulling on distributed version control systems.
838 `C-x v +' (`vc-pull') runs a "pull" operation, if it is supported, to
839 update the current branch and working tree.  A prefix argument means
840 to prompt the user for specifics, e.g. a pull location.
842 **** `vc-update' is now an alias for `vc-pull'.
844 **** Currently supported by Bzr, Git, and Mercurial.
847 *** Support for merging on distributed version control systems.
848 The vc-merge command now runs a "merge" operation, if it is supported,
849 to merge changes from another branch into the current one.  It prompts
850 for specifics, e.g. a merge source.
852 **** Currently supported for Bzr, Git, and Mercurial.
855 *** New option `vc-revert-show-diff' controls whether `vc-revert'
856 shows a diff while querying the user.  It defaults to t.
859 *** Log entries in some Log View buffers can be toggled to display a
860 longer description by typing RET (log-view-toggle-entry-display).
861 In the Log View buffers made by `C-x v L' (vc-print-root-log), you can
862 use this to display the full log entry for the revision at point.
864 **** Currently supported for Bzr, Git, and Mercurial.
866 **** Packages using Log View mode can enable this functionality by
867 binding `log-view-expanded-log-entry-function' to a suitable function.
870 *** New command `vc-ediff' allows visual comparison of two revisions
871 of a file similar to `vc-diff', but using ediff backend.
874 *** The option `vc-initial-comment' was removed in Emacs 23.2, but
875 this was not advertised at the time.
878 *** `vc-toggle-read-only' is an obsolete alias for `toggle-read-only'.
879 Since Emacs 23, it has done the same thing as `toggle-read-only', but
880 this was not advertised at the time.
882 ** FIXME: xdg-open for browse-url and reportbug, 2010/08.
884 ** Obsolete modes
886 *** partial-completion-mode is obsolete.
887 You can get a comparable behavior with:
888 (setq completion-styles '(partial-completion initials))
889 (setq completion-pcm-complete-word-inserts-delimiters t)
891 *** pc-mode.el is obsolete.
893 *** sregex.el is obsolete, since rx.el is a strict superset.
895 *** s-region.el and pc-select are obsolete.
896 They are superseded by shift-select-mode enabled by default in 23.1.
898 ** Miscellaneous
901 *** f90.el has some support for Fortran 2008 syntax.
904 *** `copyright-fix-years' can optionally convert consecutive years to ranges.
906 *** New command `nato-region' converts text to NATO phonetic alphabet.
909 * New Modes and Packages in Emacs 24.1
912 ** Occur Edit mode applies edits made in *Occur* buffers to the
913 original buffers.  It is bound to "e" in Occur mode.
915 ** New global minor modes electric-pair-mode, electric-indent-mode,
916 and electric-layout-mode.
918 ** tabulated-list.el provides a generic major mode for tabulated data,
919 from which other modes can be derived.
921 ** pcase.el provides the ML-style pattern matching macro `pcase'.
923 ** secrets.el is an implementation of the Secret Service API, an
924 interface to password managers like GNOME Keyring or KDE Wallet.  The
925 Secret Service API requires D-Bus for communication.  The command
926 `secrets-show-secrets' offers a buffer with a visualization of the
927 secrets.
929 ** notifications.el provides an implementation of the Desktop
930 Notifications API.  It requires D-Bus for communication.
932 ** soap-client.el supports access to SOAP web services from Emacs.
933 soap-inspect.el is an interactive inspector for SOAP WSDL structures.
935 ** xmodmap-generic-mode for xmodmap files.
937 ** New emacs-lock.el package.
938 (The pre-existing one has been renamed to old-emacs-lock.el and moved
939 to obsolete/.)  Now, Emacs Lock is a proper minor mode
940 `emacs-lock-mode'.  Protection against exiting Emacs and killing the
941 buffer can be set separately.  The mechanism for auto turning off
942 protection for buffers with inferior processes has been generalized.
945 * Incompatible Lisp Changes in Emacs 24.1
948 ** `char-direction-table' and the associated function `char-direction'
949 were deleted.  They were buggy and inferior to the new support of
950 bidirectional editing introduced in Emacs 24.  If you need the
951 bidirectional properties of a character, use `get-char-code-property'
952 with the last argument `bidi-class'.
955 ** `copy-directory' now copies the source directory as a subdirectory
956 of the target directory, if the latter is an existing directory.  The
957 new optional arg COPY-CONTENTS, if non-nil, makes the function copy
958 the contents directly into a pre-existing target directory.
960 ** `compose-mail' now accepts an optional 8th arg, RETURN-ACTION, and
961 passes it to the mail user agent function.  This argument specifies an
962 action for returning to the caller after finishing with the mail.
963 This is currently used by Rmail to delete a mail window.
965 ** For mouse click input events in the text area, the Y pixel
966 coordinate in the POSITION list now counts from the top of the text
967 area, excluding any header line.  Previously, it counted from the top
968 of the header line.
970 ** Removed obsolete name `e' (use `float-e' instead).
972 ** A backquote not followed by a space is now always treated as new-style.
974 ** Test for special mode-class was moved from view-file to view-buffer.
975 FIXME: This only says what was changed, but not what are the
976 programmer-visible consequences.
978 ** Passing a nil argument to a minor mode function now turns the mode
979 ON unconditionally.
982 ** During startup, Emacs no longer adds entries for `menu-bar-lines'
983 and `tool-bar-lines' to `default-frame-alist' and `initial-frame-alist'.
984 With these alist entries omitted, `make-frame' checks the value of the
985 variable `menu-bar-mode'/`tool-bar-mode' to determine whether to create
986 a menu-bar or tool-bar, respectively.  If the alist entries are added,
987 they override the value of `menu-bar-mode'/`tool-bar-mode'.
990 ** Regions created by mouse dragging are now normal active regions,
991 similar to the ones created by shift-selection.  In previous Emacs
992 versions, these regions were delineated by `mouse-drag-overlay', which
993 has now been removed.
995 ** cl.el no longer provides `cl-19'.
997 ** The menu bar bindings's caches are not used any more.
998 Use (where-is-internal <def> nil t) instead.
1000 ** The following obsolete functions and aliases were removed:
1001 comint-kill-output, decompose-composite-char, outline-visible,
1002 internal-find-face, internal-get-face, frame-update-faces,
1003 frame-update-face-colors, x-frob-font-weight, x-frob-font-slant,
1004 x-make-font-bold, x-make-font-demibold, x-make-font-unbold
1005 x-make-font-italic, x-make-font-oblique, x-make-font-unitalic
1006 x-make-font-bold-italic, mldrag-drag-mode-line, mldrag-drag-vertical-line,
1007 iswitchb-default-keybindings, char-bytes, isearch-return-char,
1008 make-local-hook
1010 ** The following obsolete variables and varaliases were removed:
1011 checkdoc-minor-keymap, vc-header-alist, directory-sep-char, and
1012 font-lock-defaults-alist.
1014 ** The following obsolete files were removed:
1015 sc.el, x-menu.el, rnews.el, rnewspost.el
1017 ** FIXME finder-inf.el changes.
1020 * Lisp changes in Emacs 24.1
1022 ** Code can now use lexical scoping by default instead of dynamic scoping.
1023 The `lexical-binding' variable lets code use lexical scoping for local
1024 variables.  It is typically set via file-local variables, in which case it
1025 applies to all the code in that file.
1027 *** `eval' takes a new optional argument `lexical' to choose the new lexical
1028 binding instead of the old dynamic binding mode.
1030 *** Lexically scoped interpreted functions are represented with a new form
1031 of function value which looks like (closure ENV ARGS &rest BODY).
1033 *** New macro `letrec' to define recursive local functions.
1035 *** New function `special-variable-p' to check whether a variable is
1036 declared as dynamically bound.
1038 ** An Emacs Lisp testing tool is now included.
1039 Emacs Lisp developers can use this tool to write automated tests for
1040 their code.  See the ERT info manual for details.
1042 ** Changes for bidirectional display and editing
1045 *** New function `current-bidi-paragraph-direction'.
1046 This returns the actual value of base direction of the paragraph at
1047 point.
1050 *** New function `bidi-string-mark-left-to-right'.
1051 Given a string containing characters from right-to-left (RTL) scripts,
1052 this function returns another string which can be safely inserted into
1053 a buffer, such that any following text will be always displayed to the
1054 right of that string.  (This works by appending the Unicode
1055 "LEFT-TO-RIGHT MARK" character when the argument string might need that.)
1057 This is useful when the buffer has overall left-to-right (LTR)
1058 paragraph direction and you need to insert a string whose contents and
1059 directionality are not known in advance, without disrupting the layout
1060 of the line.
1062 ** Window changes
1064 *** Window tree functions are accessible in Elisp.
1065 Functions are provided to return the parent, siblings or child windows
1066 of any window including internal windows (windows not associated with a
1067 buffer) in the window tree.
1069 **** New function `window-valid-p' gives non-nil for live and internal
1070 windows.
1072 **** Window manipulation can deal with internal windows.
1073 Many window handling functions like `split-window', `delete-window', or
1074 `delete-other-windows' as well as the window resizing functions can now
1075 act on any window including internal ones.
1077 *** window-total-height/-width vs window-body-height/-width.
1078 The function `window-height' has been renamed to `window-total-height'
1079 and `window-width' has been renamed to `window-body-width'.  The old
1080 names are provided as aliases.  Two new functions `window-total-width'
1081 and `window-body-height' are provided.
1083 *** Window parameters specific to window handling functions.
1084 For each window you can specify a parameter to override the default
1085 behavior of a number of functions like `split-window', `delete-window'
1086 and `delete-other-windows'.  The variable `ignore-window-parameters'
1087 allows to ignore processing such parameters.
1089 *** New semantics of third argument of `split-window'.
1090 The third argument of `split-window' has been renamed to SIDE and can be
1091 set to any of the values 'below, 'right, 'above, or 'left to make the
1092 new window appear on the corresponding side of the window that shall be
1093 split.  Any other value of SIDE will cause `split-window' to split the
1094 window into two side-by-side windows as before.
1096 *** Window resizing functions.
1097 A new standard function for resizing windows called `window-resize' has
1098 been introduced.  This and all other functions for resizing windows no
1099 longer delete any windows when they become too small.
1101 *** Deleting the selected window now selects the most recently selected
1102 live window on that frame instead.
1104 *** `adjust-window-trailing-edge' adjustments.
1105 `adjust-window-trailing-edge' can now deal with fixed-size windows and
1106 is able to resize other windows if a window adjacent to the trailing
1107 edge cannot be shrunk any more.  This makes its behavior more similar to
1108 that of Emacs 21 without compromising, however, its inability to delete
1109 windows which was introduced in Emacs 22.
1111 *** Window-local buffer lists.
1112 Windows now have local buffer lists.  This means that removing a buffer
1113 from display in a window will preferably show the buffer previously
1114 shown in that window with its previous window-start and window-point
1115 positions.  This also means that the same buffer may be automatically
1116 shown twice even if it already appears in another window.
1118 *** `switch-to-buffer' has a new optional argument FORCE-SAME-WINDOW,
1119 which if non-nil requires the buffer to be displayed in the currently
1120 selected window, signaling an error otherwise.  If nil, another window
1121 can be used, e.g. if the selected one is strongly dedicated.
1123 *** `split-window-vertically' and `split-window-horizontally' renamed
1124 to `split-window-below' and `split-window-right' respectively.
1125 The old names are kept as aliases.
1127 *** Display actions
1129 **** The second arg to `display-buffer' and `pop-to-buffer' is now
1130 named ACTION, and takes a display action of the same form as
1131 `display-buffer-base-action' (see Changes, above).  A non-nil,
1132 non-list value is treated specially, as the old meaning.
1134 **** New variable `display-buffer-overriding-action'.
1136 **** The procedure of `display-buffer' etc. to choose a window is
1137 determined by combining `display-buffer-overriding-action',
1138 `display-buffer-alist', the ACTION arg, `display-buffer-base-action',
1139 and `display-buffer-fallback-action'.  The second and fourth of these
1140 are user-customizable variables.
1142 See the docstring of `display-buffer' for details.
1145 *** New behavior of `quit-window'.
1146 The behavior of `quit-window' has been changed in order to restore the
1147 state before the last buffer display operation in that window.
1150 *** The new option `frame-auto-hide-function' lets you choose between
1151 iconifying or deleting a frame when burying a buffer shown in a dedicated
1152 frame or quitting a window showing a buffer in a frame of its own.
1154 ** Completion
1156 *** New variable completion-extra-properties used to specify extra properties
1157 of the current completion:
1158 - :annotate-function, same as the old completion-annotate-function.
1159 - :exit-function, function to call after completion took place.
1161 *** Functions on completion-at-point-functions can return any of the properties
1162 valid for completion-extra-properties.
1164 *** completion-annotate-function is obsolete.
1166 *** New `metadata' method for completion tables.  The metadata thus returned
1167 can specify various details of the data returned by `all-completions':
1168 - `category' is the kind of objects returned (e.g., `buffer', `file', ...),
1169   used to select a style in completion-category-overrides.
1170 - `annotation-function' to add annotations in *Completions*.
1171 - `display-sort-function' to specify how to sort entries in *Completions*.
1172 - `cycle-sort-function' to specify how to sort entries when cycling.
1174 *** minibuffer-local-filename-must-match-map is not used any more.
1175 Instead, the bindings in minibuffer-local-filename-completion-map are
1176 combined with minibuffer-local-must-match-map.
1178 *** New variable `completing-read-function' allows overriding the
1179 behavior of `completing-read'.
1182 ** `glyphless-char-display' can now distinguish between graphical and
1183 text terminal display, via a char-table entry that is a cons cell.
1185 ** `open-network-stream' can now be used to open an encrypted stream.
1186 It now accepts an optional `:type' parameter for initiating a TLS
1187 connection, directly or via STARTTLS.  To do STARTTLS, additional
1188 parameters (`:end-of-command', `:success', `:capabilities-command')
1189 must also be supplied.
1192 ** pre/post-command-hook are not reset to nil upon error.
1193 Instead, the offending function is removed.
1195 ** New hook types
1197 *** New function `run-hook-wrapped' for running an abnormal hook by
1198 passing the hook functions as arguments to a "wrapping" function.
1200 *** New macro `with-wrapper-hook' for running an abnormal hook as a
1201 set of "wrapping" filters, similar to around advice.
1203 ** `server-eval-at' is provided to allow evaluating forms on different
1204 Emacs server instances.
1206 ** `call-process' allows a `(:file "file")' spec to redirect STDOUT to
1207 a file.
1210 ** Variable `stack-trace-on-error' removed.
1211 Also the debugger can now "continue" from an error, which means it will jump
1212 to the error handler as if the debugger had not been invoked instead of
1213 jumping all the way to the top-level.
1216 ** The function format-time-string now supports the %N directive, for
1217 higher-resolution time stamps.
1219 ** New function `read-char-choice' reads a restricted set of characters,
1220 discarding any inputs not inside the set.
1222 ** `image-library-alist' is renamed to `dynamic-library-alist'.
1223 The variable is now used to load all kind of supported dynamic libraries,
1224 not just image libraries.  The previous name is still available as an
1225 obsolete alias.
1227 ** New variable `syntax-propertize-function'.
1228 This replaces `font-lock-syntactic-keywords' which is now obsolete.
1229 This allows syntax-table properties to be set independently from font-lock:
1230 just call syntax-propertize to make sure the text is propertized.
1231 Together with this new variable come a new hook
1232 syntax-propertize-extend-region-functions, as well as two helper functions:
1233 syntax-propertize-via-font-lock to reuse old font-lock-syntactic-keywords
1234 as-is; and syntax-propertize-rules which provides a new way to specify
1235 syntactic rules.
1237 ** New hook post-self-insert-hook run at the end of self-insert-command.
1240 ** Syntax tables support a new "comment style c" additionally to style b.
1242 ** frame-local variables cannot be let-bound any more.
1244 ** Major and minor mode changes
1246 *** `prog-mode' is a new major mode from which programming modes
1247 should be derived.
1249 **** `prog-mode-hook' can be used to enable features for programming
1250 modes, e.g. (add-hook 'prog-mode-hook 'flyspell-prog-mode) to enable
1251 on-the-fly spell checking for comments and strings.
1253 *** New hook `change-major-mode-after-body-hook', run by
1254 `run-mode-hooks' just before any other mode hooks.
1256 *** Enabled globalized minor modes can be disabled in specific modes,
1257 by running (FOO-mode-hook 0) via a mode hook.
1259 *** `define-minor-mode' accepts a new keyword :variable.
1262 ** `delete-file' and `delete-directory' now accept optional arg TRASH.
1263 Trashing is performed if TRASH and `delete-by-moving-to-trash' are
1264 both non-nil.  Interactively, TRASH defaults to t, unless a prefix
1265 argument is supplied (see Trash changes, above).
1267 ** `facemenu-read-color' is now an alias for `read-color'.
1268 The command `read-color' now requires a match for a color name or RGB
1269 triplet, instead of signaling an error if the user provides a invalid
1270 input.
1272 ** Tool-bars can display separators.
1273 Tool-bar separators are handled like menu separators in menu-bar maps,
1274 i.e. via menu entries of the form `(menu-item "--")'.
1276 ** Image API
1278 *** Animated images support (currently animated gifs only).
1280 **** `image-animated-p' returns non-nil if an image can be animated.
1282 **** `image-animate' animates a supplied image spec.
1284 **** `image-animate-timer' returns the timer object for an image that
1285 is being animated.
1287 *** `image-extension-data' is renamed to `image-metadata'.
1289 *** If Emacs is compiled with ImageMagick support (see Startup
1290 Changes), the function `imagemagick-types' returns a list of image
1291 file extensions that your installation of ImageMagick supports.  The
1292 function `imagemagick-register-types' enables ImageMagick support for
1293 these image types, minus those listed in `imagemagick-types-inhibit'.
1295 See the Emacs Lisp Reference Manual for more information.
1297 ** XML and HTML parsing
1299 *** If Emacs is compiled with libxml2 support (which is the default),
1300 two new Emacs Lisp-level functions are defined:
1301 `libxml-parse-html-region' (which will parse "real world" HTML)
1302 and `libxml-parse-xml-region' (which parses XML).  Both return an
1303 Emacs Lisp parse tree.
1305 FIXME: These should be front-ended by xml.el.
1307 ** GnuTLS
1309 *** Emacs can be compiled with libgnutls support
1310 This is the default.  You will then be able to use the functionality
1311 in gnutls.el, namely the `open-gnutls-stream' and `gnutls-negotiate'
1312 functions.  It's easiest to use these functions through
1313 `open-network-stream' because it can upgrade connections through
1314 STARTTLS opportunistically or use plain SSL, depending on your needs.
1316 Only versions 2.8.x and higher or GnuTLS have been tested.
1317 [FIXME: this statement needs clarifying, given that GnuTLS >= 2.6.6
1318 is the test used by configure.]
1320 *** gnutls-log-level
1321 Set `gnutls-log-level' higher than 0 to get debug output.  1 is for
1322 important messages, 2 is for debug data, and higher numbers are as per
1323 the GnuTLS logging conventions.  The output is in *Messages*.
1325 ** Isearch
1327 *** New hook `isearch-update-post-hook' that runs in `isearch-update'.
1330 ** Progress reporters can now "spin".
1331 The MIN-VALUE and MAX-VALUE arguments of `make-progress-reporter' can
1332 now be nil, or omitted.  This makes a "non-numeric" reporter.  Each
1333 time you call `progress-reporter-update' on that progress reporter,
1334 with a nil or omitted VALUE argument, the reporter message is
1335 displayed with a "spinning bar".
1337 ** New variable `revert-buffer-in-progress-p' is true while a buffer is
1338 being reverted, even if the buffer has a local `revert-buffer-function'.
1340 ** New variables `delayed-warnings-list' and `delayed-warnings-hook' allow
1341 deferring warnings until the main command loop is executed.
1344 ** `set-auto-mode' now respects mode: local variables at the end of files,
1345 as well as those in the -*- line.
1348 ** rx.el has a new `group-n' construct for explicitly numbered groups.
1350 ** keymaps can inherit from multiple parents.
1352 ** `debug-on-event' lets you debug Emacs when stuck because of inhibit-quit.
1355 ** New reader macro ## which stands for the empty symbol.
1356 This means that the empty symbol can now be read back.  Also, #: by itself
1357 (when not immediately followed by a possible symbol character) stands for
1358 an empty uninterned symbol.
1360 ** Obsolete functions and variables
1362 *** buffer-substring-filters is obsolete.
1363 Use `filter-buffer-substring-functions' instead.
1365 *** `byte-compile-disable-print-circle' is obsolete.
1367 *** `deferred-action-list' and `deferred-action-function' are obsolete.
1369 *** `font-lock-maximum-size' is obsolete.
1372 * Changes in Emacs 24.1 on non-free operating systems
1374 ** New configure.bat option --enable-checking builds Emacs with extra
1375 runtime checks.
1377 ** New configure.bat option --distfiles to specify files to be
1378 included in binary distribution.
1380 ** New configure.bat option --without-gnutls to disable automatic
1381 GnuTLS detection.
1383 ** New configure.bat option --lib for general library linkage, works
1384 with the USER_LIBS build variable.
1386 ** New make target `dist' to create binary distribution for MS Windows.
1388 ** Function `w32-default-color-map' is now obsolete.
1390 ** On Nextstep/OSX, the menu bar can be hidden by customizing
1391 ns-auto-hide-menu-bar.
1394 ----------------------------------------------------------------------
1395 This file is part of GNU Emacs.
1397 GNU Emacs is free software: you can redistribute it and/or modify
1398 it under the terms of the GNU General Public License as published by
1399 the Free Software Foundation, either version 3 of the License, or
1400 (at your option) any later version.
1402 GNU Emacs is distributed in the hope that it will be useful,
1403 but WITHOUT ANY WARRANTY; without even the implied warranty of
1404 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1405 GNU General Public License for more details.
1407 You should have received a copy of the GNU General Public License
1408 along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
1411 Local variables:
1412 mode: outline
1413 paragraph-separate: "[  \f]*$"
1414 end: