Auto-commit of generated files.
[bpt/emacs.git] / etc / NEWS
1 GNU Emacs NEWS -- history of user-visible changes.
2
3 Copyright (C) 2010-2011 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
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.
23
24 \f
25 * Installation Changes in Emacs 24.1
26
27 ** Configure links against libselinux if it is found.
28 You can disable this by using --without-selinux.
29
30 ---
31 ** By default, the installed Info and man pages are compressed.
32 You can disable this by configuring --without-compress-info.
33
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.
39
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.
45
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.
50
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
55 ---
56 ** New translation of the Emacs Tutorial in Hebrew is available.
57 Type `C-u C-h t' to choose it in case your language setup doesn't
58 automatically select it.
59
60 ** Emacs can be compiled with ImageMagick support.
61 Emacs links to ImageMagick if version 6.2.8 or newer of the library is
62 present at build time. To inhibit ImageMagick, use the configure
63 option `--without-imagemagick' .
64
65 ---
66 ** The standalone programs digest-doc and sorted-doc are removed.
67 Emacs now uses Lisp commands `doc-file-to-man' and `doc-file-to-info'.
68
69 ---
70 ** The standalone program `fakemail' is removed.
71 If you need it, feedmail.el provides a superset of the functionality.
72
73 \f
74 * Startup Changes in Emacs 24.1
75
76 ---
77 ** The --unibyte, --multibyte, --no-multibyte, and --no-unibyte
78 command line arguments, and the EMACS_UNIBYTE environment variable, no
79 longer have any effect. (They were declared obsolete in Emacs 23.)
80
81 +++
82 ** New command line option `--no-site-lisp' removes site-lisp directories
83 from load-path. -Q now implies this.
84
85 ---
86 ** On Windows, Emacs now warns when the obsolete _emacs init file is used,
87 and also when HOME is set to C:\ by default.
88
89 \f
90 * Changes in Emacs 24.1
91
92 +++
93 ** auto-mode-case-fold is now enabled by default.
94
95 ** Completion
96
97 *** shell-mode uses pcomplete rules, with the standard completion UI.
98
99 *** Many packages have been changed to use completion-at-point rather than
100 their own completion code.
101
102 *** Completion in a non-minibuffer now tries to detect the end of completion
103 and pops down the *Completions* buffer accordingly.
104
105 *** Completion can cycle, depending on completion-cycle-threshold.
106
107 *** New completion style `substring'.
108
109 *** Completion style can be set per-category `completion-category-overrides'.
110
111 *** Completion of buffers now uses substring completion by default.
112
113 *** `completing-read' can be customized using the new variable
114 `completing-read-function'.
115
116 *** minibuffer-local-filename-must-match-map is not used any more.
117 Instead, the bindings in minibuffer-local-filename-completion-map are combined
118 with minibuffer-local-must-match-map.
119
120 ** Mail changes
121
122 The default of `send-mail-function' is now `sendmail-query-once',
123 which asks the user (once) whether to use the smtpmail package to send
124 email, or to use the old defaults that rely on external mail
125 facilities (`sendmail-send-it' on GNU/Linux and other Unix-like
126 systems, and `mailclient-send-it' on Windows).
127
128 *** smtpmail changes
129
130 **** smtpmail now uses encrypted connections (via STARTTLS) if the
131 mail server supports them. It also uses the auth-source framework for
132 getting credentials.
133
134 **** The variable `smtpmail-auth-credentials' has been removed.
135 That variable used to have the default value "~/.authinfo", in which
136 case you won't see any difference. But if you changed it to be a list
137 of user names and passwords, that setting is now ignored; you will be
138 prompted for the user name and the password, which will then be saved
139 to ~/.authinfo.
140
141 You can also manually copy the credentials to your ~/.authinfo file.
142 For example, if you had
143
144 (setq smtpmail-auth-credentials
145 '(("mail.example.org" 25 "jim" "s!cret")))
146
147 then the equivalent line in ~/.authinfo would be
148
149 machine mail.example.org port 25 login jim password s!cret
150
151 **** The variable `smtpmail-starttls-credentials' has been removed.
152
153 If you had that set, then then you need to put
154
155 machine smtp.whatever.foo port 25 key "~/.my_smtp_tls.key" cert "~/.my_smtp_tls.cert"
156
157 in your ~/.authinfo file instead.
158
159 *** sendmail changes
160 +++
161 You can now add MIME attachments to outgoing messages with the new
162 command `mail-add-attachment'.
163
164 ---
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.
167
168 ** Emacs server and client changes
169 +++
170 *** New option `server-port' specifies the port on which the Emacs
171 server should listen.
172 +++
173 *** New emacsclient argument -q/--quiet suppresses some status messages.
174 +++
175 *** New emacsclient argument --frame-parameters can be used to set the
176 frame parameters of a newly-created graphical frame.
177 +++
178 *** If emacsclient shuts down as a result of Emacs signalling an
179 error, its exit status is 1.
180 +++
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.
184
185 ** Internationalization changes
186
187 +++
188 *** Emacs now supports display and editing of bidirectional text.
189
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 RTL text should look exactly the
195 same as before.
196
197 For more information, see the node "Bidirectional Editing" in the
198 Emacs Manual.
199
200 +++
201 **** New buffer-local variable `bidi-display-reordering'.
202 To disable display reordering in any given buffer, change this to nil.
203
204 +++
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.
209
210 Setting this to `right-to-left' or `left-to-right' forces a particular
211 base direction on each paragraph in the buffer.
212
213 Paragraphs whose base direction is right-to-left are displayed
214 starting at the right margin of the window.
215
216 +++
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'.
224
225 On character terminals, these methods are used for characters that
226 cannot be encoded by the `terminal-coding-system'.
227
228 ---
229 *** New input methods for Farsi: farsi and farsi-translit.
230
231 ** Improved GTK integration
232
233 *** GTK scroll-bars are now placed on the right by default.
234 Use `set-scroll-bar-mode' to change this.
235
236 *** GTK tool bars can have just text, just images or images and text.
237 Customize `tool-bar-style' to choose style. On a Gnome desktop, the default
238 is taken from the desktop settings.
239
240 *** GTK tool bars can be placed on the left/right or top/bottom of the frame.
241 The frame-parameter tool-bar-position controls this. It takes the values
242 top, left, right or bottom. The Options => Show/Hide menu has entries
243 for this.
244
245 *** The colors for selected text (the region face) are taken from the GTK
246 theme when Emacs is built with GTK.
247
248 *** Emacs uses GTK tooltips by default if built with GTK. You can turn that
249 off by customizing x-gtk-use-system-tooltips.
250
251 +++
252 ** New basic faces `error', `warning', `success' are available to
253 highlight strings that indicate failure, caution or successful operation.
254
255 ** Lucid menus and dialogs can display antialiased fonts if Emacs is built
256 with Xft. To change font, use the X resource font, for example:
257 Emacs.pane.menubar.font: Courier-12
258
259 ** On graphical displays, the mode-line no longer ends in dashes.
260 Also, the first dash (which does not indicate anything) is just
261 displayed as a space.
262
263 ** Basic SELinux support has been added.
264 This requires Emacs to be linked with libselinux at build time.
265
266 *** Emacs preserves the SELinux file context when backing up, and
267 optionally when copying files. To this end, copy-file has an extra
268 optional argument, and backup-buffer and friends include the SELinux
269 context in their return values.
270
271 *** The new functions file-selinux-context and set-file-selinux-context
272 get and set the SELinux context of a file.
273
274 *** Tramp offers handlers for file-selinux-context and set-file-selinux-context
275 for remote machines which support SELinux.
276
277 +++
278 ** The function format-time-string now supports the %N directive, for
279 higher-resolution time stamps.
280
281 ** Changes for exiting Emacs
282 +++
283 *** The function kill-emacs is now run upon receipt of the signals
284 SIGTERM and SIGHUP, and upon SIGINT in batch mode.
285 +++
286 *** kill-emacs-hook is now also run in batch mode.
287 If you have code that adds something to kill-emacs-hook, you should
288 consider if it is still appropriate to add it in the noninteractive case.
289
290 ** Scrolling changes
291
292 *** New scrolling commands `scroll-up-command' and `scroll-down-command'
293 (bound to C-v/[next] and M-v/[prior]) do not signal errors at top/bottom
294 of buffer at first key-press (instead move to top/bottom of buffer)
295 when a new variable `scroll-error-top-bottom' is non-nil.
296
297 *** New scrolling commands `scroll-up-line' and `scroll-down-line'
298 scroll a line instead of full screen.
299
300 *** New property `scroll-command' should be set on a command's symbol to
301 define it as a scroll command affected by `scroll-preserve-screen-position'.
302
303 +++
304 *** If you customize `scroll-conservatively' to a value greater than 100,
305 Emacs will never recenter point in the window when it scrolls due to
306 cursor motion commands or commands that move point (e.f., `M-g M-g').
307 Previously, you needed to use `most-positive-fixnum' as the value of
308 `scroll-conservatively' to achieve the same effect.
309
310 ---
311 *** ``Aggressive'' scrolling now honors the scroll margins.
312 If you customize `scroll-up-aggressively' or
313 `scroll-down-aggressively' and move point off the window, Emacs now
314 scrolls the window so as to avoid positioning point inside the scroll
315 margin.
316
317 ** Trash changes
318 +++
319 *** `delete-by-moving-to-trash' now only affects commands that specify
320 trashing. This avoids inadvertently trashing temporary files.
321 +++
322 *** Calling `delete-file' or `delete-directory' with a prefix argument
323 now forces true deletion, regardless of `delete-by-moving-to-trash'.
324
325 ** New option `list-colors-sort' defines the color sort order
326 for `list-colors-display'.
327
328 ** An Emacs Lisp package manager is now included.
329 This is a convenient way to download and install additional packages,
330 from a package repository at http://elpa.gnu.org.
331 +++
332 *** `M-x list-packages' shows a list of packages, which can be
333 selected for installation.
334 +++
335 *** New command `describe-package', bound to `C-h P'.
336 +++
337 *** By default, all installed packages are loaded and activated
338 automatically when Emacs starts up. To disable this, set
339 `package-enable-at-startup' to nil. To change which packages are
340 loaded, customize `package-load-list'.
341
342 ** Custom Themes
343
344 *** `M-x customize-themes' lists Custom themes which can be enabled.
345
346 *** New option `custom-theme-load-path' is the load path for themes.
347 Emacs no longer looks for custom themes in `load-path'. The default
348 is to search in `custom-theme-directory', followed by a built-in theme
349 directory named "themes/" in `data-directory'.
350
351 *** New option `custom-safe-themes' records known-safe theme files.
352 If a theme is not in this list, Emacs queries before loading it, and
353 offers to save the theme to `custom-safe-themes' automatically. By
354 default, all themes included in Emacs are treated as safe.
355
356 ** The user option `remote-file-name-inhibit-cache' controls whether
357 the remote file-name cache is used for read access.
358
359 ** File- and directory-local variable changes
360 +++
361 *** You can stop directory local vars from applying to subdirectories.
362 Add an element (subdirs . nil) to the alist portion of any variables
363 settings to indicate that the section should not apply to
364 subdirectories.
365
366 *** Directory local variables can apply to some file-less buffers.
367 Affected modes include dired, vc-dir, and log-edit. For example,
368 adding "(diff-mode . ((mode . whitespace)))" to .dir-locals.el will
369 turn on `whitespace-mode' for *vc-diff* buffers. Modes should call
370 `hack-dir-local-variables-non-file-buffer' to support this.
371
372 +++
373 *** Using "mode: MINOR-MODE" to enable a minor mode is deprecated.
374 Instead, use "eval: (minor-mode 1)".
375
376 +++
377 ** The variable `focus-follows-mouse' now always defaults to nil.
378
379 ** New primitive `secure-hash' that supports many secure hash algorithms
380 including md5, sha-1 and sha-2 (sha-224, sha-256, sha-384 and sha-512).
381 The elisp implementation sha1.el is removed. Feature sha1 is provided
382 by default.
383
384 ** Menu-bar changes
385
386 *** `menu-bar-select-buffer-function' lets you choose another operation
387 instead of `switch-to-buffer' when selecting an item in the Buffers menu.
388
389 ** Window changes
390
391 +++
392 *** Resizing an Emacs frame now preserves proportional window sizes,
393 modulo restrictions like window minimum sizes and fixed-size windows.
394
395 *** The behavior of `display-buffer' is now customizable in detail.
396
397 **** New option `display-buffer-base-action' specifies a list of
398 user-determined display "actions" (functions and optional arguments
399 for choosing the displaying window).
400
401 This takes precedence over the default display action, which is
402 specified by `display-buffer-fallback-action'.
403
404 **** New option `display-buffer-alist' maps buffer name regexps to
405 display actions, taking precedence over `display-buffer-base-action'.
406
407 +++
408 *** New option `window-nest'.
409 The new option `window-nest' allows to return the space obtained for
410 resizing or creating a window more reliably to the window from which
411 such space was obtained.
412
413 +++
414 *** New option `window-splits'.
415 The new option `window-splits' allows to split a window that otherwise
416 cannot be split because it's too small by stealing space from other
417 windows in the same combination.
418
419 +++
420 *** New commands `maximize-window' and `minimize-window'.
421 These maximize and minize the size of a window within its frame.
422
423 +++
424 *** New commands `switch-to-prev-buffer' and `switch-to-next-buffer'.
425 These functions allow to navigate through the live buffers that have
426 been shown in a specific window.
427
428 +++
429 *** New functions `window-state-get' and `window-state-put'.
430 These functions allow to save and restore the state of an arbitrary
431 frame or window as an Elisp object.
432
433 ** The inactive minibuffer has its own major mode `minibuffer-inactive-mode'.
434 This is handy for minibuffer-only frames, and is also used for the "mouse-1
435 pops up *Messages*" feature, which can now easily be changed.
436
437 \f
438 * Editing Changes in Emacs 24.1
439
440 ** Search changes
441 +++
442 *** C-y in Isearch is now bound to isearch-yank-kill, instead of
443 isearch-yank-line.
444 ---
445 *** M-y in Isearch is now bound to isearch-yank-pop, instead of
446 isearch-yank-kill.
447 +++
448 *** M-s C-e in Isearch is now bound to isearch-yank-line.
449
450 +++
451 ** New command `count-words-region'. This does what you expect.
452
453 ** completion-at-point now handles tags and semantic completion.
454
455 ** The default value of `backup-by-copying-when-mismatch' is now t.
456
457 ** The command `just-one-space' (C-SPC), if given a negative argument,
458 also deletes newlines around point.
459
460 ** Deletion changes
461
462 *** New option `delete-active-region'.
463 If non-nil, [delete] and DEL delete the region if it is active and no
464 prefix argument is given. If set to `kill', these commands kill
465 instead.
466
467 *** New command `delete-forward-char', bound to [delete].
468 This is meant for interactive use, and obeys `delete-active-region'.
469 The command `delete-char' does not obey `delete-active-region'.
470
471 *** `delete-backward-char' is now a Lisp function.
472 Apart from obeying `delete-active-region', its behavior is unchanged.
473 However, the byte compiler now warns if it is called from Lisp; you
474 should use delete-char with a negative argument instead.
475 ---
476 *** The option `mouse-region-delete-keys' has been deleted.
477
478 ** Selection changes.
479
480 The default handling of clipboard and primary selections was changed
481 to conform with modern X applications. In short, most commands for
482 killing and yanking text now use the clipboard, while mouse commands
483 use the primary selection.
484
485 In the following, we provide a list of these changes, followed by a
486 list of steps to get the old behavior back if you prefer that.
487
488 +++
489 *** `select-active-regions' now defaults to t.
490 Merely selecting text (e.g. with drag-mouse-1) no longer puts it in
491 the kill ring. The selected text is put in the primary selection, if
492 the system possesses a separate primary selection facility (e.g. X).
493
494 +++
495 **** `select-active-regions' also accepts a new value, `only'.
496 This means to only set the primary selection for temporarily active
497 regions (usually made by mouse-dragging or shift-selection);
498 "ordinary" active regions, such as those made with C-SPC followed by
499 point motion, do not alter the primary selection.
500
501 ---
502 **** `mouse-drag-copy-region' now defaults to nil.
503
504 +++
505 *** mouse-2 is now bound to `mouse-yank-primary'.
506 This pastes from the primary selection, ignoring the kill-ring.
507 Previously, mouse-2 was bound to `mouse-yank-at-click'.
508
509 +++
510 *** `x-select-enable-clipboard' now defaults to t on all platforms.
511 +++
512 *** `x-select-enable-primary' now defaults to nil.
513 Thus, commands that kill text or copy it to the kill-ring (such as
514 M-w, C-w, and C-k) also use the clipboard---not the primary selection.
515
516 ---
517 **** The "Copy", "Cut", and "Paste" items in the "Edit" menu are now
518 exactly equivalent to, respectively M-w, C-w, and C-y.
519
520 ---
521 **** Note that on MS-Windows, `x-select-enable-clipboard' was already
522 non-nil by default, as Windows does not support the primary selection
523 between applications.
524
525 ---
526 *** To return to the previous behavior, do the following:
527 **** Change `select-active-regions' to nil.
528 **** Change `mouse-drag-copy-region' to t.
529 **** Change `x-select-enable-primary' to t (on X only).
530 **** Change `x-select-enable-clipboard' to nil.
531 **** Bind `mouse-yank-at-click' to mouse-2.
532
533 +++
534 *** Support for X cut buffers has been removed.
535
536 *** X clipboard managers are now supported.
537 To inhibit this, change `x-select-enable-clipboard-manager' to nil.
538
539 ** New command `rectangle-number-lines', bound to `C-x r N', numbers
540 the lines in the current rectangle. With a prefix argument, this
541 prompts for a number to count from and for a format string.
542
543 ** The command shell prompts for the shell path name, when the default
544 directory is a remote file name and neither environment variable
545 $ESHELL nor variable `explicit-shell-file-name' is set.
546
547 +++
548 ** The default value of redisplay-dont-change is now t
549 This makes Emacs feel more responsive to editing commands that arrive
550 at high rate, e.g. if you lean on some key, because stopping redisplay
551 in the middle (when this variable is nil) forces more expensive
552 updates later on, and Emacs appears to be unable to keep up.
553
554 \f
555 * Changes in Specialized Modes and Packages in Emacs 24.1
556
557 ** Archive Mode has basic support for browsing and updating 7z archives.
558
559 ** browse-url has a new variable `browse-url-mailto-function'
560 specifies how mailto: URLs are handled. The default is `browse-url-mail'.
561
562 ** BibTeX mode
563
564 *** BibTeX mode now supports biblatex.
565 Use the variable bibtex-dialect to select support for different BibTeX
566 dialects. bibtex-entry-field-alist is now an obsolete alias for
567 bibtex-BibTeX-entry-alist.
568
569 *** New command `bibtex-search-entries' bound to C-c C-a.
570
571 *** New `bibtex-entry-format' option `sort-fields', disabled by default.
572
573 *** New variable `bibtex-search-entry-globally'.
574
575 ** Calendar, Diary, and Appt
576
577 +++
578 *** Diary entries can contain non-printing `comments'.
579 See the variable `diary-comment-start'.
580
581 +++
582 *** Appointments can specify their individual warning times.
583 See the variable `appt-warning-time-regexp'.
584
585 ---
586 *** The function specified by `appt-disp-window-function' may be passed
587 lists of arguments if multiple appointments are due at similar times.
588 If you are using a custom function for this, you should update it.
589
590 +++
591 *** New function `diary-hebrew-birthday'.
592
593 ---
594 *** Elements of `calendar-day-abbrev-array' and `calendar-month-abbrev-array'
595 may no longer be nil, but must all be strings.
596
597 ---
598 *** The obsolete (since Emacs 22.1) method of enabling the appt package
599 by adding appt-make-list to diary-hook has been removed. Use appt-activate.
600
601 ---
602 *** Some appt variables (obsolete since Emacs 22.1) have been removed:
603 appt-issue-message (use the function appt-activate)
604 appt-visible/appt-msg-window (use the variable appt-display-format)
605
606 ---
607 *** Some diary function aliases (obsolete since Emacs 22.1) have been removed:
608 view-diary-entries, list-diary-entries, show-all-diary-entries
609
610 ** CC Mode (C, C++, etc.)
611
612 *** New feature to "guess" the style in an existing buffer.
613
614 ** comint and modes derived from it use the generic completion code.
615
616 ** Compilation mode
617
618 *** Compilation mode can be used without font-lock-mode.
619 `compilation-parse-errors-function' is now obsolete.
620
621 *** `compilation-filter-start' is let-bound to the start of the text
622 inserted by the compilation filter function, when calling
623 compilation-filter-hook.
624
625 ** Customize
626
627 *** Customize buffers now contain a search field.
628 The search is performed using `customize-apropos'.
629 To turn off the search field, set custom-search-field to nil.
630
631 *** Custom options now start out hidden if at their default values.
632 Use the arrow to the left of the option name to toggle visibility.
633
634 *** custom-buffer-sort-alphabetically now defaults to t.
635
636 *** The color widget now has a "Choose" button, which allows you to
637 choose a color via list-colors-display.
638
639 ** D-Bus
640
641 *** It is possible now, to access alternative buses than the default
642 system or session bus.
643
644 *** dbus-register-{service,method,property}
645 The -method and -property functions do not automatically register
646 names anymore.
647
648 The new function dbus-register-service registers a service known name
649 on a D-Bus without simultaneously registering a property or a method.
650
651 ** Dired-x
652
653 *** dired-jump and dired-jump-other-window called with a prefix argument
654 read a file name from the minibuffer instead of using buffer-file-name.
655
656 +++
657 *** The `dired local variables' feature provided by Dired-x is obsolete.
658 The standard directory local variables feature replaces it.
659
660 ** ERC changes
661
662 *** New vars `erc-autojoin-timing' and `erc-autojoin-delay'.
663 If the value of `erc-autojoin-timing' is 'ident, ERC autojoins after a
664 successful NickServ identification, or after `erc-autojoin-delay'
665 seconds. The default value, 'ident, means to autojoin immediately
666 after connecting.
667
668 *** New variable `erc-coding-system-precedence': If we use `undecided'
669 as the server coding system, this variable will then be consulted.
670 The default is to decode strings that can be decoded as utf-8 as
671 utf-8, and do the normal `undecided' decoding for the rest.
672
673 ** Eshell changes
674
675 *** The default value of eshell-directory-name is a directory named
676 "eshell" in `user-emacs-directory'. If the old "~/.eshell/" directory
677 exists, that is used instead.
678
679 ** gdb-mi
680
681 *** GDB User Interface migrated to GDB Machine Interface and now
682 supports multithread non-stop debugging and debugging of several
683 threads simultaneously.
684
685 ** In ido-mode, C-v is no longer bound to ido-toggle-vc.
686 The reason is that this interferes with cua-mode.
687
688 ** Image mode
689
690 *** RET (`image-toggle-animation') toggles animation, if the displayed
691 image can be animated.
692
693 *** Option `image-animate-loop', if non-nil, loops the animation.
694 If nil, `image-toggle-animation' plays the animation once.
695
696 ** Info
697
698 *** New command `info-display-manual' displays an Info manual
699 specified by its name. If that manual is already visited in some Info
700 buffer within the current session, the command will display that
701 buffer. Otherwise, it will load the manual and display it. This is
702 handy if you have many manuals in many Info buffers, and don't
703 remember the name of the buffer visiting the manual you want to
704 consult.
705
706 ** The Landmark game is now invoked with `landmark', not `lm'.
707
708 ** MH-E has been upgraded to MH-E version 8.3.
709 See MH-E-NEWS for details.
710
711 ** Modula-2 mode provides auto-indentation.
712
713 ** mpc.el: Can use pseudo tags of the form tag1|tag2 as a union of two tags.
714
715 ** Prolog mode has been completely revamped, with lots of additional
716 functionality such as more intelligent indentation, electricity, support for
717 more variants, including Mercury, and a lot more.
718
719 ** Rmail
720
721 *** The command `rmail-epa-decrypt' decrypts OpenPGP data
722 in the Rmail incoming message.
723
724 ** shell-mode can track your cwd by reading it from your prompt.
725 Just set shell-dir-cookie-re to an appropriate regexp.
726
727 ---
728 ** SQL Mode enhancements.
729
730 *** `sql-dialect' is an alias for `sql-product'.
731
732 *** New variable `sql-port' specifies the port number for connecting
733 to a MySQL or Postgres server.
734
735 *** The command `sql-product-interactive' now takes a prefix argument,
736 which causes it to prompt for an SQL product instead of the current
737 value of `sql-product'.
738
739 *** Product-specific SQL interactive commands now take prefix args.
740 These commands (`sql-sqlite', `sql-postgres', `sql-mysql', etc.),
741 given a prefix argument, prompt for a name for the SQL interactive
742 buffer. This reduces the need for calling `sql-rename-buffer'.
743
744 *** SQL interactive modes suppress command continuation prompts, and
745 replace tabs with spaces. The first change impacts multiple line SQL
746 statements entered with C-j between each line, statements yanked into
747 the buffer and statements sent with `sql-send-*' functions. The
748 second change prevents the MySQL and Postgres interpreters from
749 listing object name completions when sent text via `sql-send-*'
750 functions.
751
752 *** New custom variables control prompting for login parameters.
753 Each supported product has a custom variable `sql-*-login-params',
754 which is a list of the parameters to be prompted for before a
755 connection is established.
756
757 *** New variable `sql-connection-alist' for login parameter values.
758 This can be used to store different username, database and server
759 values. Connections defined in this variable appear in the submenu
760 SQL->Start... for making new SQLi sessions.
761
762 *** New command `sql-connect' starts a predefined SQLi session,
763 using the login parameters from `sql-connection-alist'.
764
765 *** New "Save Connection" menu item in SQLi buffers.
766 This gathers the login params specified for the SQLi session, if it
767 was not started by a connection, and saves them as a new connection.
768
769 *** Commands for listing database objects and details.
770 In an SQLi session, you can get a list of objects in the database.
771 The contents of these lists are product specific.
772
773 **** `C-c C-l a' or the "SQL->List all objects" menu item
774 lists all the objects in the database. With a prefix argument, it
775 displays additional details or extend the listing to include other
776 schemas objects.
777
778 **** `C-c C-l t' or the "SQL->List Table details" menu item
779 prompts for the name of a database table or view and displays the list
780 of columns in the relation. With a prefix argument, it displays
781 additional details about each column.
782
783 *** New options `sql-send-terminator' and `sql-oracle-scan-on'.
784
785 *** An API for manipulating SQL product definitions has been added.
786
787 ** TeX modes
788
789 *** latex-electric-env-pair-mode keeps \begin..\end matched on the fly.
790
791 ** Tramp
792
793 *** There exists a new inline access method "ksu" (kerberized su).
794
795 *** The following access methods are discontinued: "ssh1_old",
796 "ssh2_old", "scp1_old", "scp2_old", "imap", "imaps" and "fish".
797
798 *** The option `ange-ftp-binary-file-name-regexp' has changed its
799 default value to "".
800
801 ** `url-queue-retrieve' downloads web pages asynchronously, but allow
802 controlling the degree of parallelism.
803
804 ** VC and related modes
805
806 *** Support for pulling on distributed version control systems.
807 The vc-pull command runs a "pull" operation, if it is supported.
808 This updates the current branch from upstream. A prefix argument
809 means to prompt the user for specifics, e.g. a pull location.
810
811 **** `vc-update' is now an alias for `vc-pull'.
812
813 **** Currently supported by Bzr, Git, and Mercurial.
814
815 *** Support for merging on distributed version control systems.
816 The vc-merge command now runs a "merge" operation, if it is supported.
817 This merges another branch into the current one. This command prompts
818 the user for specifics, e.g. a merge source.
819
820 **** Currently supported for Bzr, Git, and Mercurial.
821
822 *** New option `vc-revert-show-diff' controls whether `vc-revert'
823 shows a diff while querying the user. It defaults to t.
824
825 *** Log entries in some Log View buffers can be toggled to display a
826 longer description by typing RET (log-view-toggle-entry-display).
827 In the Log View buffers made by `C-x v L' (vc-print-root-log), you can
828 use this to display the full log entry for the revision at point.
829
830 **** Currently supported for Bzr, Git, and Mercurial.
831
832 **** Packages using Log View mode can enable this functionality by
833 binding `log-view-expanded-log-entry-function' to a suitable function.
834
835 *** New command `vc-ediff' allows visual comparison of two revisions
836 of a file similar to `vc-diff', but using ediff backend.
837
838 ** FIXME: xdg-open for browse-url and reportbug, 2010/08.
839
840 ** Obsolete modes
841
842 *** partial-completion-mode is obsolete.
843 You can get a comparable behavior with:
844 (setq completion-styles '(partial-completion initials))
845 (setq completion-pcm-complete-word-inserts-delimiters t)
846
847 *** pc-mode.el is obsolete.
848
849 *** sregex.el is obsolete, since rx.el is a strict superset.
850
851 *** s-region.el and pc-select are obsolete.
852 They are superseded by shift-select-mode enabled by default in 23.1.
853
854 ** Miscellaneous
855
856 +++
857 *** f90.el has some support for Fortran 2008 syntax.
858
859 ---
860 *** `copyright-fix-years' can optionally convert consecutive years to ranges.
861
862 *** New command `nato-region' converts text to NATO phonetic alphabet.
863
864 \f
865 * New Modes and Packages in Emacs 24.1
866
867 ** Occur Edit mode applies edits made in *Occur* buffers to the
868 original buffers. It is bound to "e" in Occur mode.
869
870 ** New global minor modes electric-pair-mode, electric-indent-mode,
871 and electric-layout-mode.
872
873 ** tabulated-list.el provides a generic major mode for tabulated data,
874 from which other modes can be derived.
875
876 ** pcase.el provides the ML-style pattern matching macro `pcase'.
877
878 ** secrets.el is an implementation of the Secret Service API, an
879 interface to password managers like GNOME Keyring or KDE Wallet. The
880 Secret Service API requires D-Bus for communication. The command
881 `secrets-show-secrets' offers a buffer with a visualization of the
882 secrets.
883
884 ** notifications.el provides an implementation of the Desktop
885 Notifications API. It requires D-Bus for communication.
886
887 ** soap-client.el supports access to SOAP web services from Emacs.
888 soap-inspect.el is an interactive inspector for SOAP WSDL structures.
889
890 ** xmodmap-generic-mode for xmodmap files.
891
892 ** New emacs-lock.el package.
893 (The pre-existing one has been renamed to old-emacs-lock.el and moved
894 to obsolete/.) Now, Emacs Lock is a proper minor mode
895 `emacs-lock-mode'. Protection against exiting Emacs and killing the
896 buffer can be set separately. The mechanism for auto turning off
897 protection for buffers with inferior processes has been generalized.
898
899 \f
900 * Incompatible Lisp Changes in Emacs 24.1
901
902 ---
903 ** `char-direction-table' and the associated function `char-direction'
904 were deleted. They were buggy and inferior to the new support of
905 bidirectional editing introduced in Emacs 24. If you need the
906 bidirectional properties of a character, use `get-char-code-property'
907 with the last argument `bidi-class'.
908
909 +++
910 ** `copy-directory' now copies the source directory as a subdirectory
911 of the target directory, if the latter is an existing directory. The
912 new optional arg COPY-CONTENTS, if non-nil, makes the function copy
913 the contents directly into a pre-existing target directory.
914
915 ** `compose-mail' now accepts an optional 8th arg, RETURN-ACTION, and
916 passes it to the mail user agent function. This argument specifies an
917 action for returning to the caller after finishing with the mail.
918 This is currently used by Rmail to delete a mail window.
919
920 ** For mouse click input events in the text area, the Y pixel
921 coordinate in the POSITION list now counts from the top of the text
922 area, excluding any header line. Previously, it counted from the top
923 of the header line.
924
925 ** Removed obsolete name `e' (use `float-e' instead).
926
927 ** A backquote not followed by a space is now always treated as new-style.
928
929 ** Test for special mode-class was moved from view-file to view-buffer.
930 FIXME: This only says what was changed, but not what are the
931 programmer-visible consequences.
932
933 ** Passing a nil argument to a minor mode function now turns the mode
934 ON unconditionally.
935
936 +++
937 ** During startup, Emacs no longer adds entries for `menu-bar-lines'
938 and `tool-bar-lines' to `default-frame-alist' and `initial-frame-alist'.
939 With these alist entries omitted, `make-frame' checks the value of the
940 variable `menu-bar-mode'/`tool-bar-mode' to determine whether to create
941 a menu-bar or tool-bar, respectively. If the alist entries are added,
942 they override the value of `menu-bar-mode'/`tool-bar-mode'.
943
944 ** Regions created by mouse dragging are now normal active regions,
945 similar to the ones created by shift-selection. In previous Emacs
946 versions, these regions were delineated by `mouse-drag-overlay', which
947 has now been removed.
948
949 ** cl.el no longer provides `cl-19'.
950
951 ** The following obsolete functions and aliases were removed:
952 comint-kill-output, decompose-composite-char, outline-visible,
953 internal-find-face, internal-get-face, frame-update-faces,
954 frame-update-face-colors, x-frob-font-weight, x-frob-font-slant,
955 x-make-font-bold, x-make-font-demibold, x-make-font-unbold
956 x-make-font-italic, x-make-font-oblique, x-make-font-unitalic
957 x-make-font-bold-italic, mldrag-drag-mode-line, mldrag-drag-vertical-line,
958 iswitchb-default-keybindings, char-bytes, isearch-return-char,
959 make-local-hook
960
961 ** The following obsolete variables and varaliases were removed:
962 checkdoc-minor-keymap, vc-header-alist, directory-sep-char, and
963 font-lock-defaults-alist.
964
965 ** The following obsolete files were removed:
966 sc.el, x-menu.el, rnews.el, rnewspost.el
967
968 ** FIXME finder-inf.el changes.
969
970 \f
971 * Lisp changes in Emacs 24.1
972
973 ** Code can now use lexical scoping by default instead of dynamic scoping.
974 The `lexical-binding' variable lets code use lexical scoping for local
975 variables. It is typically set via file-local variables, in which case it
976 applies to all the code in that file.
977
978 *** `eval' takes a new optional argument `lexical' to choose the new lexical
979 binding instead of the old dynamic binding mode.
980
981 *** Lexically scoped interpreted functions are represented with a new form
982 of function value which looks like (closure ENV ARGS &rest BODY).
983
984 *** New macro `letrec' to define recursive local functions.
985
986 *** New function `special-variable-p' to check whether a variable is
987 declared as dynamically bound.
988
989 ** An Emacs Lisp testing tool is now included.
990 Emacs Lisp developers can use this tool to write automated tests for
991 their code. See the ERT info manual for details.
992
993 ** Changes for bidirectional display and editing
994
995 +++
996 *** New function `current-bidi-paragraph-direction'.
997 This returns the actual value of base direction of the paragraph at
998 point.
999
1000 +++
1001 *** New function `bidi-string-mark-left-to-right'.
1002 Given a string containing characters from right-to-left (RTL) scripts,
1003 this function returns another string which can be safely inserted into
1004 a buffer, such that any following text will be always displayed to the
1005 right of that string. (This works by appending the Unicode
1006 "LEFT-TO-RIGHT MARK" character when the argument string might need that.)
1007
1008 This is useful when the buffer has overall left-to-right (LTR)
1009 paragraph direction and you need to insert a string whose contents and
1010 directionality are not known in advance, without disrupting the layout
1011 of the line.
1012
1013 ** Window changes
1014
1015 +++
1016 *** Window tree functions are accessible in Elisp.
1017 Functions are provided to return the parent, siblings or child windows
1018 of any window including internal windows (windows not associated with a
1019 buffer) in the window tree.
1020
1021 +++
1022 *** Window manipulation can deal with internal windows.
1023 Many window handling functions like `split-window', `delete-window', or
1024 `delete-other-windows' as well as the window resizing functions can now
1025 act on any window including internal ones.
1026
1027 +++
1028 *** window-total-height/-width vs window-body-height/-width.
1029 The function `window-height' has been renamed to `window-total-height'
1030 and `window-width' has been renamed to `window-body-width'. The old
1031 names are provided as aliases. Two new functions `window-total-width'
1032 and `window-body-height' are provided.
1033
1034 +++
1035 *** Window parameters specific to window handling functions.
1036 For each window you can specify a parameter to override the default
1037 behavior of a number of functions like `split-window', `delete-window'
1038 and `delete-other-windows'. The variable `ignore-window-parameters'
1039 allows to ignore processing such parameters.
1040
1041 +++
1042 *** New semantics of third argument of `split-window'.
1043 The third argument of `split-window' has been renamed to SIDE and can be
1044 set to any of the values 'below, 'right, 'above, or 'left to make the
1045 new window appear on the corresponding side of the window that shall be
1046 split. Any other value of SIDE will cause `split-window' to split the
1047 window into two side-by-side windows as before.
1048
1049 +++
1050 *** `split-window-above-each-other' and `split-window-side-by-side'.
1051 The commands `split-window-vertically' and `split-window-horizontally'
1052 have been renamed to `split-window-above-each-other' and
1053 `split-window-side-by-side' respectively. The old names are provided as
1054 aliases.
1055
1056 +++
1057 *** Window resizing functions.
1058 A new standard function for resizing windows called `resize-window' has
1059 been introduced. This and all other functions for resizing windows no
1060 longer delete any windows when they become too small.
1061
1062 +++
1063 *** `adjust-window-trailing-edge' adjustments.
1064 `adjust-window-trailing-edge' can now deal with fixed-size windows and
1065 is able to resize other windows if a window adjacent to the trailing
1066 edge cannot be shrunk any more. This makes its behavior more similar to
1067 that of Emacs 21 without compromising, however, its inability to delete
1068 windows which was introduced in Emacs 22.
1069
1070 +++
1071 *** Window-local buffer lists.
1072 Windows now have local buffer lists. This means that removing a buffer
1073 from display in a window will preferably show the buffer previously
1074 shown in that window with its previous window-start and window-point
1075 positions. This also means that the same buffer may be automatically
1076 shown twice even if it already appears in another window.
1077
1078 +++
1079 *** `switch-to-buffer' has a new optional argument FORCE-SAME-WINDOW,
1080 which if non-nil requires the buffer to be displayed in the currently
1081 selected window, signaling an error otherwise. If nil, another window
1082 can be used, e.g. if the selected one is strongly dedicated.
1083
1084 *** `split-window-vertically' and `split-window-horizontally' renamed
1085 to `split-window-above-each-other' and `split-window-side-by-side'
1086 respectively. The old names are kept as aliases.
1087
1088 *** Display actions
1089
1090 **** The second arg to `display-buffer' and `pop-to-buffer' is now
1091 named ACTION, and takes a display action of the same form as
1092 `display-buffer-base-action' (see Changes, above). A non-nil,
1093 non-list value is treated specially, as the old meaning.
1094
1095 **** New variable `display-buffer-overriding-action'.
1096
1097 **** The procedure of `display-buffer' etc. to choose a window is
1098 determined by combining `display-buffer-overriding-action',
1099 `display-buffer-alist', the ACTION arg, `display-buffer-base-action',
1100 and `display-buffer-fallback-action'. The second and fourth of these
1101 are user-customizable variables.
1102
1103 See the docstring of `display-buffer' for details.
1104
1105 +++
1106 *** New behavior of `quit-window'.
1107 The behavior of `quit-window' has been changed in order to restore the
1108 state before the last buffer display operation in that window.
1109
1110 ** Completion
1111
1112 *** New variable completion-extra-properties used to specify extra properties
1113 of the current completion:
1114 - :annotate-function, same as the old completion-annotate-function.
1115 - :exit-function, function to call after completion took place.
1116
1117 *** Functions on completion-at-point-functions can return any of the properties
1118 valid for completion-extra-properties.
1119
1120 *** completion-annotate-function is obsolete.
1121
1122 *** New `metadata' method for completion tables. The metadata thus returned
1123 can specify various details of the data returned by `all-completions':
1124 - `category' is the kind of objects returned (e.g., `buffer', `file', ...),
1125 used to select a style in completion-category-overrides.
1126 - `annotation-function' to add annotations in *Completions*.
1127 - `display-sort-function' to specify how to sort entries in *Completions*.
1128 - `cycle-sort-function' to specify how to sort entries when cycling.
1129
1130 ** `glyphless-char-display' can now distinguish between graphical and
1131 text terminal display, via a char-table entry that is a cons cell.
1132
1133 ** `open-network-stream' can now be used to open an encrypted stream.
1134 It now accepts an optional `:type' parameter for initiating a TLS
1135 connection, directly or via STARTTLS. To do STARTTLS, additional
1136 parameters (`:end-of-command', `:success', `:capabilities-command')
1137 must also be supplied.
1138
1139 +++
1140 ** pre/post-command-hook are not reset to nil upon error.
1141 Instead, the offending function is removed.
1142
1143 ** New low-level function run-hook-wrapped.
1144
1145 ** `server-eval-at' is provided to allow evaluating forms on different
1146 Emacs server instances.
1147
1148 ** `call-process' allows a `(:file "file")' spec to redirect STDOUT to
1149 a file.
1150
1151 ---
1152 ** Variable `stack-trace-on-error' removed.
1153 Also the debugger can now "continue" from an error, which means it will jump
1154 to the error handler as if the debugger had not been invoked instead of
1155 jumping all the way to the top-level.
1156
1157 ** New function `read-char-choice' reads a restricted set of characters,
1158 discarding any inputs not inside the set.
1159
1160 ** `image-library-alist' is renamed to `dynamic-library-alist'.
1161 The variable is now used to load all kind of supported dynamic libraries,
1162 not just image libraries. The previous name is still available as an
1163 obsolete alias.
1164
1165 ** New variable `syntax-propertize-function'.
1166 This replaces `font-lock-syntactic-keywords' which is now obsolete.
1167 This allows syntax-table properties to be set independently from font-lock:
1168 just call syntax-propertize to make sure the text is propertized.
1169 Together with this new variable come a new hook
1170 syntax-propertize-extend-region-functions, as well as two helper functions:
1171 syntax-propertize-via-font-lock to reuse old font-lock-syntactic-keywords
1172 as-is; and syntax-propertize-rules which provides a new way to specify
1173 syntactic rules.
1174
1175 ** New hook post-self-insert-hook run at the end of self-insert-command.
1176
1177 +++
1178 ** Syntax tables support a new "comment style c" additionally to style b.
1179
1180 ** frame-local variables cannot be let-bound any more.
1181
1182 +++
1183 ** prog-mode is a new major-mode meant to be the parent of programming mode.
1184 The prog-mode-hook it defines can be used to enable features for
1185 programming modes. For example:
1186 (add-hook 'prog-mode-hook 'flyspell-prog-mode)
1187 enables on the fly spell checking for comments and strings for
1188 programming modes.
1189
1190 ** define-minor-mode accepts a new keyword :variable.
1191
1192 +++
1193 ** `delete-file' and `delete-directory' now accept optional arg TRASH.
1194 Trashing is performed if TRASH and `delete-by-moving-to-trash' are
1195 both non-nil. Interactively, TRASH defaults to t, unless a prefix
1196 argument is supplied (see Trash changes, above).
1197
1198 ** `facemenu-read-color' is now an alias for `read-color'.
1199 The command `read-color' now requires a match for a color name or RGB
1200 triplet, instead of signalling an error if the user provides a invalid
1201 input.
1202
1203 ** Tool-bars can display separators.
1204 Tool-bar separators are handled like menu separators in menu-bar maps,
1205 i.e. via menu entries of the form `(menu-item "--")'.
1206
1207 ** Image API
1208
1209 *** Animated images support (currently animated gifs only).
1210
1211 **** `image-animated-p' returns non-nil if an image can be animated.
1212
1213 **** `image-animate' animates a supplied image spec.
1214
1215 **** `image-animate-timer' returns the timer object for an image that
1216 is being animated.
1217
1218 *** `image-extension-data' is renamed to `image-metadata'.
1219
1220 *** If Emacs is compiled with ImageMagick support (see Startup
1221 Changes), the function `imagemagick-types' returns a list of image
1222 file extensions that your installation of ImageMagick supports. The
1223 function `imagemagick-register-types' enables ImageMagick support for
1224 these image types, minus those listed in `imagemagick-types-inhibit'.
1225
1226 See the Emacs Lisp Reference Manual for more information.
1227
1228 ** XML and HTML parsing
1229
1230 *** If Emacs is compiled with libxml2 support (which is the default),
1231 two new Emacs Lisp-level functions are defined:
1232 `libxml-parse-html-region' (which will parse "real world" HTML)
1233 and `libxml-parse-xml-region' (which parses XML). Both return an
1234 Emacs Lisp parse tree.
1235
1236 FIXME: These should be front-ended by xml.el.
1237
1238 ** GnuTLS
1239
1240 *** Emacs can be compiled with libgnutls support
1241 This is the default. You will then be able to use the functionality
1242 in gnutls.el, namely the `open-gnutls-stream' and `gnutls-negotiate'
1243 functions. It's easiest to use these functions through
1244 `open-network-stream' because it can upgrade connections through
1245 STARTTLS opportunistically or use plain SSL, depending on your needs.
1246
1247 Only versions 2.8.x and higher or GnuTLS have been tested.
1248
1249 *** gnutls-log-level
1250 Set `gnutls-log-level' higher than 0 to get debug output. 1 is for
1251 important messages, 2 is for debug data, and higher numbers are as per
1252 the GnuTLS logging conventions. The output is in *Messages*.
1253
1254 ** Isearch
1255
1256 *** New hook `isearch-update-post-hook' that runs in `isearch-update'.
1257
1258 +++
1259 ** Progress reporters can now "spin".
1260 The MIN-VALUE and MAX-VALUE arguments of `make-progress-reporter' can
1261 now be nil, or omitted. This makes a "non-numeric" reporter. Each
1262 time you call `progress-reporter-update' on that progress reporter,
1263 with a nil or omitted VALUE argument, the reporter message is
1264 displayed with a "spinning bar".
1265
1266 ** New variable `revert-buffer-in-progress-p' is true while a buffer is
1267 being reverted, even if the buffer has a local `revert-buffer-function'.
1268
1269 ** New variables `delayed-warnings-list' and `delayed-warnings-hook' allow
1270 deferring warnings until the main command loop is executed.
1271
1272 +++
1273 ** `set-auto-mode' now respects mode: local variables at the end of files,
1274 as well as those in the -*- line.
1275
1276 ---
1277 ** rx.el has a new `group-n' construct for explicitly numbered groups.
1278
1279 ** keymaps can inherit from multiple parents.
1280
1281 +++
1282 ** New reader macro ## which stands for the empty symbol.
1283 This means that the empty symbol can now be read back. Also, #: by itself
1284 (when not immediately followed by a possible symbol character) stands for
1285 an empty uninterned symbol.
1286
1287 ** Obsolete functions and variables
1288
1289 *** buffer-substring-filters is obsolete.
1290 Use `filter-buffer-substring-functions' instead.
1291
1292 *** `byte-compile-disable-print-circle' is obsolete.
1293
1294 *** `deferred-action-list' and `deferred-action-function' are obsolete.
1295
1296 \f
1297 * Changes in Emacs 24.1 on non-free operating systems
1298
1299 ** New configure.bat option --enable-checking builds Emacs with extra
1300 runtime checks.
1301
1302 ** New configure.bat option --distfiles to specify files to be
1303 included in binary distribution.
1304
1305 ** New configure.bat option --without-gnutls to disable automatic
1306 GnuTLS detection.
1307
1308 ** New configure.bat option --lib for general library linkage, works
1309 with the USER_LIBS build variable.
1310
1311 ** New make target `dist' to create binary distribution for MS Windows.
1312
1313 ** On Nextstep/OSX, the menu bar can be hidden by customizing
1314 ns-auto-hide-menu-bar.
1315
1316 \f
1317 ----------------------------------------------------------------------
1318 This file is part of GNU Emacs.
1319
1320 GNU Emacs is free software: you can redistribute it and/or modify
1321 it under the terms of the GNU General Public License as published by
1322 the Free Software Foundation, either version 3 of the License, or
1323 (at your option) any later version.
1324
1325 GNU Emacs is distributed in the hope that it will be useful,
1326 but WITHOUT ANY WARRANTY; without even the implied warranty of
1327 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1328 GNU General Public License for more details.
1329
1330 You should have received a copy of the GNU General Public License
1331 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
1332
1333 \f
1334 Local variables:
1335 mode: outline
1336 paragraph-separate: "[ \f]*$"
1337 end: