Provide generalized variables in core Elisp.
[bpt/emacs.git] / etc / NEWS
1 GNU Emacs NEWS -- history of user-visible changes.
2
3 Copyright (C) 2010-2012 Free Software Foundation, Inc.
4 See the end of the file for license conditions.
5
6 Please send Emacs bug reports to bug-gnu-emacs@gnu.org.
7 If possible, use M-x report-emacs-bug.
8
9 This file is about changes in Emacs version 24.
10
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.
13
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.
16
17 Temporary note:
18 +++ indicates that the appropriate manual has already been updated.
19 --- means no change in the manuals is called for.
20 When you add a new item, please add it without either +++ or ---
21 so we will look at it and add it to the manual.
22
23 \f
24 * Installation Changes in Emacs 24.2
25
26 ** New configure option '--enable-gcc-warnings', intended for developers.
27 If building with GCC, this enables compile-time checks that warn about
28 possibly-questionable C code. On a recent GNU system there should be
29 no warnings; on older and on non-GNU systems the generated warnings
30 may be useful.
31
32 ** The configure option '--disable-maintainer-mode' has been removed,
33 as it was confusingly-named and rarely useful.
34
35 ---
36 ** Emacs uses libtinfo in preference to libncurses, if available.
37
38 ---
39 ** On FreeBSD and NetBSD, configure no longer adds /usr/local/lib and
40 /usr/pkg/lib to the linker search path. You must add them yourself if
41 you want them.
42
43 ---
44 ** On Mac OS X, configure no longer automatically adds the Fink /sw
45 directories to the search path. You must add them yourself if you want them.
46
47 ---
48 ** The standalone scripts rcs-checkin and vcdiff have been removed
49 (from the bin and libexec directories, respectively). The former is
50 no longer relevant, the latter is replaced by lisp (in vc-sccs.el).
51
52 ** The configuration option '--enable-use-lisp-union-type' has been
53 renamed to '--enable-check-lisp-object-type', as the resulting
54 Lisp_Object type no longer uses a union to implement the compile time
55 check that this option enables.
56
57 \f
58 * Startup Changes in Emacs 24.2
59
60 ** Emacs no longer searches for `leim-list.el' files beneath the standard
61 lisp/ directory. There should not be any there anyway. If you have
62 been adding them there, put them somewhere else, eg site-lisp.
63
64 \f
65 * Changes in Emacs 24.2
66
67 ** New functions `system-users', `system-groups' return lists of the user
68 name, group names known to the system (where possible).
69
70 ** If your Emacs was built from a bzr checkout, the new variable
71 `emacs-bzr-version' contains information about which bzr revision was used.
72
73 ** ImageMagick support, if available, is automatically enabled.
74 It is no longer necessary to call `imagemagick-register-types'
75 explicitly to install ImageMagick image types; that function is called
76 automatically at startup, or when customizing a relevant imagemagick-
77 option.
78
79 *** Setting `imagemagick-types-inhibit' to t now disables the use of
80 ImageMagick to view images. You must call imagemagick-register-types
81 afterwards if you do not use customize to change this.
82
83 *** The new variable `imagemagick-enabled-types' also affects which
84 ImageMagick types are treated as images. The function
85 `imagemagick-filter-types' returns the list of types that will be
86 treated as images.
87
88 *** Images displayed via ImageMagick now support transparency and the
89 :background image spec property.
90
91 ** Face underlining can now use a wave.
92 See the "Face Attributes" section of the Elisp manual.
93
94 ** String values for `initial-buffer-choice' also apply to emacsclient
95 frames, if emacsclient is only told to open a new frame without
96 specifying any file to visit or expression to evaluate.
97
98 +++
99 ** You can prevent the creation of lock files by setting `create-lockfiles'
100 to nil. Use with caution, and only if you really need to.
101
102 +++
103 ** Using "unibyte: t" in Lisp source files is obsolete.
104 Use "coding: raw-text" instead.
105
106 ** Mode line changes
107
108 *** New option `mode-line-default-help-echo' specifies the help text
109 (shown in a tooltip or in the echo area) for any part of the mode line
110 that does not have its own specialized help text.
111
112 *** You can now click mouse-3 in the coding system indicator to
113 invokes `set-buffer-file-coding-system'.
114
115 +++
116 ** Setting `enable-remote-dir-locals' to non-nil allows directory
117 local variables on remote hosts.
118
119 \f
120 * Editing Changes in Emacs 24.2
121
122 ** Search changes
123
124 *** Global `M-s _' starts a symbol (identifier) incremental search,
125 and `M-s _' in Isearch toggles symbol search mode.
126 `M-s c' in Isearch toggles search case-sensitivity.
127
128 ** M-x move-to-column, if called interactively with no prefix arg, now
129 prompts for a column number.
130
131 ** `mouse-avoidance-banish-position' can now be used to customize
132 `mouse-avoidance-mode' further.
133
134 ** `C-M-f' and `C-M-b' will now move to the path name separator
135 character when doing minibuffer filename prompts.
136
137 ** `goto-char' is now bound to `M-g c'.
138
139 ** New input method `vietnamese-vni'.
140
141 \f
142 * Changes in Specialized Modes and Packages in Emacs 24.2
143
144 ** CL's main entry is now (require 'cl-lib).
145 `cl-lib' is like the old `cl' except that it uses the namespace cleanly,
146 i.e. all its definitions have the "cl-" prefix.
147
148 If `cl' provided a feature under the name `foo', then `cl-lib' provides it
149 under the name `cl-foo' instead, with the exceptions of the few definitions
150 that had to use `foo*' to avoid conflicts with pre-existing Elisp entities,
151 which have not been renamed to `cl-foo*' but just `cl-foo'.
152
153 The old `cl' is now deprecated and is nothing more than a bunch of aliases that
154 provide the old non-prefixed names.
155
156 ** Desktop
157
158 *** `desktop-path' no longer includes the "." directory. Desktop
159 files are now located in ~/.emacs.d by default.
160
161 ** A new mode for Python.
162 This provides several new features, including:
163 per-buffer shells, better indentation, Python 3 support, and improved
164 shell-interaction compatible with iPython (and virtually any other
165 text based shell).
166
167 *** Some user options have been replaced/renamed:
168 Old defcustom: | New defcustom:
169 python-indent | python-indent-offset
170 python-guess-indent | python-indent-guess-indent-offset
171 python-pdbtrack-do-tracking-p | python-pdbtrack-activate
172 python-use-skeletons | python-skeleton-autoinsert
173
174 *** Some user options have been removed:
175
176 **** `python-indent-string-contents': Strings are never indented.
177
178 **** `python-honour-comment-indentation':
179 Comments are never considered as indentation markers themselves.
180
181 **** `python-continuation-offset': Indentation is automatically
182 calculated in a pep8 compliant way depending on the context.
183
184 **** `python-shell-prompt-alist', `python-shell-continuation-prompt-alist':
185 Have no direct mapping as the shell interaction is completely different.
186
187 **** `python-python-command', `python-jython-command':
188 Replaced by `python-shell-interpreter'.
189
190 **** `inferior-python-filter-regexp', `python-remove-cwd-from-path',
191 `python-pdbtrack-minor-mode-string', `python-source-modes':
192 No longer relevant.
193
194 *** Some commands have been replaced:
195 Old command | New command
196 python-insert-class | python-skeleton-class
197 python-insert-def | python-skeleton-def
198 python-insert-for | python-skeleton-for
199 python-insert-if | python-skeleton-if
200 python-insert-try/except | python-skeleton-try
201 python-insert-try/finally | python-skeleton-try
202 python-insert-while | python-skeleton-while
203 python-find-function | python-nav-jump-to-defun
204 python-next-statement | python-nav-forward-sentence
205 python-previous-statement | python-nav-backward-sentence
206 python-send-buffer | python-shell-send-buffer
207 python-send-defun | python-shell-send-defun
208 python-send-region | python-shell-send-region
209 python-send-region-and-go | Emulate with python-shell-send-region and
210 python-shell-switch-to-shell
211 python-send-string | python-shell-send-string
212 python-switch-to-python | python-shell-switch-to-shell
213 python-describe-symbol | python-eldoc-at-point
214
215 ** VHDL-mode
216 - Support for ghdl (free vhdl compiler). Now default.
217 - Add/update support for VHDL-AMS packages.
218 - Update to VHDL'02 standard.
219 - Accept \r and \f as whitespace.
220
221 ** Diff mode
222
223 Faces for changes now use the same diff color scheme as in modern VCSes
224 where deletions are displayed in red (new faces `diff-refine-removed'
225 and `smerge-refined-removed' and new definition of `diff-removed'),
226 insertions in green (new faces `diff-refine-added' and
227 `smerge-refined-added' and new definition of `diff-added').
228 The variable `diff-use-changed-face' defines whether to use
229 the face `diff-changed', or `diff-removed' and `diff-added'
230 to highlight changes in context diffs.
231
232 ** Ediff now uses the same color scheme as Diff mode
233 on high color displays.
234
235 ** `sh-script'
236 *** Pairing of parens/quotes uses electric-pair-mode instead of skeleton-pair.
237 *** `sh-electric-here-document-mode' now controls auto-insertion of here-docs.
238 *** `sh-use-smie' lets you choose a new indentation and navigation code.
239
240 ** reStructuredText mode
241
242 *** Rebind nearly all keys making room for more keys and complying
243 better to usage in other modes. Describe bindings with C-c C-h.
244
245 *** Major revision of indentation working very similar to other
246 modes. TAB is your friend.
247
248 *** Major revision of filling working fine with most of
249 reStructuredText syntax. Support auto-filling.
250
251 *** Major revision of comment handling.
252
253 *** Major revision of fontification working with `jit-lock-mode'.
254
255 *** Cover reStructuredText syntax more closely. Improve
256 the experience for Sphinx users.
257
258 *** `rst-insert-list' inserts new list or continues existing lists.
259
260 *** Extend correct and improve customization.
261
262 *** Negative prefix argument always works for `rst-adjust'.
263
264 *** Reset window configuration after displaying TOC.
265
266 *** Package version in `rst-version'.
267
268 ** New `derived-mode' filter for Ibuffer, bound to `/ M'.
269 `/ m' is now bound to filter by used-mode, which used to be bound to `/ M'.
270
271 ** Apropos
272
273 *** The faces used by Apropos are now directly customizable.
274 These faces are named `apropos-symbol', `apropos-keybinding', and so on;
275 see the `apropos' Custom group for details.
276
277 **** The old options whose values specified faces to use were removed
278 (i.e. `apropos-symbol-face', `apropos-keybinding-face', etc.).
279
280 ** Buffer Menu
281 This package has been rewritten to use Tabulated List mode.
282
283 *** Option `Buffer-menu-buffer+size-width' is now obsolete.
284 Use `Buffer-menu-name-width' and `Buffer-menu-size-width' instead.
285
286 ** Calendar
287
288 *** The calendars produced by cal-html include holidays.
289 Customize cal-html-holidays to change this.
290
291 ** Customize
292
293 *** `custom-reset-button-menu' now defaults to t.
294
295 *** Non-option variables are never matched in `customize-apropos' and
296 `customize-apropos-options' (i.e. the prefix argument does nothing for
297 these commands now).
298
299 ** erc will look up server/channel names via auth-source and use the
300 channel keys found, if any.
301
302 ** FFAP
303
304 *** The option `ffap-url-unwrap-remote' can now be a list of strings,
305 specifying URL types which should be converted to remote file names at
306 the FFAP prompt. The default is now '("ftp").
307
308 ** Follow mode
309
310 *** The obsolete variable `follow-mode-off-hook' has been removed.
311
312 *** Follow mode no longer works by using advice.
313 The option `follow-intercept-processes' has been removed.
314
315 ** The `server-auth-key' variable can be used to set a permanent
316 shared key for Emacs Server.
317
318 ** In Perl mode, new option `perl-indent-parens-as-block' causes non-block
319 closing brackets to be aligned with the line of the opening bracket.
320
321 ** FIXME something happened to ses.el, 2012-04-17.
322
323 ** which-function-mode now applies to all applicable major modes by default.
324
325 ** Tramp
326
327 +++
328 *** The syntax has been extended in order to allow ad-hoc proxy
329 definitions. See the manual for details.
330
331 +++
332 *** Remote processes are now supported also on remote Windows host.
333
334 ** D-Bus
335
336 +++
337 *** New variables `dbus-compiled-version' and `dbus-runtime-version'.
338
339 +++
340 *** The D-Bus object manager interface is implemented.
341
342 +++
343 *** Variables of type :(u)int32 and :(u)int64 accept floating points,
344 if their value does not fit into Emacs's integer range.
345
346 +++
347 *** The function `dbus-call-method' works non-blocking now, it can be
348 interrupted by C-g. `dbus-call-method-non-blocking' is obsolete.
349
350 +++
351 *** Signals can be sent also as unicast message.
352
353 +++
354 *** The argument list of `dbus-register-signal' has been extended,
355 according to the new match rule types of D-Bus. See the manual for
356 details.
357
358 +++
359 *** `dbus-init-bus' supports private connections.
360
361 +++
362 *** There is a new function `dbus-setenv'.
363
364 +++
365 ** notifications.el supports now version 1.2 of the Notifications API.
366 The function `notifications-get-capabilities' returns the supported
367 server properties.
368
369 ** Package Menu
370
371 *** Newly-available packages are listed in the Package Menu as "new",
372 and sorted above the other "available" packages by default.
373
374 ** Tabulated List and packages derived from it
375
376 *** New command `tabulated-list-sort', bound to `S', sorts the column
377 at point, or the Nth column if a numeric prefix argument is given.
378
379 ** URL
380
381 *** Structs made by `url-generic-parse-url' have nil `attributes' slot.
382 Previously, this slot stored semicolon-separated attribute-value pairs
383 appended to some imap URLs, but this is not compatible with RFC 3986.
384 So now the `filename' slot stores the entire path and query components
385 and the `attributes' slot is always nil.
386
387 *** New function `url-encode-url' for encoding a URI string.
388 The `url-retrieve' function now uses this to encode its URL argument,
389 in case that is not properly encoded.
390
391 ** Obsolete packages:
392
393 *** assoc.el
394 In most cases, assoc+member+push+delq work just as well.
395 And in any case it's just a terrible package: ugly semantics, terrible
396 inefficiency, and not namespace-clean.
397
398 *** bruce.el
399
400 *** ledit.el
401
402 *** mailpost.el
403
404 *** mouse-sel.el
405
406 *** patcomp.el
407
408 *** cust-print.el
409
410 \f
411 * New Modes and Packages in Emacs 24.2
412 \f
413 * Incompatible Lisp Changes in Emacs 24.2
414
415 +++
416 ** Docstrings starting with `*' no longer indicate user options.
417 Only variables defined using `defcustom' are considered user options.
418 The function `user-variable-p' is now an obsolete alias for
419 `custom-variable-p'.
420
421 ** `face-spec-set' no longer sets frame-specific attributes when the
422 third argument is a frame (that usage was obsolete since Emacs 22.2).
423
424 +++
425 ** The arguments of `dbus-register-signal' are no longer just strings,
426 but keywords or keyword-string pairs. The old argument list will
427 still be supported for Emacs 24.x.
428
429 ** The following obsolete variables and varaliases have been removed:
430
431 *** `facemenu-unlisted-faces'
432 *** `rmail-decode-mime-charset'
433
434 \f
435 * Lisp changes in Emacs 24.2
436
437 ** CL-style generalized variables are now in core Elisp.
438 `setf' is autoloaded and `push' and `pop' accept generalized variables.
439
440 ** The return value of `defalias' has changed and is now undefined.
441
442 ** `defun' also accepts a (declare DECLS) form, like `defmacro'.
443 The interpretation of the DECLS is determined by `defun-declarations-alist'.
444
445 ** `macro-declaration-function' is obsolete, use `macro-declarations-alist'.
446
447 ** New function `set-temporary-overlay-map'.
448
449 ** New macros `setq-local' and `defvar-local'.
450
451 ** New error type and new function `user-error'. Doesn't trigger the debugger.
452
453 ** The functions get-lru-window, get-mru-window and get-largest-window
454 now accept a third argument to avoid choosing the selected window.
455
456 ** Completion
457
458 *** New function `completion-table-with-quoting' to handle completion
459 in the presence of quoting, such as file completion in shell buffers.
460
461 *** New function `completion-table-subvert' to use an existing completion
462 table, but with a different prefix.
463
464 ** Time
465
466 *** `current-time-string' no longer requires that its argument's year
467 must be in the range 1000..9999. It now works with any year supported
468 by the underlying C implementation.
469
470 ** `automount-dir-prefix' is obsolete.
471 ** `buffer-has-markers-at' is obsolete.
472 \f
473 * Changes in Emacs 24.2 on non-free operating systems
474
475 ** New configure.bat options on MS-Windows:
476
477 *** --without-libxml2 omits support for libxml2, even if its presence
478 is detected.
479
480 ** When invoked with the -nw switch to run on the Windows text-mode terminal,
481 Emacs now supports mouse highlight, help-echo (in the echo area), and
482 mouse-autoselect-window.
483
484 ** New function `tty-top-frame' returns the topmost frame of a text terminal.
485
486 \f
487 * Installation Changes in Emacs 24.1
488
489 ** Emacs can be compiled with Gtk+ 3.0 if you pass --with-x-toolkit=gtk3
490 to configure. Note that other libraries used by Emacs, RSVG and GConf,
491 also depend on Gtk+. You can disable them with --without-rsvg and
492 --without-gconf.
493
494 ** Emacs can be compiled with GnuTLS support.
495 This happens by default if a suitably recent version of the library is
496 found at build time. To prevent this, use the configure option
497 `--without-gnutls'. See below for GnuTLS features.
498
499 ** Emacs can be compiled with SELinux support.
500 This happens by default if a suitably recent version of the library is
501 found at build time. To prevent this, use the configure option
502 `--without-selinux'. See below for SELinux features.
503
504 ** Emacs can be compiled with ImageMagick support.
505 This happens by default if a suitably recent version of the library is
506 found at build time. To prevent this, use the configure option
507 `--without-imagemagick'. See below for ImageMagick features.
508 This feature is not available for the Nextstep or MS ports.
509
510 ** Emacs can be compiled with libxml2 support.
511 This happens by default if a suitably recent version of the library is
512 found at build time. To prevent this, use the configure option
513 `--without-xml2'. See below for libxml2 features.
514
515 ** By default, the installed Info and man pages are compressed.
516 You can disable this by configuring --without-compress-info.
517
518 ** New configure option --with-wide-int.
519 With it, Emacs integers typically have 62 bits, even on 32-bit machines.
520 On 32-bit hosts, this raises the limit on buffer sizes from about 512 MiB
521 to about 2 GiB.
522
523 ** New configure options: --with-mmdf, --with-mail-unlink, --with-mailhost.
524 These provide no new functionality, they just remove the need to edit
525 lib-src/Makefile by hand in order to use the associated features.
526
527 ** New configure option --enable-use-lisp-union-type.
528 This is only useful for Emacs developers to debug certain types of bugs.
529 This is not a new feature; only the configure flag is new.
530
531 ** The standalone programs digest-doc and sorted-doc are removed.
532 Emacs now uses Lisp commands `doc-file-to-man' and `doc-file-to-info'.
533
534 ** The standalone program `fakemail' is removed.
535 If you need it, feedmail.el provides a superset of the functionality.
536
537 \f
538 * Startup Changes in Emacs 24.1
539
540 ** The --unibyte, --multibyte, --no-multibyte, and --no-unibyte
541 command line arguments, and the EMACS_UNIBYTE environment variable, no
542 longer have any effect. (They were declared obsolete in Emacs 23.)
543
544 ** New command line option `--no-site-lisp' removes site-lisp directories
545 from load-path. -Q now implies this. This option does not affect the
546 EMACSLOADPATH environment variable (and hence has no effect for
547 Nextstep builds).
548
549 \f
550 * Changes in Emacs 24.1
551
552 ** Completion
553
554 *** Many packages now use the `completion-at-point' command,
555 rather than implementing separate completion commands.
556
557 *** `completion-at-point' now handles tags and semantic completion.
558
559 *** Completion in a non-minibuffer now tries to detect the end of completion
560 and pops down the *Completions* buffer accordingly.
561
562 *** New option `completion-cycle-threshold' allows completion cycling.
563
564 *** New option `completion-category-overrides' for overriding the
565 default completion style in certain circumstances.
566
567 *** New completion style `substring'.
568
569 *** Completion of buffer names uses `substring' completion by default.
570
571 *** The option `widget-complete-field' has been removed.
572
573 ** Mail changes
574
575 *** The first time you try sending mail, Emacs asks for a mail method.
576 This is implemented by a new default for `send-mail-function', which
577 is `sendmail-query-once'. This offers to use the smtpmail package, or
578 to use the old defaults relying on external mail facilities
579 (`sendmail-send-it' on GNU/Linux and other Unix-like systems, and
580 `mailclient-send-it' on Windows).
581
582 *** Typing C-c m in the buffer made by M-x report-emacs-bug transfers
583 the report to your desktop's preferred mail client, if there is one.
584 This uses either the "xdg-email" utility, or Mac OS's "open" command.
585
586 *** See Changes in Specialized Modes and Packages for SMTPmail changes
587 and Mail mode changes
588
589 ** Emacs server and client changes
590
591 *** New option `server-port' specifies the port for TCP Emacs servers.
592
593 *** New emacsclient argument -q/--quiet suppresses some status messages.
594
595 *** New emacsclient argument --frame-parameters specifies the frame
596 parameters of any newly-created graphical frame.
597
598 *** If emacsclient shuts down due to Emacs signaling an error,
599 its exit status is 1.
600
601 *** New emacsclient argument --parent-id ID.
602 This opens a client frame in parent X window ID, via XEmbed, similar
603 to the --parent-id argument to Emacs.
604
605 ** Internationalization changes
606
607 *** Emacs now supports display and editing of bidirectional text.
608 Right-to-left (RTL) scripts, such as Arabic, Farsi, and Hebrew, are
609 displayed in the correct visual order as expected by users of those
610 scripts. The display reordering is a "full bidirectionality" class
611 implementation of the Unicode Bidirectional Algorithm (UBA). Buffers
612 with no RTL text should look exactly the same as before.
613
614 **** New buffer-local variable `bidi-display-reordering'.
615 To disable display reordering in a buffer, change this to nil.
616
617 **** New buffer-local variable `bidi-paragraph-direction'.
618 If nil (the default), Emacs determines the base direction of each
619 paragraph from its text, as specified by the UBA. Setting the value
620 to `right-to-left' or `left-to-right' forces a base direction on each
621 paragraph.
622
623 Paragraphs with right-to-left base direction are displayed starting at
624 the right window edge.
625
626 *** Enhanced support for characters with no glyphs in available fonts,
627 or, on text terminals, characters that cannot be encoded by the
628 terminal coding system. The new option `glyphless-char-display-control'
629 specifies how to display them: as a hexadecimal code in a box, a thin
630 1-pixel space, an empty box, etc.
631
632 *** New input methods for Farsi and Bulgarian
633 (farsi-isiri-9147, farsi-transliterate-banan, bulgarian-alt-phonetic).
634
635 *** `nobreak-char-display' now also highlights Unicode hyphen chars
636 (U+2010 and U+2011).
637
638 *** New Hebrew translation of the Emacs Tutorial.
639 Type `C-u C-h t' to choose it in case your language setup doesn't
640 automatically select it.
641
642 ** An Emacs Lisp package manager is now included.
643 This is a convenient way to download and install additional packages,
644 from a package repository at http://elpa.gnu.org.
645
646 *** M-x list-packages shows a list of packages, which can be
647 selected for installation.
648
649 *** New command `describe-package', bound to `C-h P'.
650
651 *** By default, all installed packages are loaded automatically when
652 Emacs starts up. To disable this, set `package-enable-at-startup' to
653 nil. To specify the packages to load, customize `package-load-list'.
654
655 ** Custom theme changes
656
657 *** New command `M-x customize-themes', which provides a convenient
658 interface for enabling and disabling Custom themes.
659
660 *** New option `custom-theme-load-path' is the load path for themes.
661 Emacs no longer looks for Custom themes in `load-path'. The default
662 value of `custom-theme-load-path' says to look for themes in
663 `custom-theme-directory', followed by a subdirectory of
664 `data-directory' named "themes/", which contains a small selection of
665 built-in Custom themes.
666
667 *** New option `custom-safe-themes' records known-safe theme files.
668 If a theme is not in this list, Emacs queries before loading it, and
669 offers to save the theme to `custom-safe-themes' automatically. By
670 default, all themes included in Emacs are treated as safe.
671
672 ** Improved GTK integration
673
674 *** GTK scroll-bars are now placed on the right by default.
675 The function `set-scroll-bar-mode' can change this.
676
677 *** GTK tool bars can have just text, just images or images and text.
678 Customize `tool-bar-style' to choose the style. On a Gnome desktop,
679 the default is taken from desktop settings.
680
681 *** GTK tool bars can be placed on any edge of the frame.
682 The frame-parameter tool-bar-position controls this. It takes the
683 values top, left, right or bottom. The Options => Show/Hide menu has
684 entries for this.
685
686 *** The default colors for selected text (the `region' face) are taken
687 from the GTK theme when Emacs is built with GTK.
688
689 *** Emacs uses GTK tooltips by default if built with GTK.
690 You can disable this by changing `x-gtk-use-system-tooltips' to nil.
691
692 ** Graphical interface changes
693
694 *** On graphical displays, the mode-line no longer ends in dashes.
695 Also, the first dash (which does not indicate anything) is just
696 displayed as a space.
697
698 *** `menu-bar-select-buffer-function' lets you choose another operation
699 instead of `switch-to-buffer' when selecting an item in the Buffers menu.
700
701 *** Lucid menus and dialogs can display antialiased fonts if Emacs is
702 built with Xft. These fonts can be set via X resources, for example:
703 Emacs.pane.menubar.font: Courier-12
704
705 ** Exiting changes
706
707 *** Emacs now calls `kill-emacs' if it receives SIGTERM or SIGHUP,
708 or if it receives a SIGINT signal in batch mode.
709
710 *** `kill-emacs-hook' is now also run in batch mode.
711 Third-party code which adds to `kill-emacs-hook' should check if they
712 do the right thing in batch mode.
713
714 ** Scrolling changes
715
716 *** New scrolling commands `scroll-up-command' and `scroll-down-command'
717 (bound to C-v/[next] and M-v/[prior]) do not signal errors at top/bottom
718 of buffer at first key-press (instead they move to top/bottom of buffer)
719 when `scroll-error-top-bottom' is non-nil.
720
721 *** New option `scroll-error-top-bottom' (see above).
722
723 *** New scrolling commands `scroll-up-line' and `scroll-down-line'
724 scroll a line instead of full screen.
725
726 *** New property `scroll-command' should be set on a command's symbol to
727 define it as a scroll command affected by `scroll-preserve-screen-position'.
728
729 *** If you customize `scroll-conservatively' to a value greater than 100,
730 Emacs will never recenter point in the window when it scrolls due to
731 cursor motion commands or commands that move point (e.f., `M-g M-g').
732 Previously, you needed to use `most-positive-fixnum' as the value of
733 `scroll-conservatively' to achieve the same effect.
734
735 *** "Aggressive" scrolling now honors the scroll margins.
736 If you customize `scroll-up-aggressively' or
737 `scroll-down-aggressively' and move point off the window, Emacs now
738 scrolls the window so as to avoid positioning point inside the scroll
739 margin.
740
741 ** Basic SELinux support has been added.
742 This requires Emacs to be linked with libselinux at build time.
743
744 *** Emacs preserves the SELinux file context when backing up.
745 Also, the function `copy-file' has an extra optional argument for
746 preserving SELinux context, and the return value of `backup-buffer'
747 now includes the SELinux context.
748
749 *** New functions `file-selinux-context' and `set-file-selinux-context'
750 get and set the SELinux context of a file.
751
752 ** Trash changes
753
754 *** `delete-by-moving-to-trash' now only affects commands that specify
755 trashing. This avoids inadvertently trashing temporary files.
756
757 *** Calling `delete-file' or `delete-directory' with a prefix argument
758 now forces true deletion, regardless of `delete-by-moving-to-trash'.
759
760 ** File- and directory-local variable changes
761
762 *** You can stop directory local vars from applying to subdirectories.
763 Add an element (subdirs . nil) to the alist portion of any variables
764 settings to indicate that the section should not apply to
765 subdirectories.
766
767 *** Directory local variables can apply to some file-less buffers.
768 Affected modes include dired, vc-dir, and log-edit. For example,
769 adding "(diff-mode . ((mode . whitespace)))" to .dir-locals.el will
770 turn on `whitespace-mode' for *vc-diff* buffers. Modes should call
771 `hack-dir-local-variables-non-file-buffer' to support this.
772
773 *** Using "mode: MINOR-MODE" to enable a minor mode is deprecated.
774 Instead, use "eval: (minor-mode 1)".
775
776 *** The variable `inhibit-first-line-modes-regexps' has been renamed
777 to `inhibit-local-variables-regexps'. As the name suggests, it now
778 applies to ALL file local variables, not just -*- lines. The
779 associated `inhibit-first-line-modes-suffixes' has been renamed in the
780 corresponding way.
781
782 ** Window changes
783
784 *** The `quit-window' command now restores the last buffer displayed
785 in the quitted window.
786
787 *** Resizing an Emacs frame now preserves proportional window sizes,
788 modulo restrictions like window minimum sizes and fixed-size windows.
789
790 *** The behavior of `display-buffer' is now customizable in detail.
791
792 **** New option `display-buffer-base-action' specifies a list of
793 user-determined display "actions" (functions and optional arguments
794 for choosing the displaying window).
795
796 This takes precedence over the default display action, which is
797 specified by `display-buffer-fallback-action'.
798
799 **** New option `display-buffer-alist' maps buffer name regexps to
800 display actions, taking precedence over `display-buffer-base-action'.
801
802 *** New option `window-combination-limit'.
803 The new option `window-combination-limit' allows to return the space
804 obtained for resizing or creating a window more reliably to the window
805 from which such space was obtained.
806
807 *** New option `window-combination-resize'.
808 The new option `window-combination-resize' allows to split a window that
809 otherwise cannot be split because it's too small by stealing space from
810 other windows in the same combination. Subsequent resizing or deletion
811 of the window will resize all windows in the same combination as well.
812
813 *** New option `frame-auto-hide-function' lets you choose between
814 iconifying or deleting a frame when burying a buffer in a dedicated
815 frame, or quitting a window showing a buffer in a frame of its own.
816
817 *** New commands `maximize-window' and `minimize-window'.
818 These maximize and minimize the size of a window within its frame.
819
820 *** New commands `switch-to-prev-buffer' and `switch-to-next-buffer'.
821 These functions allow to navigate through the live buffers that have
822 been shown in a specific window.
823
824 ** Minibuffer changes
825
826 *** The inactive minibuffer has its own major mode `minibuffer-inactive-mode'.
827 This is handy for minibuffer-only frames, and is also used for the feature
828 where mouse-1 pops up *Messages*"', which can now easily be changed.
829
830 *** Minibuffers set `truncate-lines' to nil.
831 If you want to change the value to something else, you could use
832 for example `minibuffer-setup-hook'.
833
834 ** `auto-mode-case-fold' is now enabled by default.
835
836 ** `backup-by-copying-when-mismatch' now defaults to t.
837
838 ** New basic faces `error', `warning', `success'.
839 These are used to highlight text indicating failure, caution or
840 successful operation.
841
842 ** New option `list-colors-sort' defines the color sort order
843 for `list-colors-display'.
844
845 ** The variable `focus-follows-mouse' now always defaults to nil.
846
847 \f
848 * Editing Changes in Emacs 24.1
849
850 ** Search changes
851
852 *** C-y in Isearch is now bound to `isearch-yank-kill', instead of
853 `isearch-yank-line'.
854
855 *** M-y in Isearch is now bound to `isearch-yank-pop', instead of
856 `isearch-yank-kill'.
857
858 *** M-s C-e in Isearch is now bound to `isearch-yank-line'.
859
860 ** New commands `count-words-region' and `count-words'.
861
862 *** M-= is bound to `count-words-region', not `count-lines-region'.
863 The `count-words-region' command, when called interactively, reports
864 the number of lines, words, and characters in the region. It is a
865 superset of the old `count-lines-region', which is now an obsolete
866 alias for it.
867
868 ** The command `just-one-space' (M-SPC), if given a negative argument,
869 also deletes newlines around point.
870
871 ** Deletion changes
872
873 *** New option `delete-active-region'.
874 If non-nil, [delete] and DEL delete the region if it is active and no
875 prefix argument is given. If set to `kill', those commands kill
876 instead.
877
878 *** New command `delete-forward-char', bound to [delete].
879 This is meant for interactive use, and obeys `delete-active-region'.
880 The command `delete-char' does not obey `delete-active-region'.
881
882 *** `delete-backward-char' is now a Lisp function.
883 Apart from obeying `delete-active-region', its behavior is unchanged.
884 However, the byte compiler now warns if it is called from Lisp; Lisp
885 callers should use delete-char with a negative argument instead.
886
887 *** The option `mouse-region-delete-keys' has been deleted.
888
889 ** Selection changes.
890
891 The default handling of clipboard and primary selections has been
892 changed to conform with modern X applications. In short, most
893 commands for killing and yanking text now use the clipboard, while
894 mouse commands use the primary selection.
895
896 In the following, we provide a list of these changes, followed by a
897 list of steps to get the old behavior back if you prefer that.
898
899 *** `select-active-regions' now defaults to t.
900 Merely selecting text (e.g. with drag-mouse-1) no longer puts it in
901 the kill ring. The selected text is put in the primary selection, if
902 the system possesses a separate primary selection facility (e.g. X).
903
904 **** `select-active-regions' also accepts a new value, `only'.
905 This means to only set the primary selection for temporarily active
906 regions (usually made by mouse-dragging or shift-selection);
907 "ordinary" active regions, such as those made with C-SPC followed by
908 point motion, do not alter the primary selection.
909
910 **** `mouse-drag-copy-region' now defaults to nil.
911
912 *** mouse-2 is now bound to `mouse-yank-primary'.
913 This pastes from the primary selection, ignoring the kill-ring.
914 Previously, mouse-2 was bound to `mouse-yank-at-click'.
915
916 *** `x-select-enable-clipboard' now defaults to t on all platforms.
917
918 *** `x-select-enable-primary' now defaults to nil.
919 Thus, commands that kill text or copy it to the kill-ring (such as
920 M-w, C-w, and C-k) also use the clipboard---not the primary selection.
921
922 **** The "Copy", "Cut", and "Paste" items in the "Edit" menu are now
923 exactly equivalent to M-w, C-w, and C-y respectively.
924
925 **** Note that on MS-Windows, `x-select-enable-clipboard' was already
926 non-nil by default, as Windows does not support the primary selection
927 between applications.
928
929 *** To return to the previous behavior, do the following:
930
931 **** Change `select-active-regions' to nil.
932 **** Change `mouse-drag-copy-region' to t.
933 **** Change `x-select-enable-primary' to t (on X only).
934 **** Change `x-select-enable-clipboard' to nil.
935 **** Bind `mouse-yank-at-click' to mouse-2.
936
937 *** Support for X cut buffers has been removed.
938
939 *** X clipboard managers are now supported.
940 To inhibit this, change `x-select-enable-clipboard-manager' to nil.
941
942 ** New command `C-x r N' (`rectangle-number-lines') numbers the lines
943 in the current rectangle. With a prefix argument, this prompts for a
944 number to count from and for a format string.
945
946 ** `redisplay-dont-pause' now defaults to t.
947 This makes Emacs feel more responsive to editing commands that arrive
948 at high rate, e.g. if you lean on some key, because stopping redisplay
949 in the middle (when this variable is nil) forces more expensive
950 updates later on, and Emacs appears to be unable to keep up.
951
952 ** The behavior of <TAB> for active regions in Text mode has changed.
953 In Text and related modes, typing <TAB> (`indent-for-tab-command')
954 when the region is active causes Emacs to indent all the lines in the
955 region, aligning them with the line previous to the first line in the
956 region (or with the left margin if there is no previous line).
957
958 ** When `occur' is called with a prefix argument, matching strings are
959 collected into the `*Occur*' buffer without line numbers. If there
960 are parenthesized subexpressions in the specified regexp, `occur'
961 reads replacement text that may contain \\& and \\N whose convention
962 follows `replace-match'.
963
964 \f
965 * Changes in Specialized Modes and Packages in Emacs 24.1
966
967 ** Archive Mode has basic support for browsing and updating 7z archives.
968
969 ** BibTeX mode
970
971 *** BibTeX mode now supports biblatex.
972 Use the variable `bibtex-dialect' to select different BibTeX dialects.
973 `bibtex-entry-field-alist' is now an obsolete alias for
974 `bibtex-BibTeX-entry-alist'.
975
976 *** New command `bibtex-search-entries', bound to C-c C-a.
977
978 *** New `bibtex-entry-format' option `sort-fields', disabled by default.
979
980 *** New variable `bibtex-search-entry-globally'.
981
982 ** Browse-url
983
984 *** New option `browse-url-mailto-function' specifies how to handle "mailto:"s.
985
986 *** The default browser used by the package is now the "xdg-open" program,
987 on platforms that support it. This calls your desktop's preferred browser.
988
989 ** Calendar, Diary, and Appt
990
991 *** Diary entries can contain non-printing "comments".
992 See the variable `diary-comment-start'.
993
994 *** Appointments can specify their individual warning times.
995 See the variable `appt-warning-time-regexp'.
996
997 *** The function specified by `appt-disp-window-function' may be passed
998 lists of arguments if multiple appointments are due at similar times.
999 If you are using a custom function for this, you should update it.
1000
1001 *** New function `diary-hebrew-birthday'.
1002
1003 *** Elements of `calendar-day-abbrev-array' and `calendar-month-abbrev-array'
1004 may no longer be nil, but must all be strings.
1005
1006 *** The obsolete (since Emacs 22.1) method of enabling the appt
1007 package by adding `appt-make-list' to `diary-hook' has been removed.
1008 Use `appt-activate' instead.
1009
1010 *** Some appt variables (obsolete since Emacs 22.1) have been removed:
1011 appt-issue-message (use the function appt-activate)
1012 appt-visible/appt-msg-window (use the variable appt-display-format)
1013
1014 *** Some diary function aliases (obsolete since Emacs 22.1) have been removed:
1015 view-diary-entries, list-diary-entries, show-all-diary-entries
1016
1017 ** CC Mode
1018
1019 *** New feature to "guess" the style in an existing buffer.
1020 The main entry point is M-x c-guess.
1021
1022 *** Java Mode now supports Java 5.0 (Tiger) and 6 (Mustang).
1023
1024 *** `c-beginning-of-defun' and `c-end-of-defun' now respect nested scopes.
1025 Thus C-M-a will, by default, go to the beginning of the immediate function,
1026 not the top level.
1027
1028 *** "Macros with semicolons" can be registered for correct indentation.
1029 Where such a macro ends a line (no semicolon) the next statement is no longer
1030 parsed as a statement continuation.
1031
1032 ** Comint and modes derived from it use the standard completion code.
1033
1034 ** Compilation mode
1035
1036 *** Compilation mode can be used without Font Lock mode.
1037 `compilation-parse-errors-function' is now obsolete.
1038
1039 *** New variable `compilation-filter-start', which is bound while
1040 `compilation-filter-hook' runs. It records the start position of the
1041 text inserted by `compilation-filter'.
1042
1043 *** `compilation-error-screen-columns' and `compilation-first-column'
1044 are obeyed in the editing buffer. So programming language modes can
1045 set them, whereas previously only the value in the *Compilation*
1046 buffer was used.
1047
1048 ** Customize
1049
1050 *** Customize buffers now contain a search field.
1051 The search is performed using `customize-apropos'.
1052 To turn off the search field, set `custom-search-field' to nil.
1053
1054 *** Custom options now start out hidden if at their default values.
1055 Use the arrow to the left of the option name to toggle visibility.
1056
1057 *** custom-buffer-sort-alphabetically now defaults to t.
1058
1059 *** The color widget now has a "Choose" button, which allows you to
1060 choose a color via `list-colors-display'.
1061
1062 ** D-Bus
1063
1064 *** It is now possible to access buses other than the default system
1065 or session bus.
1066
1067 *** The `dbus-register-method' and `dbus-register-property' functions
1068 optionally do not register names.
1069
1070 *** The new function `dbus-register-service' registers a known service
1071 name on a D-Bus without also registering a property or a method.
1072
1073 ** Dired-x
1074
1075 *** C-x C-j (`dired-jump') and C-x 4 C-j (`dired-jump-other-window'),
1076 if called with a prefix argument, read a file name from the minibuffer
1077 instead of using the current buffer.
1078
1079 *** The "dired local variables" feature of Dired-x is obsolete.
1080 The standard directory local variables feature replaces it.
1081
1082 ** ERC changes
1083
1084 *** New options `erc-autojoin-timing' and `erc-autojoin-delay',
1085 controlling attempts to autojoin a channel.
1086
1087 *** New variable `erc-coding-system-precedence': If we use `undecided'
1088 as the server coding system, this variable will then be consulted.
1089 The default is to decode strings that can be decoded as utf-8 as
1090 utf-8, and do the normal `undecided' decoding for the rest.
1091
1092 ** Eshell changes
1093
1094 *** The default value of `eshell-directory-name' has changed
1095 to be an "eshell" directory in `user-emacs-directory'.
1096 The old "~/.eshell/" directory is still used if it exists, though.
1097
1098 ** gdb-mi
1099
1100 *** The M-x gdb command now uses the GDB Machine Interface protocol.
1101 It now supports multithread non-stop debugging and simultaneous
1102 debugging of several threads.
1103
1104 ** Image mode
1105
1106 *** RET (`image-toggle-animation') toggles animation, if applicable.
1107 Animation plays once, unless the option `image-animate-loop' is non-nil.
1108
1109 ** Info
1110
1111 *** New command M-x info-display-manual displays a named Info manual.
1112 If that manual is already visited in some Info buffer, it displays
1113 that buffer. (This is handy if you have many manuals in many *info*
1114 buffers, and don't remember the name of the buffer visiting the manual
1115 you want to consult.) Otherwise, it loads and displays the manual.
1116
1117 *** `e' is now bound to `end-of-buffer' rather than to `Info-edit'.
1118 This is for compatibility with the stand-alone Info reader program,
1119 and also because `Info-edit' is a rarely used command that is disabled
1120 by default.
1121
1122 ** Mail mode changes (not Message mode)
1123
1124 *** New command M-x mail-add-attachment for adding MIME attachments
1125
1126 *** The command M-x mail-attach-file was renamed to M-x mail-insert-file.
1127 (Its name is misleading, since it has nothing to do with MIME
1128 attachments.) The old name is now an obsolete alias to the new name.
1129
1130 ** MH-E has been updated to MH-E version 8.3.1.
1131 See MH-E-NEWS for details.
1132
1133 ** Modula-2 mode provides auto-indentation.
1134
1135 ** mpc.el: Can use pseudo tags of the form tag1|tag2 as a union of two tags.
1136
1137 ** nXML mode no longer binds C-RET to `nxml-complete'.
1138 Completion is now performed via `completion-at-point', bound to C-M-i
1139 or M-TAB. If `nxml-bind-meta-tab-to-complete-flag' is non-nil (the
1140 default), this performs tag completion.
1141
1142 ** Org mode has been updated to version 7.8.09.
1143 See ORG-NEWS for details.
1144
1145 ** Prolog mode has been completely revamped, with lots of additional
1146 functionality such as more intelligent indentation, electricity,
1147 support for more variants, including Mercury, and a lot more.
1148
1149 ** Rmail
1150
1151 *** The command `rmail-epa-decrypt' decrypts OpenPGP data
1152 in the Rmail incoming message.
1153
1154 *** The variable `rmail-message-filter' no longer has any effect.
1155 This change was made in Emacs 23.1 but was not advertised at the time.
1156 Try using `rmail-show-message-hook' instead.
1157
1158 ** Shell mode
1159
1160 *** M-x shell prompts for the shell path name if the default directory
1161 is a remote file name and neither the environment variable $ESHELL nor
1162 the variable `explicit-shell-file-name' is set.
1163
1164 *** TAB is now bound to the standard `completion-at-point' command,
1165 which now implements the pcomplete rules for shell command completion.
1166
1167 ** SMTPmail
1168
1169 *** SMTPmail now uses encrypted connections (via STARTTLS) by default
1170 if the mail server supports them. This uses either built-in GnuTLS
1171 support, or the starttls.el library. Customize `smtpmail-stream-type'
1172 to change this.
1173
1174 *** The variable `smtpmail-auth-credentials' has been removed.
1175 By default, the information is now stored in the file ~/.authinfo.
1176 This was the default value of smtpmail-auth-credentials. If you had
1177 customized smtpmail-auth-credentials to a list of user names and
1178 passwords, those settings are not used. During your first connection
1179 to the smtp server, Emacs will prompt for the user name and password,
1180 and offer to save them to ~/.authinfo. Or you can manually copy the
1181 credentials to ~/.authinfo. For example, if you had
1182
1183 (setq smtpmail-auth-credentials
1184 '(("mail.example.org" 25 "jim" "s!cret")))
1185
1186 then the equivalent line in ~/.authinfo would be
1187
1188 machine mail.example.org port 25 login jim password s!cret
1189
1190 See the auth-source manual for more information, e.g. on encrypting
1191 the credentials file.
1192
1193 *** The variable `smtpmail-starttls-credentials' has been removed.
1194 If you had that set, you need to put
1195
1196 machine smtp.whatever.foo port 25 key "~/.my_smtp_tls.key" cert "~/.my_smtp_tls.cert"
1197
1198 in your ~/.authinfo file instead.
1199
1200 ** SQL mode
1201
1202 *** New options `sql-port', `sql-connection-alist', `sql-send-terminator',
1203 and `sql-oracle-scan-on'.
1204
1205 *** New options controlling prompting for login parameters.
1206 Each supported product has a custom variable `sql-*-login-params',
1207 which is a list of the parameters to be prompted for before a
1208 connection is established.
1209
1210 *** The command `sql-product-interactive' now takes a prefix argument,
1211 which causes it to prompt for an SQL product.
1212
1213 *** Product-specific SQL interactive commands now take prefix arguments.
1214 These commands (`sql-sqlite', `sql-postgres', `sql-mysql', etc.),
1215 given a prefix argument, prompt for a name for the SQL interactive
1216 buffer. This reduces the need for calling `sql-rename-buffer'.
1217
1218 *** SQL interactive modes suppress command continuation prompts, and
1219 replace tabs with spaces. The first change impacts multiple line SQL
1220 statements entered with C-j between each line, statements yanked into
1221 the buffer and statements sent with `sql-send-*' functions. The
1222 second prevents the MySQL and Postgres interpreters from listing
1223 object name completions when sent text via `sql-send-*' functions.
1224
1225 *** New command `sql-connect' starts a predefined SQLi session,
1226 using the login parameters from `sql-connection-alist'.
1227
1228 *** New "Save Connection" menu item in SQLi buffers.
1229 This gathers the login params specified for the SQLi session, if it
1230 was not started by a connection, and saves them as a new connection.
1231
1232 *** New commands for listing database objects and details:
1233 sql-list-all and sql-list-table.
1234
1235 *** An API for manipulating SQL product definitions has been added.
1236
1237 ** TeX modes
1238
1239 *** latex-electric-env-pair-mode keeps \begin..\end matched on the fly.
1240
1241 ** Tramp
1242
1243 *** New inline access method "ksu" (kerberized su).
1244
1245 *** The following access methods are discontinued: "ssh1_old",
1246 "ssh2_old", "scp1_old", "scp2_old", "imap", "imaps" and "fish".
1247
1248 *** The user option `remote-file-name-inhibit-cache' controls whether
1249 remote file attributes are cached for better performance.
1250
1251 *** The option `ange-ftp-binary-file-name-regexp' has changed its
1252 default value to "".
1253
1254 *** Handlers for `file-selinux-context' and `set-file-selinux-context'
1255 for remote machines which support SELinux.
1256
1257 ** New function `url-queue-retrieve', which behaves like url-retrieve,
1258 but with limits (`url-queue-parallel-processes', `url-queue-timeout') on
1259 the degree of parallelism.
1260
1261 ** VC and related modes
1262
1263 *** Support for pulling on distributed version control systems.
1264 The command C-x v + (`vc-pull') runs a "pull" operation, if it is
1265 supported (currently with Bzr, Git, and Mercurial), to update the
1266 current branch and working tree. A prefix argument means to prompt
1267 the user for specifics, e.g. a pull location.
1268
1269 *** `vc-update' is now an alias for `vc-pull'.
1270
1271 *** Support for merging on distributed version control systems.
1272 The command C-x v m (`vc-merge') now runs a "merge" operation, if it
1273 is supported (currently with Bzr, Git, and Mercurial), to merge
1274 changes from another branch into the current one. It prompts for
1275 specifics, e.g. a merge source.
1276
1277 *** New option `vc-revert-show-diff' controls whether `vc-revert'
1278 shows a diff while querying the user. It defaults to t.
1279
1280 *** Log entries in some Log View buffers can be toggled to display a
1281 longer description by typing RET (log-view-toggle-entry-display).
1282 This is currently supported for Bzr, Git, and Mercurial (to support
1283 another backend, define a `log-view-expanded-log-entry-function').
1284 In the Log View buffers made by C-x v L (`vc-print-root-log'), you can
1285 use this to display the full log entry for the revision at point.
1286
1287 *** New command `vc-ediff' allows visual comparison of two revisions
1288 of a file similar to `vc-diff', but using ediff backend.
1289
1290 *** The option `vc-initial-comment' was removed in Emacs 23.2, but
1291 this was not advertised at the time.
1292
1293 *** `vc-toggle-read-only' is an obsolete alias for `toggle-read-only'.
1294 Since Emacs 23, it has done the same thing as `toggle-read-only', but
1295 this was not advertised at the time.
1296
1297 ** Obsolete modes
1298
1299 *** abbrevlist.el
1300
1301 *** erc-hecomplete.el (use erc-pcomplete.el instead)
1302
1303 *** partial-completion-mode (complete.el) is obsolete.
1304 You can get a comparable behavior with:
1305 (setq completion-styles '(partial-completion initials))
1306 (setq completion-pcm-complete-word-inserts-delimiters t)
1307
1308 *** pc-mode.el is obsolete (CUA mode is much more comprehensive).
1309
1310 *** pgg is obsolete (use EasyPG instead).
1311
1312 *** sregex.el is obsolete, since rx.el is a strict superset.
1313
1314 *** s-region.el and pc-select.el are obsolete.
1315 They are superseded by shift-select-mode, enabled by default since 23.1.
1316
1317 *** vc-mcvs.el is obsolete (for lack of a maintainer).
1318
1319 ** Miscellaneous
1320
1321 *** The Landmark game is now invoked with `landmark', not `lm'.
1322 Its functions and variables have been similarly renamed.
1323
1324 *** In `ido-file-completion-map', C-v is no longer bound to `ido-toggle-vc'.
1325 (This interfered with cua-mode.)
1326
1327 *** f90.el has some support for Fortran 2008 syntax.
1328
1329 *** `copyright-fix-years' can optionally convert consecutive years to ranges.
1330
1331 *** New command `nato-region' converts text to NATO phonetic alphabet.
1332
1333 \f
1334 * New Modes and Packages in Emacs 24.1
1335
1336 ** Occur Edit mode applies edits made in *Occur* buffers to the
1337 original buffers. It is bound to "e" in Occur mode.
1338
1339 ** New global minor mode electric-pair-mode.
1340 When enabled, typing an open parenthesis automatically inserts the
1341 matching closing one.
1342
1343 ** New global minor mode electric-indent-mode.
1344 When enabled, typing certain characters triggers reindentation.
1345 Major modes wishing to use this can set electric-indent-chars or
1346 electric-indent-functions.
1347
1348 ** New global minor mode electric-layout-mode.
1349 When enabled, typing certain characters automatically inserts newlines.
1350 Major modes wishing to use this can set electric-layout-rules.
1351
1352 ** tabulated-list.el provides a generic major mode for tabulated data,
1353 from which other modes can be derived.
1354
1355 ** pcase.el provides the ML-style pattern matching macro `pcase'.
1356
1357 ** secrets.el is an implementation of the Secret Service API, an
1358 interface to password managers like GNOME Keyring or KDE Wallet. The
1359 Secret Service API requires D-Bus for communication. The command
1360 `secrets-show-secrets' offers a buffer with a visualization of the
1361 secrets.
1362
1363 ** notifications.el provides an implementation of the Desktop
1364 Notifications API. It requires D-Bus for communication.
1365
1366 ** soap-client.el supports access to SOAP web services from Emacs.
1367 soap-inspect.el is an interactive inspector for SOAP WSDL structures.
1368
1369 ** New generic mode, xmodmap-generic-mode, for xmodmap files.
1370
1371 ** New emacs-lock.el package.
1372 The previous version has been moved to obsolete/old-emacs-lock.el.
1373 Now, there is a proper minor mode `emacs-lock-mode'. Protection
1374 against exiting Emacs and killing the buffer can be set separately.
1375 The mechanism for automatically turning off protection for buffers
1376 with dead inferior processes has been generalized.
1377
1378 \f
1379 * Incompatible Lisp Changes in Emacs 24.1
1380
1381 ** Passing a nil argument to a minor mode function call now ENABLES
1382 the minor mode unconditionally. This is so that you can write e.g.
1383
1384 (add-hook 'text-mode-hook 'foo-mode)
1385
1386 to enable foo-mode in Text mode buffers, removing the need for
1387 `turn-on-foo-mode' style functions. This affects all mode commands
1388 defined by `define-minor-mode'. If called interactively, the mode
1389 command still toggles the minor mode.
1390
1391 ** The return value of `backup-buffer' has changed.
1392 It is now a list of three elements, where the second element is a list
1393 describing the original file's SELinux context. If Emacs or the
1394 system lacks SELinux support, the context list is (nil nil nil nil).
1395 See "Basic SELinux support" above, under "Changes in Emacs 24.1".
1396
1397 ** `char-direction-table' and the `char-direction' function were deleted.
1398 They were buggy and inferior to the new support of bidirectional
1399 editing introduced in Emacs 24. If you need the bidirectional
1400 properties of a character, use `get-char-code-property' with the last
1401 argument `bidi-class'.
1402
1403 ** `copy-directory' now copies the source directory as a subdirectory
1404 of the target directory, if the latter is an existing directory. The
1405 new optional arg COPY-CONTENTS, if non-nil, makes the function copy
1406 the contents directly into a pre-existing target directory.
1407
1408 ** For mouse click input events in the text area, the Y pixel
1409 coordinate in the POSITION list now counts from the top of the text
1410 area, excluding any header line. Previously, it counted from the top
1411 of the header line.
1412
1413 ** Support for "old-style" backquotes, obsolete for 10+ years, has
1414 been further reduced. Now a backquote not followed by a space is
1415 always treated as a "new-style" backquote. Please remove all
1416 "old-style" backquotes from your code. If your code uses backquotes
1417 as documented in the Elisp manual, and compiles without warning, then
1418 you have nothing to do in this regard. Code not following the
1419 appropriate conventions may fail to compile.
1420
1421 The most common cause of trouble seems to be an old-style backquote
1422 followed by a newline. Another cause of trouble is vector notation
1423 for key sequence notation: instead of [(control ,)] and [(control ')],
1424 you should write [(control ?,)] and [(control ?')], which will work in
1425 older Emacsen too.
1426
1427 ** The macro `eval-at-startup' was removed in Emacs 23.2, but this
1428 was not advertised at the time. The function `custom-initialize-delay'
1429 replaced all known uses.
1430
1431 ** `view-buffer' now treats special mode-class in the same way that
1432 `view-file' has since Emacs 22 (i.e. it won't enable View mode if the
1433 major mode is special).
1434
1435 ** Menu and tool bar changes
1436
1437 *** During startup, Emacs no longer adds entries for `menu-bar-lines'
1438 and `tool-bar-lines' to `default-frame-alist' and `initial-frame-alist'.
1439 With these alist entries omitted, `make-frame' checks the value of the
1440 variable `menu-bar-mode'/`tool-bar-mode' to determine whether to create
1441 a menu-bar or tool-bar, respectively. If the alist entries are added,
1442 they override the value of `menu-bar-mode'/`tool-bar-mode'.
1443
1444 *** The menu bar bindings's caches are not used any more.
1445 Use (where-is-internal <def> nil t) instead.
1446
1447 ** Regions created by mouse dragging are now normal active regions,
1448 similar to those created by shift-selection (see Selection changes
1449 above). In previous Emacs versions, these regions were delineated by
1450 `mouse-drag-overlay'; that variable has been removed.
1451
1452 ** The fourth argument of `filter-buffer-substring' has been removed.
1453 If you want to remove text properties from the final result, simply
1454 pass the result through substring-no-properties.
1455
1456 ** cl.el no longer provides `cl-19'.
1457
1458 ** The following obsolete functions and aliases have been removed
1459 (the appropriate new function is given in parentheses; "not needed"
1460 means you can just remove all calls to the function in question):
1461
1462 *** `comint-kill-output' (`comint-delete-output')
1463 *** `decompose-composite-char' (`char-to-string')
1464 *** `outline-visible' (`outline-invisible-p')
1465 *** `internal-find-face' (`facep')
1466 *** `internal-get-face' (`facep and check-face')
1467 *** `frame-update-faces' (not needed)
1468 *** `frame-update-face-colors' (`frame-set-background-mode')
1469 *** `x-frob-font-weight' and `x-frob-font-slant' (`make-face-*' functions)
1470 *** `x-make-font-bold and x-make-font-demibold (`make-face-bold')
1471 *** `x-make-font-italic' and `x-make-font-oblique' (`make-face-italic')
1472 *** `x-make-font-bold-italic' (`make-face-bold-italic')
1473 *** `x-make-font-unbold' (`make-face-unbold')
1474 *** `x-make-font-unitalic' (`make-face-unitalic')
1475 *** `mldrag-drag-mode-line' (`mouse-drag-mode-line')
1476 *** `mldrag-drag-vertical-line' (`mouse-drag-vertical-line')
1477 *** `iswitchb-default-keybindings' (`iswitchb-mode')
1478 *** `char-bytes' (== 1)
1479 *** `isearch-return-char' (`isearch-printing-char')
1480 *** `make-local-hook' (not needed)
1481 *** `set-screen-height' (`set-frame-height')
1482 *** `set-screen-width' (`set-frame-width')
1483
1484 ** The following obsolete variables and varaliases have been removed
1485 (the appropriate new variable is given in parentheses):
1486
1487 *** `checkdoc-minor-keymap' (`checkdoc-minor-mode-map')
1488 *** `vc-header-alist' (`vc-BACKEND-header')
1489 *** `directory-sep-char' (== ?/)
1490 *** `font-lock-defaults-alist' (`font-lock-defaults')
1491 *** `e' (`float-e').
1492
1493 ** The following obsolete files were removed:
1494 sc.el, x-menu.el, rnews.el, rnewspost.el
1495
1496 ** The format of the finder-inf.el file has changed, since the Finder
1497 mechanism is now based on the package system. The variable
1498 `finder-package-info' is replaced by `package--builtins' and
1499 `finder-keywords-hash'.
1500
1501 ** When generating autoloads, `update-directory-autoloads' no longer
1502 assumes every inspected file is in your `load-path'. It instead
1503 generates relative names according to the current `load-path'.
1504
1505 \f
1506 * Lisp changes in Emacs 24.1
1507
1508 ** Code can now use lexical scoping by default instead of dynamic scoping.
1509 The `lexical-binding' variable enables lexical scoping for local
1510 variables. It is typically set via a file-local variable in the first
1511 line of the file, in which case it applies to all the code in that
1512 file.
1513
1514 *** `eval' takes a new optional argument `lexical' to choose the new lexical
1515 binding instead of the old dynamic binding mode.
1516
1517 *** Lexically scoped interpreted functions are represented with a new form
1518 of function value which looks like (closure ENV ARGS &rest BODY).
1519
1520 *** New macro `letrec' to define recursive local functions.
1521
1522 *** `defvar' and `defconst' now mark the variable as special (dynamic).
1523 So do `defcustom' and other forms that call `defvar' as a subroutine.
1524
1525 *** New function `special-variable-p' to check whether a variable is
1526 declared as dynamically bound.
1527
1528 *** The form ((lambda ...) ...) is deprecated.
1529
1530 ** An Emacs Lisp testing tool is now included.
1531 Emacs Lisp developers can use this tool to write automated tests for
1532 their code. See the ERT info manual for details.
1533
1534 ** Changes for bidirectional display and editing
1535
1536 *** New function `current-bidi-paragraph-direction'.
1537 This returns the base direction of the paragraph at point.
1538
1539 *** New function `bidi-string-mark-left-to-right'.
1540 Given a string containing characters from right-to-left scripts, this
1541 function returns another string which can be safely inserted into a
1542 buffer, such that any following text will be always displayed to the
1543 right of that string. (This works by appending an invisible Unicode
1544 "LEFT-TO-RIGHT MARK" character if the argument string might need it.)
1545
1546 This is useful when the buffer has overall left-to-right paragraph
1547 direction and you need to insert a string whose contents are not known
1548 in advance, without disrupting the layout of the line.
1549
1550 ** Window changes
1551
1552 *** Window tree functions are accessible in Elisp.
1553 Functions are provided to return the parent, siblings or child windows
1554 of any window including internal windows (windows not associated with a
1555 buffer) in the window tree.
1556
1557 **** New function `window-valid-p' gives non-nil for live and internal
1558 windows.
1559
1560 **** Window manipulation can deal with internal windows.
1561 Many window handling functions like `split-window', `delete-window', or
1562 `delete-other-windows' as well as the window resizing functions can now
1563 act on any window including internal ones.
1564
1565 *** window-total-height/-width vs window-body-height/-width.
1566 The function `window-height' has been renamed to `window-total-height'
1567 and `window-width' has been renamed to `window-body-width'. The old
1568 names are provided as aliases. Two new functions `window-total-width'
1569 and `window-body-height' are provided.
1570
1571 *** Window parameters specific to window handling functions.
1572 For each window you can specify a parameter to override the default
1573 behavior of a number of functions like `split-window', `delete-window'
1574 and `delete-other-windows'. The variable `ignore-window-parameters'
1575 allows to ignore processing such parameters.
1576
1577 *** New semantics of third argument of `split-window'.
1578 The third argument of `split-window' has been renamed to SIDE and can be
1579 set to any of the values 'below, 'right, 'above, or 'left to make the
1580 new window appear on the corresponding side of the window that shall be
1581 split. Any other value of SIDE will cause `split-window' to split the
1582 window into two side-by-side windows as before.
1583
1584 *** Window resizing functions.
1585 A new standard function for resizing windows called `window-resize' has
1586 been introduced. This and all other functions for resizing windows no
1587 longer delete any windows when they become too small.
1588
1589 *** Deleting the selected window now selects the most recently selected
1590 live window on that frame instead.
1591
1592 *** `adjust-window-trailing-edge' adjustments.
1593 `adjust-window-trailing-edge' can now deal with fixed-size windows and
1594 is able to resize other windows if a window adjacent to the trailing
1595 edge cannot be shrunk any more. This makes its behavior more similar to
1596 that of Emacs 21 without compromising, however, its inability to delete
1597 windows which was introduced in Emacs 22.
1598
1599 *** Window-local buffer lists.
1600 Windows now have local buffer lists. This means that removing a buffer
1601 from display in a window will preferably show the buffer previously
1602 shown in that window with its previous window-start and window-point
1603 positions. This also means that the same buffer may be automatically
1604 shown twice even if it already appears in another window.
1605
1606 *** `switch-to-buffer' has a new optional argument FORCE-SAME-WINDOW,
1607 which if non-nil requires the buffer to be displayed in the currently
1608 selected window, signaling an error otherwise. If nil, another window
1609 can be used, e.g. if the selected one is strongly dedicated.
1610
1611 *** `split-window-vertically' and `split-window-horizontally' renamed
1612 to `split-window-below' and `split-window-right' respectively.
1613 The old names are kept as aliases.
1614
1615 *** Display actions
1616
1617 **** The second arg to `display-buffer' and `pop-to-buffer' is now
1618 named ACTION, and takes a display action of the same form as
1619 `display-buffer-base-action' (see Changes, above). A non-nil,
1620 non-list value is treated specially, as the old meaning.
1621
1622 **** New variable `display-buffer-overriding-action'.
1623
1624 **** The procedure of `display-buffer' etc. to choose a window is
1625 determined by combining `display-buffer-overriding-action',
1626 `display-buffer-alist', the ACTION arg, `display-buffer-base-action',
1627 and `display-buffer-fallback-action'. The second and fourth of these
1628 are user-customizable variables.
1629
1630 See the docstring of `display-buffer' for details.
1631
1632 *** New functions `window-state-get' and `window-state-put'.
1633 These functions allow to save and restore the state of an arbitrary
1634 frame or window as an Elisp object.
1635
1636 ** Completion
1637
1638 *** New variable `completion-extra-properties' used to specify extra
1639 properties of the current completion:
1640 - :annotate-function, same as the old completion-annotate-function.
1641 - :exit-function, function to call after completion took place.
1642
1643 *** Functions on `completion-at-point-functions' can return any of the
1644 properties valid for `completion-extra-properties'.
1645
1646 *** `completion-annotate-function' is obsolete.
1647
1648 *** New `metadata' method for completion tables. The metadata thus returned
1649 can specify various details of the data returned by `all-completions':
1650 - `category' is the kind of objects returned (e.g., `buffer', `file', ...),
1651 used to select a style in completion-category-overrides.
1652 - `annotation-function' to add annotations in *Completions*.
1653 - `display-sort-function' to specify how to sort entries in *Completions*.
1654 - `cycle-sort-function' to specify how to sort entries when cycling.
1655
1656 *** `minibuffer-local-filename-must-match-map' is not used any more.
1657 Instead, the bindings in `minibuffer-local-filename-completion-map'
1658 are combined with `minibuffer-local-must-match-map'.
1659
1660 *** New variable `completing-read-function' allows overriding the
1661 behavior of `completing-read'.
1662
1663 ** `glyphless-char-display' can now distinguish between graphical and
1664 text terminal display, via a char-table entry that is a cons cell.
1665
1666 ** `pre-command-hook'/`post-command-hook' are not reset to nil on error.
1667 Instead, the offending function is removed.
1668
1669 ** New hook types
1670
1671 *** New function `run-hook-wrapped' for running an abnormal hook by
1672 passing the hook functions as arguments to a "wrapping" function.
1673 Like `run-hook-with-args-until-success', it stops at the first
1674 non-nil return value.
1675
1676 *** New macro `with-wrapper-hook' for running an abnormal hook as a
1677 set of "wrapping" filters, similar to around advice.
1678 (A version of this macro was actually added in Emacs 23.2 but was not
1679 advertised at the time.)
1680
1681 ** Debugger changes
1682
1683 *** New macro `condition-case-unless-debug' (this was actually added in
1684 Emacs 23.1 as condition-case-no-debug, but not advertised)
1685
1686 *** The macro `with-demoted-errors' was added in Emacs 23.1, but not advertised.
1687
1688 *** Variable `stack-trace-on-error' removed.
1689
1690 *** The debugger can now "continue" from an error, which means it will
1691 jump to the error handler as if the debugger had not been invoked
1692 instead of jumping all the way to the top-level.
1693
1694 *** Set `debug-on-event' to enter the debugger on events like SIGUSR1.
1695 This can be useful when `inhibit-quit' is set.
1696
1697 ** The new function `server-eval-at' allows evaluation of Lisp forms on
1698 named Emacs server instances.
1699
1700 ** `call-process' and `call-process-region' allow a `(:file "file")' spec
1701 to redirect STDOUT to a file.
1702
1703 ** The function `format-time-string' now supports the %N directive,
1704 for higher-resolution time stamps.
1705
1706 ** New input reading functions
1707
1708 *** New function `read-char-choice' reads a restricted set of
1709 characters, discarding any inputs not inside the set.
1710
1711 *** The command `read-color' now requires a match for a color name
1712 or RGB triplet, instead of signaling an error if the user provides
1713 invalid input.
1714
1715 **** `facemenu-read-color' is now an alias for `read-color'.
1716
1717 ** `image-library-alist' is renamed to `dynamic-library-alist'.
1718 The variable is now used to load all kind of supported dynamic libraries,
1719 not just image libraries. The previous name is still available as an
1720 obsolete alias.
1721
1722 ** Syntax parsing changes
1723
1724 *** New variable `syntax-propertize-function'.
1725 This replaces `font-lock-syntactic-keywords' which is now obsolete.
1726 This allows syntax-table properties to be set independently from font-lock:
1727 just call syntax-propertize to make sure the text is propertized.
1728 Together with this new variable come a new hook
1729 syntax-propertize-extend-region-functions, as well as two helper functions:
1730 syntax-propertize-via-font-lock to reuse old font-lock-syntactic-keywords
1731 as-is; and syntax-propertize-rules which provides a new way to specify
1732 syntactic rules.
1733
1734 *** Syntax tables support a new "comment style c" additionally to style b.
1735
1736 ** New hook `post-self-insert-hook', run after `self-insert-command'.
1737
1738 ** frame-local variables cannot be let-bound any more.
1739
1740 ** Major and minor mode changes
1741
1742 *** `set-auto-mode' now respects mode: local variables at the end of files,
1743 as well as those in the -*- line.
1744
1745 *** `prog-mode' is a new major mode from which programming modes
1746 should be derived.
1747
1748 **** `prog-mode-hook' can be used to enable features for programming
1749 modes, e.g. (add-hook 'prog-mode-hook 'flyspell-prog-mode) to enable
1750 on-the-fly spell checking for comments and strings.
1751
1752 *** New hook `change-major-mode-after-body-hook', run by
1753 `run-mode-hooks' just before any other mode hooks.
1754
1755 *** Enabled globalized minor modes can be disabled in specific major modes.
1756 If the global mode is global-FOO-mode, then run (FOO-mode -1) in the
1757 major mode's hook, where FOO-mode toggles the mode on a per-buffer basis.
1758
1759 *** `define-minor-mode' accepts new keywords :variable, :after-hook.
1760
1761 ** File-handling changes
1762
1763 *** `delete-file' and `delete-directory' now accept optional arg TRASH.
1764 Trashing is performed if TRASH and `delete-by-moving-to-trash' are
1765 both non-nil. Interactively, TRASH defaults to t, unless a prefix
1766 argument is supplied (see Trash changes, above).
1767
1768 *** New file predicates: `file-equal-p', `file-in-directory-p'.
1769
1770 ** Tool-bars can display separators.
1771 Tool-bar separators are handled like menu separators in menu-bar maps,
1772 i.e. via menu entries of the form `(menu-item "--")'.
1773
1774 ** Image API
1775
1776 *** Animated images support (currently animated gifs only).
1777
1778 **** `image-animated-p' returns non-nil if an image can be animated.
1779
1780 **** `image-animate' animates a supplied image spec.
1781
1782 **** `image-animate-timer' returns the timer object for an image that
1783 is being animated.
1784
1785 *** `image-extension-data' has been renamed to `image-metadata'.
1786 The old name is an obsolete alias to the new one.
1787
1788 *** Image mode can view any image type that ImageMagick supports.
1789 This requires Emacs to be built with ImageMagick support.
1790
1791 **** New function `imagemagick-types', defined if ImageMagick support
1792 is enabled, returns a list of image file extensions that your
1793 ImageMagick installation supports.
1794
1795 **** New function `imagemagick-register-types' enables ImageMagick
1796 image types in Image mode and in `create-image' and other helper
1797 functions.
1798
1799 **** New option `imagemagick-types-inhibit' excludes certain
1800 ImageMagick image types from `imagemagick-register-types'.
1801
1802 **** With ImageMagick support, there are extra Image mode commands to
1803 resize and rotate images: `image-transform-fit-to-height',
1804 `image-transform-fit-to-width', `image-transform-set-rotation', and
1805 `image-transform-set-scale'.
1806
1807 ** `compose-mail' now accepts an optional 8th arg, RETURN-ACTION, and
1808 passes it to the mail user agent function. This argument specifies an
1809 action for returning to the caller after finishing with the mail. For
1810 example, this is used by Rmail to optionally delete a mail window.
1811
1812 ** XML and HTML parsing
1813 If Emacs is compiled with libxml2 support, there are two new
1814 functions: `libxml-parse-html-region' (which parses "real world" HTML)
1815 and `libxml-parse-xml-region' (which parses XML). Both return an
1816 Emacs Lisp parse tree.
1817
1818 ** Networking and encryption changes
1819
1820 *** `open-network-stream' can now be used to open an encrypted stream.
1821 It now accepts an optional `:type' parameter for initiating a TLS
1822 connection, directly or via STARTTLS. To do STARTTLS, additional
1823 parameters (`:end-of-command', `:success', `:capabilities-command')
1824 must also be supplied.
1825
1826 *** New library gnutls.el.
1827 The new function `gnutls-available-p' returns non-nil if Emacs is
1828 built with GnuTLS support. The main entry points are
1829 `open-gnutls-stream' and `gnutls-negotiate'. It's easiest to use
1830 these functions through `open-network-stream', because that can
1831 upgrade connections through STARTTLS opportunistically or use plain
1832 SSL, depending on your needs. For debugging, set `gnutls-log-level'
1833 greater than 0.
1834
1835 *** New primitive `secure-hash' that supports many secure hash algorithms:
1836 md5, sha1, sha2, sha224, sha256, sha384, and sha512. The lisp library
1837 sha1.el has been removed. The `sha1' feature is provided by default.
1838
1839 ** Isearch
1840
1841 *** New hook `isearch-update-post-hook' that runs in `isearch-update'.
1842
1843 ** Progress reporters can now "spin".
1844 The MIN-VALUE and MAX-VALUE arguments of `make-progress-reporter' can
1845 now be nil, or omitted. This makes a "non-numeric" reporter. Each
1846 time you call `progress-reporter-update' on that progress reporter,
1847 with a nil or omitted VALUE argument, the reporter message is
1848 displayed with a "spinning bar".
1849
1850 ** New variable `revert-buffer-in-progress-p' is true while a buffer is
1851 being reverted, even if the buffer has a local `revert-buffer-function'.
1852
1853 ** New variables `delayed-warnings-list' and `delayed-warnings-hook'.
1854 If delayed-warnings-list is non-nil, the command loop calls
1855 `delayed-warnings-hook' after `post-command-hook'. At present, this
1856 is only used by Emacs on some platforms to display warnings during
1857 startup, which might otherwise not be noticed. This uses the
1858 functions `display-delayed-warnings' and `collapse-delayed-warnings'.
1859
1860 ** rx.el has a new `group-n' construct for explicitly numbered groups.
1861
1862 ** New function `make-composed-keymap' that constructs a new keymap
1863 from multiple input maps. You can use this to make a keymap that
1864 inherits from multiple maps, eg:
1865 (set-keymap-parent newmap (make-composed-keymap othermap parent))
1866
1867 ** New function `string-prefix-p'.
1868 (This was actually added in Emacs 23.2 but was not advertised at the time.)
1869
1870 ** New reader macro ## that stands for the empty symbol.
1871 This means that the empty symbol can now be read back. Also, #: by itself
1872 (when not immediately followed by a possible symbol character) stands for
1873 an empty uninterned symbol.
1874
1875 ** New math functions `isnan', `copysign', `frexp', `ldexp'.
1876
1877 ** The following functions and variables are obsolete:
1878
1879 *** `tooltip-use-echo-area' is obsolete.
1880 Rather than setting this to t, disable Tooltip mode instead.
1881
1882 *** buffer-substring-filters is obsolete.
1883 Use `filter-buffer-substring-functions' instead.
1884
1885 *** `byte-compile-disable-print-circle' is obsolete.
1886
1887 *** `deferred-action-list' and `deferred-action-function' are obsolete.
1888 Use `post-command-hook' instead.
1889
1890 *** `font-lock-maximum-size' is obsolete.
1891
1892 \f
1893 * Changes in Emacs 24.1 on non-free operating systems
1894
1895 ** On MS Windows, Emacs warns when using the obsolete init file _emacs,
1896 and also when HOME is set to C:\ by default.
1897
1898 ** New configure.bat options
1899
1900 *** --enable-checking builds Emacs with extra runtime checks.
1901
1902 *** --distfiles specifies files to be included in binary distribution.
1903
1904 *** --without-gnutls disables automatic GnuTLS detection.
1905
1906 *** --lib for general library linkage, works with the USER_LIBS build variable.
1907
1908 ** New make target `dist' to create binary distribution for MS Windows.
1909
1910 ** The Lisp function `w32-default-color-map' is now obsolete.
1911 (It is only used internally in the Emacs C code.)
1912
1913 ** Customize ns-auto-hide-menu-bar to have the menu-bar hidden, but
1914 reappear on mouse-over. (Requires OS X 10.6 or later.)
1915
1916 ** On Mac OS X, dragging a file into Emacs visits the file, like on
1917 other platforms, rather than inserting its contents into the buffer.
1918
1919 \f
1920 ----------------------------------------------------------------------
1921 This file is part of GNU Emacs.
1922
1923 GNU Emacs is free software: you can redistribute it and/or modify
1924 it under the terms of the GNU General Public License as published by
1925 the Free Software Foundation, either version 3 of the License, or
1926 (at your option) any later version.
1927
1928 GNU Emacs is distributed in the hope that it will be useful,
1929 but WITHOUT ANY WARRANTY; without even the implied warranty of
1930 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1931 GNU General Public License for more details.
1932
1933 You should have received a copy of the GNU General Public License
1934 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
1935
1936 \f
1937 Local variables:
1938 mode: outline
1939 paragraph-separate: "[ \f]*$"
1940 end: