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