More anchors for internal Glossary links.
[bpt/emacs.git] / etc / NEWS
CommitLineData
29b7722a 1GNU Emacs NEWS -- history of user-visible changes.
5b87ad55 2
acaf905b 3Copyright (C) 2010-2012 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
a49ca6b9 27---
31fd3586
GM
28** Emacs can be compiled with Gtk+ 3.0 if you pass --with-x-toolkit=gtk3
29to configure. Note that other libraries used by Emacs, RSVG and GConf,
30also depend on Gtk+. You can disable them with --without-rsvg and
31--without-gconf.
338648ad
GM
32
33---
31fd3586
GM
34** Emacs can be compiled with GnuTLS support.
35This happens by default if a suitably recent version of the library is
36found at build time. To prevent this, use the configure option
37`--without-gnutls'. See below for GnuTLS features.
338648ad 38
aded53ff 39---
31fd3586
GM
40** Emacs can be compiled with SELinux support.
41This happens by default if a suitably recent version of the library is
42found at build time. To prevent this, use the configure option
43`--without-selinux'. See below for SELinux features.
aded53ff 44
e547b051 45---
31fd3586
GM
46** Emacs can be compiled with ImageMagick support.
47This happens by default if a suitably recent version of the library is
48found at build time. To prevent this, use the configure option
49`--without-imagemagick'. See below for ImageMagick features.
c1f10868 50This feature is not available for the Nextstep or MS ports.
d9170db5 51
043efd56
GM
52---
53** Emacs can be compiled with libxml2 support.
54This happens by default if a suitably recent version of the library is
55found at build time. To prevent this, use the configure option
56`--without-xml2'. See below for libxml2 features.
57
3fd50d5c 58---
7d301ae6
CY
59** By default, the installed Info and man pages are compressed.
60You can disable this by configuring --without-compress-info.
61
62---
63** New configure option --with-wide-int.
81eafe29 64With it, Emacs integers typically have 62 bits, even on 32-bit machines.
0a768890
PE
65On 32-bit hosts, this raises the limit on buffer sizes from about 512 MiB
66to about 2 GiB.
81eafe29 67
d064e6a6 68---
7d301ae6 69** New configure options: --with-mmdf, --with-mail-unlink, --with-mailhost.
31fd3586
GM
70These provide no new functionality, they just remove the need to edit
71lib-src/Makefile by hand in order to use the associated features.
72
73---
7d301ae6 74** New configure option --enable-use-lisp-union-type.
31fd3586
GM
75This is only useful for Emacs developers to debug certain types of bugs.
76This is not a new feature; only the configure flag is new.
041d709f 77
ddb54206 78---
041d709f
CY
79** The standalone programs digest-doc and sorted-doc are removed.
80Emacs now uses Lisp commands `doc-file-to-man' and `doc-file-to-info'.
81
82---
83** The standalone program `fakemail' is removed.
84If you need it, feedmail.el provides a superset of the functionality.
85
0bfd685e 86\f
eb199145 87* Startup Changes in Emacs 24.1
4a263588 88
fdeb32ec 89---
198a7a97 90** The --unibyte, --multibyte, --no-multibyte, and --no-unibyte
adbf62ff
GM
91command line arguments, and the EMACS_UNIBYTE environment variable, no
92longer have any effect. (They were declared obsolete in Emacs 23.)
198a7a97 93
fdeb32ec 94+++
66b7b0fe 95** New command line option `--no-site-lisp' removes site-lisp directories
1b5e5b0c
GM
96from load-path. -Q now implies this. This option does not affect the
97EMACSLOADPATH environment variable (and hence has no effect for
c8d59ba3 98Nextstep builds).
66b7b0fe 99
0bfd685e 100\f
eb199145 101* Changes in Emacs 24.1
7841339b 102
a2a25d24 103** Completion
fdeb32ec 104
7d301ae6 105*** Shell mode uses pcomplete rules, with the standard completion UI.
3d992aa0 106+++
de0bde62
CY
107*** Many packages have been changed to use `completion-at-point'
108rather than their own completion code.
3d992aa0 109+++
de0bde62 110*** `completion-at-point' now handles tags and semantic completion.
27a16462 111---
a2a25d24
SM
112*** Completion in a non-minibuffer now tries to detect the end of completion
113and pops down the *Completions* buffer accordingly.
de09aa52 114+++
7d301ae6 115*** Completion can cycle, depending on `completion-cycle-threshold'.
27a16462 116+++
a2a25d24 117*** New completion style `substring'.
939db9ac 118+++
620c53a6 119*** Completion style can be set per-category `completion-category-overrides'.
939db9ac 120+++
620c53a6 121*** Completion of buffers now uses substring completion by default.
fb5b8aca
CY
122---
123*** The `widget-complete-field' option has been removed.
620c53a6 124
6870aaef 125** Mail changes
b30941db 126+++
7d301ae6
CY
127*** The first time you try sending mail, Emacs asks for a mail method.
128This is implemented by a new default for `send-mail-function', which
129is `sendmail-query-once'. This offers to use the smtpmail package, or
130to use the old defaults relying on external mail facilities
131(`sendmail-send-it' on GNU/Linux and other Unix-like systems, and
132`mailclient-send-it' on Windows).
9f26dc24 133+++
7d301ae6
CY
134*** Typing C-c m in the buffer made by M-x report-emacs-bug transfers
135the report to your desktop's preferred mail client, if there is one.
136This uses either the "xdg-email" utility, or Mac OS's "open" command.
c3760c17 137---
7d301ae6
CY
138*** See Changes in Specialized Modes and Packages for SMTPmail changes
139and Mail mode changes
3f88cd72 140
041d709f 141** Emacs server and client changes
ddb54206 142+++
7d301ae6 143*** New option `server-port' specifies the port for TCP Emacs servers.
041d709f
CY
144+++
145*** New emacsclient argument -q/--quiet suppresses some status messages.
146+++
7d301ae6
CY
147*** New emacsclient argument --frame-parameters specifies the frame
148parameters of any newly-created graphical frame.
041d709f 149+++
8350f087 150*** If emacsclient shuts down as a result of Emacs signaling an
041d709f
CY
151error, its exit status is 1.
152+++
153*** New emacsclient argument --parent-id ID.
154This opens a client frame in parent X window ID, via XEmbed, similar
155to the --parent-id argument to Emacs.
156
d0ce9f8c
MB
157** Internationalization changes
158
f4b6ba46 159+++
d0ce9f8c 160*** Emacs now supports display and editing of bidirectional text.
7d301ae6
CY
161Right-to-left (RTL) scripts, such as Arabic, Farsi, and Hebrew, are
162displayed in the correct visual order as expected by users of those
163scripts. This display reordering is a "full bidirectionality" class
164implementation of the Unicode Bidirectional Algorithm. Buffers with
165no RTL text should look exactly the same as before.
f4b6ba46 166
041d709f
CY
167+++
168**** New buffer-local variable `bidi-display-reordering'.
7d301ae6 169To disable display reordering in a buffer, change this to nil.
d20e1419 170
041d709f
CY
171+++
172**** New buffer-local variable `bidi-paragraph-direction'.
173If nil (the default), Emacs determines the base direction of each
174paragraph from its text, as specified by the Unicode Bidirectional
7d301ae6
CY
175Algorithm. Setting the value to `right-to-left' or `left-to-right'
176forces a base direction on each paragraph.
f4b6ba46 177
7d301ae6
CY
178Paragraphs with right-to-left base direction are displayed starting at
179the right window edge.
f1816485 180
d0ce9f8c 181+++
041d709f
CY
182*** Enhanced support for characters with no glyphs in available fonts.
183If a character has no glyphs in any of the available fonts, Emacs
184normally displays it either as a hexadecimal code in a box or as a
d0ce9f8c
MB
185thin 1-pixel space. In addition to these two methods, Emacs can
186display these characters as empty box, as an acronym, or not display
187them at all. To change how these characters are displayed, customize
188the variable `glyphless-char-display-control'.
189
041d709f 190On character terminals, these methods are used for characters that
d0ce9f8c
MB
191cannot be encoded by the `terminal-coding-system'.
192
ddb54206 193---
7d301ae6 194*** New input methods: farsi, farsi-translit, bulgarian-alt-phonetic.
041d709f 195
939db9ac
CY
196+++
197*** `nobreak-char-display' now also highlights Unicode hyphen chars
198(U+2010 and U+2011).
199
31fd3586 200---
7d301ae6 201*** New Hebrew translation of the Emacs Tutorial.
31fd3586
GM
202Type `C-u C-h t' to choose it in case your language setup doesn't
203automatically select it.
204
7d301ae6
CY
205** An Emacs Lisp package manager is now included.
206This is a convenient way to download and install additional packages,
207from a package repository at http://elpa.gnu.org.
da97a9e6 208+++
7d301ae6
CY
209*** M-x list-packages shows a list of packages, which can be
210selected for installation.
d366bd53 211+++
7d301ae6 212*** New command `describe-package', bound to `C-h P'.
d366bd53 213+++
7d301ae6
CY
214*** By default, all installed packages are loaded automatically when
215Emacs starts up. To disable this, set `package-enable-at-startup' to
216nil. To specify the packages to load, customize `package-load-list'.
16a91140 217
7d301ae6 218** Custom Themes
35137ed3 219+++
7d301ae6
CY
220*** New command `M-x customize-themes', which provides a convenient
221interface for enabling and disabling Custom themes.
21100e7d 222+++
7d301ae6
CY
223*** New option `custom-theme-load-path' is the load path for themes.
224Emacs no longer looks for custom themes in `load-path'. The default
225is to search in `custom-theme-directory', followed by a built-in theme
226directory named "themes/" in `data-directory'.
a49ca6b9 227+++
7d301ae6
CY
228*** New option `custom-safe-themes' records known-safe theme files.
229If a theme is not in this list, Emacs queries before loading it, and
230offers to save the theme to `custom-safe-themes' automatically. By
231default, all themes included in Emacs are treated as safe.
b7d65a5f 232
7d301ae6 233** Improved GTK integration
a49ca6b9 234+++
7d301ae6
CY
235*** GTK scroll-bars are now placed on the right by default.
236Use `set-scroll-bar-mode' to change this.
a49ca6b9 237+++
7d301ae6
CY
238*** GTK tool bars can have just text, just images or images and text.
239Customize `tool-bar-style' to choose style. On a Gnome desktop, the
240default is taken from desktop settings.
241---
242*** GTK tool bars can be placed on the left/right or top/bottom of the frame.
243The frame-parameter tool-bar-position controls this. It takes the
244values top, left, right or bottom. The Options => Show/Hide menu has
245entries for this.
246+++
247*** The default colors for selected text (the `region' face) are taken
248from the GTK theme when Emacs is built with GTK.
249+++
250*** Emacs uses GTK tooltips by default if built with GTK.
251You can disable this by changing `x-gtk-use-system-tooltips' to nil.
a5bee597 252
7d301ae6 253** Exiting changes
ddb54206 254+++
7d301ae6
CY
255*** Emacs now calls `kill-emacs' if it receives SIGTERM or SIGHUP,
256and also if it receives a SIGINT signal in batch mode.
ddb54206 257+++
7d301ae6
CY
258*** `kill-emacs-hook' is now also run in batch mode.
259Third-party code which adds to `kill-emacs-hook' should check if they
260do the right thing in batch mode.
9c524fcb 261
041d709f 262** Scrolling changes
550f41cd 263+++
041d709f 264*** New scrolling commands `scroll-up-command' and `scroll-down-command'
0a19a6f8 265(bound to C-v/[next] and M-v/[prior]) do not signal errors at top/bottom
7d301ae6 266of buffer at first key-press (instead they move to top/bottom of buffer)
550f41cd 267when `scroll-error-top-bottom' is non-nil.
550f41cd
CY
268+++
269*** New variable `scroll-error-top-bottom' (see above).
e7a3ff06 270+++
041d709f 271*** New scrolling commands `scroll-up-line' and `scroll-down-line'
5a97d2da 272scroll a line instead of full screen.
550f41cd 273+++
041d709f 274*** New property `scroll-command' should be set on a command's symbol to
b2957ea8 275define it as a scroll command affected by `scroll-preserve-screen-position'.
d0f69533 276+++
041d709f 277*** If you customize `scroll-conservatively' to a value greater than 100,
d0f69533
EZ
278Emacs will never recenter point in the window when it scrolls due to
279cursor motion commands or commands that move point (e.f., `M-g M-g').
280Previously, you needed to use `most-positive-fixnum' as the value of
281`scroll-conservatively' to achieve the same effect.
d0f69533 282---
7d301ae6 283*** "Aggressive" scrolling now honors the scroll margins.
d0f69533
EZ
284If you customize `scroll-up-aggressively' or
285`scroll-down-aggressively' and move point off the window, Emacs now
286scrolls the window so as to avoid positioning point inside the scroll
287margin.
288
04e2ce72 289+++
7d301ae6
CY
290** Basic SELinux support has been added.
291This requires Emacs to be linked with libselinux at build time.
f1a5d776 292
05f77e38 293+++
7d301ae6
CY
294*** Emacs preserves the SELinux file context when backing up, and
295optionally when copying files. The function `copy-file' has an extra
296optional argument for preserving SELinux context, and the return value
297of `backup-buffer' now includes the SELinux context.
f0bf7c8e 298
d43f5a42 299+++
7d301ae6
CY
300*** The new functions file-selinux-context and set-file-selinux-context
301get and set the SELinux context of a file.
44198b6e 302
7d301ae6 303** Trash changes
b0d7d8af 304+++
7d301ae6
CY
305*** `delete-by-moving-to-trash' now only affects commands that specify
306trashing. This avoids inadvertently trashing temporary files.
b0d7d8af 307+++
7d301ae6
CY
308*** Calling `delete-file' or `delete-directory' with a prefix argument
309now forces true deletion, regardless of `delete-by-moving-to-trash'.
278f6845 310
041d709f 311** File- and directory-local variable changes
b8f82dc1 312+++
041d709f
CY
313*** You can stop directory local vars from applying to subdirectories.
314Add an element (subdirs . nil) to the alist portion of any variables
315settings to indicate that the section should not apply to
316subdirectories.
89bd9ccd 317+++
041d709f
CY
318*** Directory local variables can apply to some file-less buffers.
319Affected modes include dired, vc-dir, and log-edit. For example,
320adding "(diff-mode . ((mode . whitespace)))" to .dir-locals.el will
321turn on `whitespace-mode' for *vc-diff* buffers. Modes should call
322`hack-dir-local-variables-non-file-buffer' to support this.
041d709f
CY
323+++
324*** Using "mode: MINOR-MODE" to enable a minor mode is deprecated.
325Instead, use "eval: (minor-mode 1)".
c136e5cd 326
61086eb6 327+++
7b447e9b
GM
328*** The variable `inhibit-first-line-modes-regexps' has been renamed
329to `inhibit-local-variables-regexps'. As the name suggests, it now
330applies to ALL file local variables, not just -*- mode ones.
331The associated `inhibit-first-line-modes-suffixes' has been renamed
332in the corresponding way.
333
7d301ae6 334** Graphical interface changes
fdeb32ec 335+++
7d301ae6
CY
336*** On graphical displays, the mode-line no longer ends in dashes.
337Also, the first dash (which does not indicate anything) is just
338displayed as a space.
b22b1918 339---
5d907d6c
DA
340*** `menu-bar-select-buffer-function' lets you choose another operation
341instead of `switch-to-buffer' when selecting an item in the Buffers menu.
7d301ae6
CY
342---
343*** Lucid menus and dialogs can display antialiased fonts if Emacs is
344built with Xft. These fonts can be set via X resources, for example:
345Emacs.pane.menubar.font: Courier-12
346
347+++
348** New basic faces `error', `warning', `success'.
349These are used to highlight text indicating failure, caution or
350successful operation.
351
352+++
353** New option `list-colors-sort' defines the color sort order
354for `list-colors-display'.
355
356+++
357** The variable `focus-follows-mouse' now always defaults to nil.
5d907d6c 358
0a2132ba
CY
359** Window changes
360
361+++
362*** Resizing an Emacs frame now preserves proportional window sizes,
363modulo restrictions like window minimum sizes and fixed-size windows.
364
365*** The behavior of `display-buffer' is now customizable in detail.
717a1362 366+++
0a2132ba
CY
367**** New option `display-buffer-base-action' specifies a list of
368user-determined display "actions" (functions and optional arguments
369for choosing the displaying window).
370
371This takes precedence over the default display action, which is
372specified by `display-buffer-fallback-action'.
373
717a1362 374+++
0a2132ba
CY
375**** New option `display-buffer-alist' maps buffer name regexps to
376display actions, taking precedence over `display-buffer-base-action'.
377
378+++
a0c2d0ae
MR
379*** New option `window-combination-limit'.
380The new option `window-combination-limit' allows to return the space
381obtained for resizing or creating a window more reliably to the window
382from which such space was obtained.
0a2132ba
CY
383
384+++
a0c2d0ae
MR
385*** New option `window-combination-resize'.
386The new option `window-combination-resize' allows to split a window that
387otherwise cannot be split because it's too small by stealing space from
388other windows in the same combination. Subsequent resizing or deletion
389of the window will resize all windows in the same combination as well.
0a2132ba
CY
390
391+++
392*** New commands `maximize-window' and `minimize-window'.
53964682 393These maximize and minimize the size of a window within its frame.
0a2132ba
CY
394
395+++
396*** New commands `switch-to-prev-buffer' and `switch-to-next-buffer'.
397These functions allow to navigate through the live buffers that have
398been shown in a specific window.
399
7d301ae6 400** Minibuffer changes
104dc9c6 401+++
7d301ae6 402*** The inactive minibuffer has its own major mode `minibuffer-inactive-mode'.
104dc9c6
GM
403This is handy for minibuffer-only frames, and is also used for the feature
404where mouse-1 pops up *Messages*"', which can now easily be changed.
041d709f 405
f66eca26 406---
7d301ae6 407*** Minibuffers set `truncate-lines' to nil.
f66eca26 408If you want to change the value to something else, you could use
7d301ae6
CY
409for example `minibuffer-setup-hook'.
410
411+++
412** `auto-mode-case-fold' is now enabled by default.
413
414+++
415** `backup-by-copying-when-mismatch' now defaults to t.
f66eca26 416
0bfd685e 417\f
eb199145 418* Editing Changes in Emacs 24.1
b350bdf2 419
892777ba 420** Search changes
892777ba
CY
421+++
422*** C-y in Isearch is now bound to isearch-yank-kill, instead of
423isearch-yank-line.
5abc31ef 424+++
25666126
LL
425*** M-y in Isearch is now bound to isearch-yank-pop, instead of
426isearch-yank-kill.
892777ba
CY
427+++
428*** M-s C-e in Isearch is now bound to isearch-yank-line.
429
ea4f7750 430+++
b2b0776e 431** New commands `count-words-region' and `count-words'.
10607bea
CY
432+++
433*** M-= is bound to `count-words-region', not `count-lines-region'.
434The `count-words-region' command, when called interactively, reports
435the number of lines, words, and characters in the region. It is a
436superset of the old `count-lines-region', which is now an obsolete
437alias for it.
ea4f7750 438
21100e7d 439+++
ec9da840 440** The command `just-one-space' (M-SPC), if given a negative argument,
1c708c1a
CY
441also deletes newlines around point.
442
b9229673 443** Deletion changes
50b063c3 444+++
b9229673 445*** New option `delete-active-region'.
ddb54206
CY
446If non-nil, [delete] and DEL delete the region if it is active and no
447prefix argument is given. If set to `kill', these commands kill
448instead.
50b063c3 449+++
59ee0542 450*** New command `delete-forward-char', bound to [delete].
42d9cffa
CY
451This is meant for interactive use, and obeys `delete-active-region'.
452The command `delete-char' does not obey `delete-active-region'.
50b063c3 453---
b9229673
CY
454*** `delete-backward-char' is now a Lisp function.
455Apart from obeying `delete-active-region', its behavior is unchanged.
7d301ae6
CY
456However, the byte compiler now warns if it is called from Lisp; Lisp
457callers should use delete-char with a negative argument instead.
ddb54206 458---
b9229673
CY
459*** The option `mouse-region-delete-keys' has been deleted.
460
f9d71b42
CY
461** Selection changes.
462
7d301ae6
CY
463The default handling of clipboard and primary selections has been
464changed to conform with modern X applications. In short, most
465commands for killing and yanking text now use the clipboard, while
466mouse commands use the primary selection.
b1ab31ae
CY
467
468In the following, we provide a list of these changes, followed by a
469list of steps to get the old behavior back if you prefer that.
470
963578d3 471+++
b1ab31ae
CY
472*** `select-active-regions' now defaults to t.
473Merely selecting text (e.g. with drag-mouse-1) no longer puts it in
963578d3 474the kill ring. The selected text is put in the primary selection, if
b1ab31ae
CY
475the system possesses a separate primary selection facility (e.g. X).
476
963578d3 477+++
b1ab31ae
CY
478**** `select-active-regions' also accepts a new value, `only'.
479This means to only set the primary selection for temporarily active
480regions (usually made by mouse-dragging or shift-selection);
481"ordinary" active regions, such as those made with C-SPC followed by
482point motion, do not alter the primary selection.
483
963578d3
CY
484---
485**** `mouse-drag-copy-region' now defaults to nil.
486
487+++
b1ab31ae
CY
488*** mouse-2 is now bound to `mouse-yank-primary'.
489This pastes from the primary selection, ignoring the kill-ring.
490Previously, mouse-2 was bound to `mouse-yank-at-click'.
963578d3 491+++
b1ab31ae 492*** `x-select-enable-clipboard' now defaults to t on all platforms.
963578d3 493+++
b1ab31ae
CY
494*** `x-select-enable-primary' now defaults to nil.
495Thus, commands that kill text or copy it to the kill-ring (such as
496M-w, C-w, and C-k) also use the clipboard---not the primary selection.
497
963578d3 498---
b1ab31ae
CY
499**** The "Copy", "Cut", and "Paste" items in the "Edit" menu are now
500exactly equivalent to, respectively M-w, C-w, and C-y.
501
963578d3 502---
b1ab31ae
CY
503**** Note that on MS-Windows, `x-select-enable-clipboard' was already
504non-nil by default, as Windows does not support the primary selection
505between applications.
506
963578d3 507---
b1ab31ae 508*** To return to the previous behavior, do the following:
104c2fe9 509**** Change `select-active-regions' to nil.
b1ab31ae
CY
510**** Change `mouse-drag-copy-region' to t.
511**** Change `x-select-enable-primary' to t (on X only).
512**** Change `x-select-enable-clipboard' to nil.
513**** Bind `mouse-yank-at-click' to mouse-2.
f9d71b42 514
963578d3 515+++
084e6df3 516*** Support for X cut buffers has been removed.
a08a07e3 517+++
3fd50d5c
CY
518*** X clipboard managers are now supported.
519To inhibit this, change `x-select-enable-clipboard-manager' to nil.
4b80f674 520
50b063c3 521+++
99f053cf 522** New command `rectangle-number-lines', bound to `C-x r N', numbers
6b2c221e 523the lines in the current rectangle. With a prefix argument, this
99f053cf
JA
524prompts for a number to count from and for a format string.
525
6bf7006f 526+++
7d301ae6 527** `redisplay-dont-pause' now defaults to t.
6bf7006f
EZ
528This makes Emacs feel more responsive to editing commands that arrive
529at high rate, e.g. if you lean on some key, because stopping redisplay
530in the middle (when this variable is nil) forces more expensive
531updates later on, and Emacs appears to be unable to keep up.
532
e70b5064
CY
533+++
534** The behavior of <TAB> for active regions in Text mode has changed.
535In Text and related modes, typing <TAB> (`indent-for-tab-command')
536when the region is active causes Emacs to indent all the lines in the
537region, aligning them with the line previous to the first line in the
538region (or with the left margin if there is no previous line).
539
9bae34bf 540\f
eb199145 541* Changes in Specialized Modes and Packages in Emacs 24.1
efeb796b 542
bfd779dd 543+++
041d709f 544** Archive Mode has basic support for browsing and updating 7z archives.
d76674bb 545
b7c3692a 546** BibTeX mode
b2096d72 547---
2de69e00 548*** BibTeX mode now supports biblatex.
7d301ae6
CY
549Use the variable `bibtex-dialect' to select different BibTeX dialects.
550`bibtex-entry-field-alist' is now an obsolete alias for
551`bibtex-BibTeX-entry-alist'.
552
b2096d72 553---
34699b85 554*** New command `bibtex-search-entries' bound to C-c C-a.
b2096d72 555---
b7c3692a 556*** New `bibtex-entry-format' option `sort-fields', disabled by default.
b2096d72 557---
022fe7ce
RW
558*** New variable `bibtex-search-entry-globally'.
559
7d301ae6
CY
560** Browse-url
561+++
562*** New option `browse-url-mailto-function' specifies how to handle "mailto:"s.
563---
564*** The default browser used by the package is now the "xdg-open" program,
565on platforms that support it. This calls your desktop's preferred browser.
566
cf16af42
GM
567** Calendar, Diary, and Appt
568
548d0a63 569+++
7d301ae6 570*** Diary entries can contain non-printing "comments".
548d0a63
GM
571See the variable `diary-comment-start'.
572
5006e634
GM
573+++
574*** Appointments can specify their individual warning times.
575See the variable `appt-warning-time-regexp'.
576
0a2bb1a9
GM
577---
578*** The function specified by `appt-disp-window-function' may be passed
579lists of arguments if multiple appointments are due at similar times.
580If you are using a custom function for this, you should update it.
581
d306b4da 582+++
7454f200
GM
583*** New function `diary-hebrew-birthday'.
584
e565dd37
GM
585---
586*** Elements of `calendar-day-abbrev-array' and `calendar-month-abbrev-array'
587may no longer be nil, but must all be strings.
588
cf16af42 589---
7d301ae6
CY
590*** The obsolete (since Emacs 22.1) method of enabling the appt
591package by adding `appt-make-list' to `diary-hook' has been removed.
592Use `appt-activate' instead.
cf16af42
GM
593
594---
595*** Some appt variables (obsolete since Emacs 22.1) have been removed:
596appt-issue-message (use the function appt-activate)
597appt-visible/appt-msg-window (use the variable appt-display-format)
598
599---
600*** Some diary function aliases (obsolete since Emacs 22.1) have been removed:
601view-diary-entries, list-diary-entries, show-all-diary-entries
602
bbe531d6 603+++
551b046f
AM
604** CC Mode
605*** New feature to "guess" the style in an existing buffer.
7d301ae6 606The main entry point is M-x c-guess.
041d709f 607
551b046f
AM
608*** Java Mode now supports Java 5.0 (Tiger) and 6 (Mustang).
609
610*** c-beginning-of-defun and c-end-of-defun now respect nested scopes:
611Thus C-M-a will, by default, go to the beginning of the immediate function,
612not the top level.
613
614*** "Macros with semicolon" can be registered, for correct indentation.
615Where such a macro ends a line (no semicolon) the next statement is no longer
616parsed as a statement continuation.
617
041d709f
CY
618** comint and modes derived from it use the generic completion code.
619
620** Compilation mode
29eabb8e 621---
7d301ae6 622*** Compilation mode can be used without Font Lock mode.
041d709f
CY
623`compilation-parse-errors-function' is now obsolete.
624
34c071c6
GM
625---
626*** New variable `compilation-filter-start', bound while
7d301ae6
CY
627`compilation-filter-hook' runs. It records the start position of the
628text inserted by `compilation-filter'.
041d709f 629
83274125 630---
47a6a35f
GM
631*** `compilation-error-screen-columns' and `compilation-first-column'
632are obeyed in the editing buffer. So programming language modes can
7d301ae6
CY
633set them, whereas previously only the value in the *Compilation*
634buffer was used.
1dce7193 635
52834b6b
CY
636** Customize
637
b0d7d8af 638+++
52834b6b
CY
639*** Customize buffers now contain a search field.
640The search is performed using `customize-apropos'.
7d301ae6 641To turn off the search field, set `custom-search-field' to nil.
52834b6b 642
b0d7d8af 643+++
52834b6b
CY
644*** Custom options now start out hidden if at their default values.
645Use the arrow to the left of the option name to toggle visibility.
646
ff1796f3 647---
52834b6b
CY
648*** custom-buffer-sort-alphabetically now defaults to t.
649
b0d7d8af 650+++
52834b6b 651*** The color widget now has a "Choose" button, which allows you to
7d301ae6 652choose a color via `list-colors-display'.
52834b6b 653
041d709f
CY
654** D-Bus
655
425a25f1 656+++
5da3be7f
GM
657*** It is now possible to access buses other than the default system
658or session bus.
041d709f 659
425a25f1 660+++
7d301ae6 661*** The `dbus-register-method' and `dbus-register-property' functions
5da3be7f 662optionally do not register names.
041d709f 663
425a25f1 664+++
7d301ae6
CY
665*** The new function `dbus-register-service' registers a known service
666name on a D-Bus without simultaneously registering a property or a
667method.
041d709f 668
f5d6548a 669** Dired-x
425a25f1 670
c40a7de7 671---
7d301ae6
CY
672*** C-x C-j (`dired-jump') and C-x 4 C-j (`dired-jump-other-window'),
673if called with a prefix argument, read a file name from the minibuffer
674instead of using the current buffer.
f5d6548a 675
817b48a7 676+++
7d301ae6 677*** The "dired local variables" feature of Dired-x is obsolete.
817b48a7 678The standard directory local variables feature replaces it.
8117868f 679
041d709f 680** ERC changes
7492acc9 681
c4077254
GM
682---
683*** New options `erc-autojoin-timing' and `erc-autojoin-delay',
684controlling attempts to autojoin a channel.
041d709f
CY
685
686*** New variable `erc-coding-system-precedence': If we use `undecided'
687as the server coding system, this variable will then be consulted.
688The default is to decode strings that can be decoded as utf-8 as
689utf-8, and do the normal `undecided' decoding for the rest.
7492acc9 690
041d709f 691** Eshell changes
7492acc9 692
05f77e38
GM
693---
694*** The default value of `eshell-directory-name' has changed
695to be an "eshell" directory in `user-emacs-directory'.
696The old "~/.eshell/" directory is still used if it exists, though.
041d709f
CY
697
698** gdb-mi
88c5c7c8 699+++
05f77e38
GM
700*** The GDB User Interface has been migrated to GDB Machine Interface.
701It now supports multithread non-stop debugging and simultaneous
702debugging of several threads.
7492acc9 703
18af70d0
CY
704** Image mode
705
05f77e38
GM
706+++
707*** RET (`image-toggle-animation') toggles animation, if applicable.
708Animation plays once, unless the option `image-animate-loop' is non-nil.
18af70d0 709
041d709f 710** Info
723ee192 711
2ebc3b94 712+++
7d301ae6 713*** New command M-x info-display-manual displays a named Info manual.
2ebc3b94
GM
714If that manual is already visited in some Info buffer, it displays
715that buffer. (This is handy if you have many manuals in many *info*
716buffers, and don't remember the name of the buffer visiting the manual
717you want to consult.) Otherwise, it loads and displays the manual.
691cf4a0 718
88c5c7c8 719+++
24ea72d3
EZ
720*** `e' is now bound to `end-of-buffer' rather than to `Info-edit'.
721This is for compatibility with the stand-alone Info reader program,
722and also because `Info-edit' is a rarely used command that is disabled
723by default.
724
7d301ae6
CY
725** Mail mode changes (not Message mode)
726+++
727*** New command M-x mail-add-attachment for adding MIME attachments
728---
729*** The command `mail-attach-file' was renamed to `mail-insert-file'
730(its name is misleading, since it has nothing to do with MIME
731attachments). The old name is now an obsolete alias to the new name.
732
24ea72d3 733+++
06b08b88 734** MH-E has been upgraded to MH-E version 8.3.1.
041d709f 735See MH-E-NEWS for details.
37221432 736
ff1796f3 737---
041d709f 738** Modula-2 mode provides auto-indentation.
37221432 739
ff1796f3 740---
041d709f 741** mpc.el: Can use pseudo tags of the form tag1|tag2 as a union of two tags.
3c3d4f5b 742
3d439cd1 743+++
5d1ac394
CY
744** nXML mode no longer binds C-RET to `nxml-complete'.
745Completion is now performed via `completion-at-point', bound to M-TAB.
746If `nxml-bind-meta-tab-to-complete-flag' is non-nil (the default),
747this performs tag completion.
748
ff1796f3 749---
041d709f 750** Prolog mode has been completely revamped, with lots of additional
7d301ae6
CY
751functionality such as more intelligent indentation, electricity,
752support for more variants, including Mercury, and a lot more.
041d709f
CY
753
754** Rmail
755
a7686350 756+++
041d709f
CY
757*** The command `rmail-epa-decrypt' decrypts OpenPGP data
758in the Rmail incoming message.
759
50419064
GM
760---
761*** The variable `rmail-message-filter' no longer has any effect.
762This change was made in Emacs 23.1 but was not advertised at the time.
763Try using `rmail-show-message-hook' instead.
764
717a1362 765** Shell mode
88c5c7c8 766+++
de0bde62 767*** Shell mode uses pcomplete rules, with the standard completion UI.
88c5c7c8 768+++
717a1362
CY
769*** The `shell' command prompts for the shell path name if the default
770directory is a remote file name and neither the environment variable
771$ESHELL nor the variable `explicit-shell-file-name' is set.
772
7d301ae6
CY
773** SMTPmail
774
775+++
776*** smtpmail now uses encrypted connections (via STARTTLS) by default
777if the mail server supports them. This uses either built-in GnuTLS
778support, or the starttls.el library. Customize `smtpmail-stream-type'
779to change this.
780
781+++
782*** The variable `smtpmail-auth-credentials' has been removed.
783By default, the information is now stored in the file ~/.authinfo.
784This was the default value of smtpmail-auth-credentials.
785If you had customized smtpmail-auth-credentials to a list of user
786names and passwords, those settings will not be used. Your first
787connection to the smtp server will prompt for the user name and password,
788and then offer to save them to the ~/.authinfo file. Or you can
789manually copy the credentials to your ~/.authinfo files. For example,
790if you had
791
792 (setq smtpmail-auth-credentials
793 '(("mail.example.org" 25 "jim" "s!cret")))
794
795then the equivalent line in ~/.authinfo would be
796
797 machine mail.example.org port 25 login jim password s!cret
798
799See the auth-source manual for more information, e.g. on encrypting
800the credentials file.
801
802+++
803*** The variable `smtpmail-starttls-credentials' has been removed.
804
805If you had that set, then you need to put
806
807 machine smtp.whatever.foo port 25 key "~/.my_smtp_tls.key" cert "~/.my_smtp_tls.cert"
808
809in your ~/.authinfo file instead.
810
ddb54206 811---
34e8a2da 812** SQL mode
041d709f 813
34e8a2da
GM
814---
815*** New options `sql-port', `sql-connection-alist', `sql-send-terminator',
816and `sql-oracle-scan-on'.
041d709f 817
34e8a2da
GM
818---
819*** New custom variables control prompting for login parameters.
820Each supported product has a custom variable `sql-*-login-params',
821which is a list of the parameters to be prompted for before a
822connection is established.
041d709f 823
34e8a2da 824---
041d709f 825*** The command `sql-product-interactive' now takes a prefix argument,
34e8a2da 826which causes it to prompt for an SQL product.
041d709f 827
34e8a2da
GM
828---
829*** Product-specific SQL interactive commands now take prefix arguments.
041d709f
CY
830These commands (`sql-sqlite', `sql-postgres', `sql-mysql', etc.),
831given a prefix argument, prompt for a name for the SQL interactive
832buffer. This reduces the need for calling `sql-rename-buffer'.
833
34e8a2da 834---
041d709f
CY
835*** SQL interactive modes suppress command continuation prompts, and
836replace tabs with spaces. The first change impacts multiple line SQL
837statements entered with C-j between each line, statements yanked into
838the buffer and statements sent with `sql-send-*' functions. The
34e8a2da
GM
839second prevents the MySQL and Postgres interpreters from listing
840object name completions when sent text via `sql-send-*' functions.
041d709f 841
34e8a2da 842---
041d709f
CY
843*** New command `sql-connect' starts a predefined SQLi session,
844using the login parameters from `sql-connection-alist'.
845
34e8a2da 846---
041d709f
CY
847*** New "Save Connection" menu item in SQLi buffers.
848This gathers the login params specified for the SQLi session, if it
849was not started by a connection, and saves them as a new connection.
850
34e8a2da
GM
851---
852*** New commands for listing database objects and details:
853sql-list-all and sql-list-table.
041d709f 854
34e8a2da 855---
041d709f
CY
856*** An API for manipulating SQL product definitions has been added.
857
858** TeX modes
859
e74e58c9 860+++
041d709f 861*** latex-electric-env-pair-mode keeps \begin..\end matched on the fly.
412b9ee5 862
459bba37 863** Tramp
bfd779dd 864---
7d301ae6 865*** New inline access method "ksu" (kerberized su).
bfd779dd 866---
459bba37 867*** The following access methods are discontinued: "ssh1_old",
ea843702 868"ssh2_old", "scp1_old", "scp2_old", "imap", "imaps" and "fish".
b011fbfe
GM
869+++
870*** The user option `remote-file-name-inhibit-cache' controls whether
871remote file attributes are cached for better performance.
bfd779dd 872---
58f74fe4
MA
873*** The option `ange-ftp-binary-file-name-regexp' has changed its
874default value to "".
b011fbfe 875---
7d301ae6
CY
876*** Handlers for `file-selinux-context' and `set-file-selinux-context'
877for remote machines which support SELinux.
58f74fe4 878
b74c9672 879+++
a48ec60c
GM
880** New function, `url-queue-retrieve', which behaves like url-retrieve,
881but with limits (`url-queue-parallel-processes', `url-queue-timeout') on
882the degree of parallelism.
177549d0 883
0c32ce32
CY
884** VC and related modes
885
2edef1a0 886+++
0c32ce32 887*** Support for pulling on distributed version control systems.
7d301ae6
CY
888The command C-x v + (`vc-pull') runs a "pull" operation, if it is
889supported (currently with Bzr, Git, and Mercurial), to update the
890current branch and working tree. A prefix argument means to prompt
891the user for specifics, e.g. a pull location.
0c32ce32 892
dab3703d
GM
893---
894*** `vc-update' is now an alias for `vc-pull'.
0c32ce32 895
2edef1a0 896+++
0c32ce32 897*** Support for merging on distributed version control systems.
7d301ae6
CY
898The command C-x v m (`vc-merge') now runs a "merge" operation, if it
899is supported (currently with Bzr, Git, and Mercurial), to merge
900changes from another branch into the current one. It prompts for
901specifics, e.g. a merge source.
0c32ce32 902
bc859d5f 903+++
2afef60a 904*** New option `vc-revert-show-diff' controls whether `vc-revert'
bbe43420 905shows a diff while querying the user. It defaults to t.
2afef60a 906
9cff91f8 907+++
d4eb88c7
CY
908*** Log entries in some Log View buffers can be toggled to display a
909longer description by typing RET (log-view-toggle-entry-display).
dab3703d
GM
910This is currently supported for Bzr, Git, and Mercurial (to support
911another backend, define a `log-view-expanded-log-entry-function').
7d301ae6 912In the Log View buffers made by C-x v L (`vc-print-root-log'), you can
d4eb88c7
CY
913use this to display the full log entry for the revision at point.
914
9cff91f8 915+++
1c6c854e
CS
916*** New command `vc-ediff' allows visual comparison of two revisions
917of a file similar to `vc-diff', but using ediff backend.
918
80c6d77f 919+++
86c60681
CY
920*** The option `vc-initial-comment' was removed in Emacs 23.2, but
921this was not advertised at the time.
922
923+++
924*** `vc-toggle-read-only' is an obsolete alias for `toggle-read-only'.
925Since Emacs 23, it has done the same thing as `toggle-read-only', but
80c6d77f
GM
926this was not advertised at the time.
927
041d709f
CY
928** Obsolete modes
929
23d70505
GM
930---
931*** abbrevlist.el
932
f8ca9162
GM
933---
934*** erc-hecomplete.el (use erc-pcomplete.el instead)
23d70505
GM
935
936*** partial-completion-mode (complete.el) is obsolete.
041d709f
CY
937You can get a comparable behavior with:
938(setq completion-styles '(partial-completion initials))
939(setq completion-pcm-complete-word-inserts-delimiters t)
940
23d70505
GM
941---
942*** pc-mode.el is obsolete (CUA mode is much more comprehensive).
943
3d439cd1 944+++
23d70505 945*** pgg is obsolete (use EasyPG instead)
041d709f 946
23d70505 947---
041d709f
CY
948*** sregex.el is obsolete, since rx.el is a strict superset.
949
23d70505
GM
950---
951*** s-region.el and pc-select.el are obsolete.
952They are superseded by shift-select-mode, enabled by default since 23.1.
953
954+++
955*** vc-mcvs.el is obsolete (for lack of a maintainer)
ca5eed61 956
0fe719e6
GM
957** Miscellaneous
958
05f77e38
GM
959+++
960*** The Landmark game is now invoked with `landmark', not `lm'.
c6ad2a4e 961Its functions and variables have been similarly renamed.
05f77e38
GM
962
963---
964*** In `ido-file-completion-map', C-v is no longer bound to ido-toggle-vc.
965(This interfered with cua-mode.)
966
9f678528
GM
967+++
968*** f90.el has some support for Fortran 2008 syntax.
969
0fe719e6
GM
970---
971*** `copyright-fix-years' can optionally convert consecutive years to ranges.
972
88c5c7c8 973+++
5b3e6db8
GM
974*** New command `nato-region' converts text to NATO phonetic alphabet.
975
eb199145
GM
976\f
977* New Modes and Packages in Emacs 24.1
d445b3f8 978
5abc31ef 979+++
60e56523 980** Occur Edit mode applies edits made in *Occur* buffers to the
8c0f49f0 981original buffers. It is bound to "e" in Occur mode.
60e56523 982
0bd1e074
JL
983** When `occur' is called with the prefix argument `C-u'
984the matching strings are collected into the `*Occur*' buffer
985without line numbers. If there are parenthesized subexpressions
986in the specified regexp, `occur' reads replacement text that
987may contain \\& and \\N whose convention follows `replace-match'.
988
cd3308f3 989+++
a075a2c5
GM
990** New global minor mode electric-pair-mode.
991When enabled, typing an open parenthesis automatically inserts the
992matching closing one.
993
cd3308f3 994+++
a075a2c5
GM
995** New global minor mode electric-indent-mode.
996When enabled, typing certain characters triggers reindentation.
cd3308f3
GM
997Major modes wishing to use this can set electric-indent-chars or
998electric-indent-functions.
a075a2c5 999
cd3308f3 1000+++
a075a2c5
GM
1001** New global minor mode electric-layout-mode.
1002When enabled, typing certain characters automatically inserts newlines.
cd3308f3 1003Major modes wishing to use this can set electric-layout-rules.
3b843809 1004
72ca698c 1005+++
a83ec3c9
CY
1006** tabulated-list.el provides a generic major mode for tabulated data,
1007from which other modes can be derived.
1008
d02c9bcd
SM
1009** pcase.el provides the ML-style pattern matching macro `pcase'.
1010
df5817ee 1011+++
7725ebb7
MA
1012** secrets.el is an implementation of the Secret Service API, an
1013interface to password managers like GNOME Keyring or KDE Wallet. The
065f2743
MA
1014Secret Service API requires D-Bus for communication. The command
1015`secrets-show-secrets' offers a buffer with a visualization of the
1016secrets.
7725ebb7 1017
8ce1aea8 1018+++
f9e78150
MA
1019** notifications.el provides an implementation of the Desktop
1020Notifications API. It requires D-Bus for communication.
1021
8ce1aea8 1022---
12fe5bcc
MA
1023** soap-client.el supports access to SOAP web services from Emacs.
1024soap-inspect.el is an interactive inspector for SOAP WSDL structures.
1025
ff1796f3
GM
1026---
1027** New generic mode, xmodmap-generic-mode, for xmodmap files.
ad7d6ecb 1028
cefee440 1029---
53bbe3ad 1030** New emacs-lock.el package.
7d301ae6
CY
1031The previous version has been moved to obsolete/old-emacs-lock.el.
1032Now, there is a proper minor mode `emacs-lock-mode'. Protection
1033against exiting Emacs and killing the buffer can be set separately.
1034The mechanism for automatically turning off protection for buffers
1035with dead inferior processes has been generalized.
53bbe3ad 1036
eb199145
GM
1037\f
1038* Incompatible Lisp Changes in Emacs 24.1
6dfcbe31 1039
7d301ae6
CY
1040+++
1041** Passing a nil argument to a minor mode function call now ENABLES
1042the minor mode unconditionally. This is so that you can write e.g.
1043
1044 (add-hook 'text-mode-hook 'foo-minor-mode)
1045
1046to enable foo-minor-mode in Text mode buffers, removing the need for
1047`turn-on-foo-minor-mode' style functions. This affects all mode
1048commands defined by `define-minor-mode'. If called interactively, the
1049mode command still toggles the minor mode.
1050
d268b4fe
CY
1051+++
1052** The return value of `backup-buffer' has changed.
1053It is now a list of three elements, where the second element is a list
1054describing the original file's SELinux context. If Emacs or the
f003f294 1055system lacks SELinux support, the context list is (nil nil nil nil).
7d301ae6 1056See "Basic SELinux support" above, under "Changes in Emacs 24.1".
d268b4fe 1057
fa6996bc
EZ
1058---
1059** `char-direction-table' and the associated function `char-direction'
1060were deleted. They were buggy and inferior to the new support of
1061bidirectional editing introduced in Emacs 24. If you need the
1062bidirectional properties of a character, use `get-char-code-property'
1063with the last argument `bidi-class'.
1064
a6326082 1065+++
470d996d
TV
1066** `copy-directory' now copies the source directory as a subdirectory
1067of the target directory, if the latter is an existing directory. The
1068new optional arg COPY-CONTENTS, if non-nil, makes the function copy
1069the contents directly into a pre-existing target directory.
1070
3b90aec0 1071+++
9173a8fb
CY
1072** For mouse click input events in the text area, the Y pixel
1073coordinate in the POSITION list now counts from the top of the text
1074area, excluding any header line. Previously, it counted from the top
1075of the header line.
1076
2b18055e 1077---
7d301ae6
CY
1078** Support for "old-style" backquotes, obsolete for 10+ years, has
1079been further reduced. Now a backquote not followed by a space is
1080always treated as a "new-style" backquote. Please remove all
1081"old-style" backquotes from your code. If your code uses backquotes
1082as documented in the Elisp manual, and compiles without warning, then
1083you have nothing to do in this regard. Code not following the
1084appropriate conventions may fail to compile.
50ab02c5
CY
1085
1086The most common cause of trouble seems to be an old-style backquote
1087followed by a newline. Another cause of trouble is vector notation
1088for key sequence notation: instead of [(control ,)] and [(control ')],
1089you should write [(control ?,)] and [(control ?')], which will work in
7d301ae6 1090older Emacsen too.
288cf4e9 1091
520f2425
GM
1092+++
1093** The macro `eval-at-startup' was removed in Emacs 23.2, but this
1094was not advertised at the time. The function `custom-initialize-delay'
1095replaced all known uses.
1096
c31b4ce3 1097---
7d301ae6
CY
1098** `view-buffer' now treats special mode-class in the same way that
1099`view-file' has since Emacs 22 (i.e. it won't enable View mode if the
1100major mode is special).
fd5c9dfa 1101
7d301ae6 1102** Menu and tool bar changes
6431f2e6 1103
ddb54206 1104+++
7d301ae6 1105*** During startup, Emacs no longer adds entries for `menu-bar-lines'
0a19a6f8
JB
1106and `tool-bar-lines' to `default-frame-alist' and `initial-frame-alist'.
1107With these alist entries omitted, `make-frame' checks the value of the
1108variable `menu-bar-mode'/`tool-bar-mode' to determine whether to create
1109a menu-bar or tool-bar, respectively. If the alist entries are added,
1110they override the value of `menu-bar-mode'/`tool-bar-mode'.
6431f2e6 1111
7d301ae6
CY
1112+++
1113*** The menu bar bindings's caches are not used any more.
1114Use (where-is-internal <def> nil t) instead.
1115
50b063c3 1116+++
fe0aa820 1117** Regions created by mouse dragging are now normal active regions,
7d301ae6
CY
1118similar to the ones created by shift-selection (see Selection changes
1119above). In previous Emacs versions, these regions were delineated by
1120`mouse-drag-overlay'; that variable has been removed.
d6d8ee7a 1121
34c99998 1122+++
7d301ae6
CY
1123** The fourth argument of `filter-buffer-substring' has been removed.
1124If you want to remove text properties from the final result, simply
1125pass the result through substring-no-properties.
34c99998 1126
334023be 1127---
4583e796
GM
1128** cl.el no longer provides `cl-19'.
1129
0b19b281 1130+++
7d301ae6
CY
1131** The following obsolete functions and aliases have been removed
1132(the appropriate new function is given in parentheses; "not needed"
1133means you can just remove all calls to the function in question):
1134
1135*** `comint-kill-output' (`comint-delete-output')
1136*** `decompose-composite-char' (`char-to-string')
1137*** `outline-visible' (`outline-invisible-p')
1138*** `internal-find-face' (`facep')
1139*** `internal-get-face' (`facep and check-face')
1140*** `frame-update-faces' (not needed)
1141*** `frame-update-face-colors' (`frame-set-background-mode')
1142*** `x-frob-font-weight' and `x-frob-font-slant' (`make-face-*' functions)
1143*** `x-make-font-bold and x-make-font-demibold (make-face-bold)
1144*** `x-make-font-italic' and `x-make-font-oblique' (`make-face-italic')
1145*** `x-make-font-bold-italic' (`make-face-bold-italic')
1146*** `x-make-font-unbold' (`make-face-unbold')
1147*** `x-make-font-unitalic' (`make-face-unitalic')
1148*** `mldrag-drag-mode-line' (`mouse-drag-mode-line')
1149*** `mldrag-drag-vertical-line' (`mouse-drag-vertical-line')
1150*** `iswitchb-default-keybindings' (`iswitchb-mode')
1151*** `char-bytes' (== 1)
1152*** `isearch-return-char' (`isearch-printing-char')
1153*** `make-local-hook' (not needed)
1154*** `set-screen-height' (`set-frame-height')
1155*** `set-screen-width' (`set-frame-width')
1156
1157+++
1158** The following obsolete variables and varaliases have been removed
1159(the appropriate new variable is given in parentheses):
1160
1161*** `checkdoc-minor-keymap' (`checkdoc-minor-mode-map')
1162*** `vc-header-alist' (`vc-BACKEND-header')
1163*** `directory-sep-char' (== ?/)
1164*** `font-lock-defaults-alist' (`font-lock-defaults')
1165*** `e' (`float-e').
3226d6ca 1166
334023be 1167---
041d709f 1168** The following obsolete files were removed:
7b0e3048
GM
1169sc.el, x-menu.el, rnews.el, rnewspost.el
1170
43b5d83e 1171---
7d301ae6
CY
1172** The format of the finder-inf.el file has changed, since the Finder
1173mechanism is now based on the package system. The variable
1174`finder-package-info' is replaced by `package--builtins' and
1175`finder-keywords-hash'.
33658d4e 1176
c2c79260
DE
1177---
1178** When generating autoloads, `update-directory-autoloads' no longer
1179assumes every inspected file is in your `load-path'. It instead
1180generates relative names according to the current `load-path'.
1181
eb199145
GM
1182\f
1183* Lisp changes in Emacs 24.1
9097e8af 1184
735cc5ca 1185+++
041d709f
CY
1186** Code can now use lexical scoping by default instead of dynamic scoping.
1187The `lexical-binding' variable lets code use lexical scoping for local
48da7392
GM
1188variables. It is typically set via a file-local variable in the first
1189line of the file, in which case it applies to all the code in that file.
735cc5ca 1190+++
041d709f
CY
1191*** `eval' takes a new optional argument `lexical' to choose the new lexical
1192binding instead of the old dynamic binding mode.
735cc5ca 1193+++
041d709f
CY
1194*** Lexically scoped interpreted functions are represented with a new form
1195of function value which looks like (closure ENV ARGS &rest BODY).
1196
1197*** New macro `letrec' to define recursive local functions.
735cc5ca 1198+++
041d709f
CY
1199*** New function `special-variable-p' to check whether a variable is
1200declared as dynamically bound.
1201
d273439c 1202+++
041d709f
CY
1203** An Emacs Lisp testing tool is now included.
1204Emacs Lisp developers can use this tool to write automated tests for
1205their code. See the ERT info manual for details.
1206
1207** Changes for bidirectional display and editing
f1816485 1208
041d709f
CY
1209+++
1210*** New function `current-bidi-paragraph-direction'.
7d301ae6 1211This returns the base direction of the paragraph at point.
041d709f
CY
1212
1213+++
1214*** New function `bidi-string-mark-left-to-right'.
f1816485
EZ
1215Given a string containing characters from right-to-left (RTL) scripts,
1216this function returns another string which can be safely inserted into
1217a buffer, such that any following text will be always displayed to the
7d301ae6
CY
1218right of that string. (This works by appending an invisible Unicode
1219"LEFT-TO-RIGHT MARK" character if the argument string might need it.)
041d709f 1220
7d301ae6
CY
1221This is useful when the buffer has overall left-to-right paragraph
1222direction and you need to insert a string whose contents and
f1816485
EZ
1223directionality are not known in advance, without disrupting the layout
1224of the line.
041d709f 1225
bee0fcef 1226** Window changes
c4682d18
MR
1227+++
1228*** Window tree functions are accessible in Elisp.
1229Functions are provided to return the parent, siblings or child windows
1230of any window including internal windows (windows not associated with a
1231buffer) in the window tree.
291d142b 1232+++
24300f5f
CY
1233**** New function `window-valid-p' gives non-nil for live and internal
1234windows.
c4682d18 1235+++
24300f5f 1236**** Window manipulation can deal with internal windows.
c4682d18
MR
1237Many window handling functions like `split-window', `delete-window', or
1238`delete-other-windows' as well as the window resizing functions can now
1239act on any window including internal ones.
c4682d18
MR
1240+++
1241*** window-total-height/-width vs window-body-height/-width.
1242The function `window-height' has been renamed to `window-total-height'
1243and `window-width' has been renamed to `window-body-width'. The old
1244names are provided as aliases. Two new functions `window-total-width'
1245and `window-body-height' are provided.
c4682d18
MR
1246+++
1247*** Window parameters specific to window handling functions.
1248For each window you can specify a parameter to override the default
1249behavior of a number of functions like `split-window', `delete-window'
ed6235ea
MR
1250and `delete-other-windows'. The variable `ignore-window-parameters'
1251allows to ignore processing such parameters.
c4682d18
MR
1252+++
1253*** New semantics of third argument of `split-window'.
c4682d18
MR
1254The third argument of `split-window' has been renamed to SIDE and can be
1255set to any of the values 'below, 'right, 'above, or 'left to make the
1256new window appear on the corresponding side of the window that shall be
1257split. Any other value of SIDE will cause `split-window' to split the
1258window into two side-by-side windows as before.
c4682d18
MR
1259+++
1260*** Window resizing functions.
487ffd7a 1261A new standard function for resizing windows called `window-resize' has
c4682d18
MR
1262been introduced. This and all other functions for resizing windows no
1263longer delete any windows when they become too small.
b3c0dbfd
MR
1264+++
1265*** Deleting the selected window now selects the most recently selected
1266live window on that frame instead.
c4682d18
MR
1267+++
1268*** `adjust-window-trailing-edge' adjustments.
1269`adjust-window-trailing-edge' can now deal with fixed-size windows and
1270is able to resize other windows if a window adjacent to the trailing
1271edge cannot be shrunk any more. This makes its behavior more similar to
1272that of Emacs 21 without compromising, however, its inability to delete
1273windows which was introduced in Emacs 22.
c4682d18
MR
1274+++
1275*** Window-local buffer lists.
1276Windows now have local buffer lists. This means that removing a buffer
1277from display in a window will preferably show the buffer previously
1278shown in that window with its previous window-start and window-point
1279positions. This also means that the same buffer may be automatically
1280shown twice even if it already appears in another window.
0e406a72 1281+++
bee0fcef
CY
1282*** `switch-to-buffer' has a new optional argument FORCE-SAME-WINDOW,
1283which if non-nil requires the buffer to be displayed in the currently
1284selected window, signaling an error otherwise. If nil, another window
1285can be used, e.g. if the selected one is strongly dedicated.
24300f5f 1286+++
0a2132ba 1287*** `split-window-vertically' and `split-window-horizontally' renamed
2d197ffb
CY
1288to `split-window-below' and `split-window-right' respectively.
1289The old names are kept as aliases.
24300f5f 1290+++
0a2132ba
CY
1291*** Display actions
1292
1293**** The second arg to `display-buffer' and `pop-to-buffer' is now
1294named ACTION, and takes a display action of the same form as
1295`display-buffer-base-action' (see Changes, above). A non-nil,
1296non-list value is treated specially, as the old meaning.
1297
1298**** New variable `display-buffer-overriding-action'.
1299
1300**** The procedure of `display-buffer' etc. to choose a window is
1301determined by combining `display-buffer-overriding-action',
1302`display-buffer-alist', the ACTION arg, `display-buffer-base-action',
1303and `display-buffer-fallback-action'. The second and fourth of these
1304are user-customizable variables.
1305
1306See the docstring of `display-buffer' for details.
bee0fcef 1307
ed6235ea
MR
1308+++
1309*** New behavior of `quit-window'.
1310The behavior of `quit-window' has been changed in order to restore the
1311state before the last buffer display operation in that window.
1312
d83dc65b
MR
1313+++
1314*** The new option `frame-auto-hide-function' lets you choose between
53964682 1315iconifying or deleting a frame when burying a buffer shown in a dedicated
d83dc65b
MR
1316frame or quitting a window showing a buffer in a frame of its own.
1317
20d2304d
CY
1318+++
1319*** New functions `window-state-get' and `window-state-put'.
1320These functions allow to save and restore the state of an arbitrary
1321frame or window as an Elisp object.
1322
a2a25d24 1323** Completion
041d709f 1324
7d301ae6
CY
1325*** New variable `completion-extra-properties' used to specify extra
1326properties of the current completion:
a2a25d24
SM
1327- :annotate-function, same as the old completion-annotate-function.
1328- :exit-function, function to call after completion took place.
1329
7d301ae6
CY
1330*** Functions on `completion-at-point-functions' can return any of the
1331properties valid for `completion-extra-properties'.
a2a25d24 1332
321cc491 1333+++
7d301ae6 1334*** `completion-annotate-function' is obsolete.
a2a25d24 1335
620c53a6
SM
1336*** New `metadata' method for completion tables. The metadata thus returned
1337can specify various details of the data returned by `all-completions':
1338- `category' is the kind of objects returned (e.g., `buffer', `file', ...),
1339 used to select a style in completion-category-overrides.
1340- `annotation-function' to add annotations in *Completions*.
1341- `display-sort-function' to specify how to sort entries in *Completions*.
1342- `cycle-sort-function' to specify how to sort entries when cycling.
1343
7d301ae6
CY
1344*** `minibuffer-local-filename-must-match-map' is not used any more.
1345Instead, the bindings in `minibuffer-local-filename-completion-map'
1346are combined with `minibuffer-local-must-match-map'.
de09aa52
CY
1347
1348*** New variable `completing-read-function' allows overriding the
1349behavior of `completing-read'.
1350
d366bd53 1351+++
f042970d 1352** `glyphless-char-display' can now distinguish between graphical and
16a43933
CY
1353text terminal display, via a char-table entry that is a cons cell.
1354
d7dbb11a 1355+++
7d301ae6 1356** `pre-command-hook'/`post-command-hook' are not reset to nil on error.
f6d62986
SM
1357Instead, the offending function is removed.
1358
b1f6fa26
CY
1359** New hook types
1360
e7bc51d0 1361+++
b1f6fa26
CY
1362*** New function `run-hook-wrapped' for running an abnormal hook by
1363passing the hook functions as arguments to a "wrapping" function.
e7bc51d0 1364Like `run-hook-with-args-until-success', it stops at the first
5385447f 1365non-nil return value.
e7bc51d0 1366
b1f6fa26
CY
1367+++
1368*** New macro `with-wrapper-hook' for running an abnormal hook as a
1369set of "wrapping" filters, similar to around advice.
54521c99
GM
1370(A version of this macro was actually added in Emacs 23.2 but was not
1371advertised at the time.)
f6d62986 1372
0b19b281 1373** Debugger changes
866c1d22 1374+++
0b19b281 1375*** New macro `condition-case-unless-debug' (this was actually added in
1be3ca5a 1376Emacs 23.1 as condition-case-no-debug, but not advertised)
578ad769 1377+++
0b19b281
CY
1378*** The macro `with-demoted-errors' was added in Emacs 23.1, but not advertised.
1379---
1380*** Variable `stack-trace-on-error' removed.
1381+++
1382*** The debugger can now "continue" from an error, which means it will
1383jump to the error handler as if the debugger had not been invoked
1384instead of jumping all the way to the top-level.
1385+++
1386*** Set `debug-on-event' to enter the debugger on events like SIGUSR1.
1387This can be useful when `inhibit-quit' is set.
d6b1d521 1388
953cebf5
GM
1389+++
1390** The new function `server-eval-at' allows evaluation of Lisp forms on
37576acd 1391named Emacs server instances.
7deebf1b 1392
1b9f60cc
GM
1393+++
1394** `call-process' and `call-process-region' allow a `(:file "file")' spec
1395to redirect STDOUT to a file.
7deebf1b 1396
da97a9e6 1397+++
7d301ae6
CY
1398** The function `format-time-string' now supports the %N directive,
1399for higher-resolution time stamps.
da97a9e6 1400
0b19b281
CY
1401** New input reading functions
1402+++
1403*** New function `read-char-choice' reads a restricted set of
1404characters, discarding any inputs not inside the set.
7e2734bc 1405+++
0b19b281
CY
1406*** The command `read-color' now requires a match for a color name
1407or RGB triplet, instead of signaling an error if the user provides
1408invalid input.
1409---
1410**** `facemenu-read-color' is now an alias for `read-color'.
3ef01959 1411
4dee2dea 1412+++
2e288d54
JB
1413** `image-library-alist' is renamed to `dynamic-library-alist'.
1414The variable is now used to load all kind of supported dynamic libraries,
1415not just image libraries. The previous name is still available as an
1416obsolete alias.
1417
0b19b281 1418** Syntax parsing changes
4230351b 1419+++
0b19b281 1420*** New variable `syntax-propertize-function'.
04e2ce72 1421This replaces `font-lock-syntactic-keywords' which is now obsolete.
cf38dd42
SM
1422This allows syntax-table properties to be set independently from font-lock:
1423just call syntax-propertize to make sure the text is propertized.
1424Together with this new variable come a new hook
1425syntax-propertize-extend-region-functions, as well as two helper functions:
1426syntax-propertize-via-font-lock to reuse old font-lock-syntactic-keywords
1427as-is; and syntax-propertize-rules which provides a new way to specify
1428syntactic rules.
f58b9822 1429+++
0b19b281 1430*** Syntax tables support a new "comment style c" additionally to style b.
a2e5caf7 1431
7cf78aac 1432+++
7d301ae6 1433** New hook `post-self-insert-hook', run after `self-insert-command'.
041d709f 1434
4dee2dea 1435---
4e2db1fe 1436** frame-local variables cannot be let-bound any more.
041d709f 1437
15de15c6 1438** Major and minor mode changes
3fd50d5c 1439+++
0b19b281
CY
1440*** `set-auto-mode' now respects mode: local variables at the end of files,
1441as well as those in the -*- line.
1442+++
15de15c6
CY
1443*** `prog-mode' is a new major mode from which programming modes
1444should be derived.
c2f03a4a 1445+++
15de15c6
CY
1446**** `prog-mode-hook' can be used to enable features for programming
1447modes, e.g. (add-hook 'prog-mode-hook 'flyspell-prog-mode) to enable
1448on-the-fly spell checking for comments and strings.
12f381b7 1449+++
15de15c6
CY
1450*** New hook `change-major-mode-after-body-hook', run by
1451`run-mode-hooks' just before any other mode hooks.
c7301fe4 1452+++
7a9a2fc6
GM
1453*** Enabled globalized minor modes can be disabled in specific major modes.
1454If the global mode is global-FOO-mode, then run (FOO-mode -1) in the
1455major mode's hook, where FOO-mode toggles the mode on a per-buffer basis.
56afad3a 1456+++
feb8a83a 1457*** `define-minor-mode' accepts new keywords :variable, :after-hook.
f44379e7 1458
7d301ae6
CY
1459** File-handling changes
1460
04e2ce72 1461+++
7d301ae6 1462*** `delete-file' and `delete-directory' now accept optional arg TRASH.
f1a5d776
CY
1463Trashing is performed if TRASH and `delete-by-moving-to-trash' are
1464both non-nil. Interactively, TRASH defaults to t, unless a prefix
1465argument is supplied (see Trash changes, above).
53967e09 1466
a34baa83 1467+++
7d301ae6 1468*** New file predicates: `file-equal-p', `file-in-directory-p'.
ec70a47d 1469
f7c9199f 1470+++
4039c786
CY
1471** Tool-bars can display separators.
1472Tool-bar separators are handled like menu separators in menu-bar maps,
94975270 1473i.e. via menu entries of the form `(menu-item "--")'.
9317e499 1474
00fe2df1
JL
1475** Image API
1476
eea14f31 1477+++
18af70d0
CY
1478*** Animated images support (currently animated gifs only).
1479
eea14f31 1480+++
18af70d0
CY
1481**** `image-animated-p' returns non-nil if an image can be animated.
1482
eea14f31 1483+++
18af70d0
CY
1484**** `image-animate' animates a supplied image spec.
1485
eea14f31 1486+++
18af70d0
CY
1487**** `image-animate-timer' returns the timer object for an image that
1488is being animated.
00fe2df1 1489
7cb76fe0
GM
1490---
1491*** `image-extension-data' has been renamed to `image-metadata'.
1492The old name is an obsolete alias to the new one.
1546c559 1493
bba26374 1494+++
b4ac6e8c
GM
1495*** Image mode can view any image type that ImageMagick supports.
1496This requires Emacs to be built with ImageMagick support.
7d301ae6
CY
1497
1498**** New function `imagemagick-types', defined if ImageMagick support
1499is enabled, returns a list of image file extensions that your
1500ImageMagick installation supports.
1501
1502**** New function `imagemagick-register-types' enables ImageMagick
1503image types in Image mode and in `create-image' and other helper
1504functions.
1505
1506**** New option `imagemagick-types-inhibit' excludes certain
1507ImageMagick image types from `imagemagick-register-types'.
1508
1509---
1510**** With ImageMagick support, there are extra Image mode commands to
1511resize and rotate images: `image-transform-fit-to-height',
1512`image-transform-fit-to-width', `image-transform-set-rotation', and
1513`image-transform-set-scale'.
041d709f 1514
b4ac6e8c 1515---
7d301ae6
CY
1516** `compose-mail' now accepts an optional 8th arg, RETURN-ACTION, and
1517passes it to the mail user agent function. This argument specifies an
1518action for returning to the caller after finishing with the mail. For
1519example, this is used by Rmail to optionally delete a mail window.
b4ac6e8c 1520
483ab230 1521+++
71c17aec 1522** XML and HTML parsing
483ab230
CY
1523If Emacs is compiled with libxml2 support, there are two new
1524functions: `libxml-parse-html-region' (which parses "real world" HTML)
1525and `libxml-parse-xml-region' (which parses XML). Both return an
1526Emacs Lisp parse tree.
4b9832a6 1527
7d301ae6 1528** Networking and encryption changes
e2574f2c 1529
7d301ae6
CY
1530+++
1531*** `open-network-stream' can now be used to open an encrypted stream.
1532It now accepts an optional `:type' parameter for initiating a TLS
1533connection, directly or via STARTTLS. To do STARTTLS, additional
1534parameters (`:end-of-command', `:success', `:capabilities-command')
1535must also be supplied.
1536
1537*** New library gnutls.el.
1538
1539If Emacs is built with GnuTLS support, the function
1540`gnutls-available-p' is defined and returns non-nil. The main entry
1541points are `open-gnutls-stream' and `gnutls-negotiate'. It's easiest
1542to use these functions through `open-network-stream', because that can
1543upgrade connections through STARTTLS opportunistically or use plain
1544SSL, depending on your needs. For debugging, set `gnutls-log-level'
1545greater than 0.
1546
1547+++
1548*** New primitive `secure-hash' that supports many secure hash algorithms:
1549md5, sha1, sha2, sha224, sha256, sha384, and sha512. The lisp library
1550sha1.el has been removed. The `sha1' feature is provided by default.
71c17aec 1551
a6020335
MH
1552** Isearch
1553
7cb76fe0 1554---
a6020335
MH
1555*** New hook `isearch-update-post-hook' that runs in `isearch-update'.
1556
ddb54206 1557+++
9326ba26
CY
1558** Progress reporters can now "spin".
1559The MIN-VALUE and MAX-VALUE arguments of `make-progress-reporter' can
1560now be nil, or omitted. This makes a "non-numeric" reporter. Each
1561time you call `progress-reporter-update' on that progress reporter,
1562with a nil or omitted VALUE argument, the reporter message is
1563displayed with a "spinning bar".
1564
8f05da42 1565+++
3e214b50
JB
1566** New variable `revert-buffer-in-progress-p' is true while a buffer is
1567being reverted, even if the buffer has a local `revert-buffer-function'.
1568
3d439cd1 1569+++
001bf877
GM
1570** New variables `delayed-warnings-list' and `delayed-warnings-hook'.
1571If delayed-warnings-list is non-nil, the command loop calls
7d301ae6
CY
1572`delayed-warnings-hook' after `post-command-hook'. At present, this
1573is only used by Emacs on some platforms to display warnings during
1574startup, which might otherwise not be noticed. This uses the
1575functions `display-delayed-warnings' and `collapse-delayed-warnings'.
001bf877 1576
6420d28b
CY
1577---
1578** rx.el has a new `group-n' construct for explicitly numbered groups.
1579
dac86404
GM
1580+++
1581** New function `make-composed-keymap' that constructs a new keymap
1582from multiple input maps. You can use this to make a keymap that
1583inherits from multiple maps, eg:
1584 (set-keymap-parent newmap (make-composed-keymap othermap parent))
43dc9f5b 1585
c8f6ec5c
GM
1586+++
1587** New function `string-prefix-p'.
1588(This was actually added in Emacs 23.2 but was not advertised at the time.)
1589
ddb54206 1590+++
27f7ef2f 1591** New reader macro ## that stands for the empty symbol.
43dc9f5b
AS
1592This means that the empty symbol can now be read back. Also, #: by itself
1593(when not immediately followed by a possible symbol character) stands for
1594an empty uninterned symbol.
041d709f 1595
fead402d
CY
1596+++
1597** New math functions `isnan', `copysign', `frexp', `ldexp'.
1598
7d301ae6 1599** The following functions and variables are obsolete:
041d709f 1600
05f77e38
GM
1601---
1602*** `tooltip-use-echo-area' is obsolete.
1603Rather than setting this to t, disable Tooltip mode instead.
1604
34c99998 1605+++
041d709f
CY
1606*** buffer-substring-filters is obsolete.
1607Use `filter-buffer-substring-functions' instead.
1608
7cb76fe0 1609---
041d709f
CY
1610*** `byte-compile-disable-print-circle' is obsolete.
1611
f160676e 1612---
041d709f 1613*** `deferred-action-list' and `deferred-action-function' are obsolete.
f160676e
GM
1614Use `post-command-hook' instead.
1615
d366bd53 1616+++
67e729a5
CY
1617*** `font-lock-maximum-size' is obsolete.
1618
eb199145
GM
1619\f
1620* Changes in Emacs 24.1 on non-free operating systems
d53a60a6 1621
a2f0118c 1622---
7a22e700 1623** On MS Windows, Emacs warns when using the obsolete init file _emacs,
a2f0118c
GM
1624and also when HOME is set to C:\ by default.
1625
7a22e700 1626** New configure.bat options
04779484 1627
a0d363f4 1628+++
7a22e700 1629*** --enable-checking builds Emacs with extra runtime checks.
e3aef5c6 1630
a0d363f4 1631+++
7a22e700 1632*** --distfiles specifies files to be included in binary distribution.
e2574f2c 1633
a0d363f4 1634+++
7a22e700
OK
1635*** --without-gnutls disables automatic GnuTLS detection.
1636
a0d363f4
GM
1637+++
1638*** --lib for general library linkage, works with the USER_LIBS build variable.
e2574f2c 1639
a0d363f4 1640+++
0a19a6f8 1641** New make target `dist' to create binary distribution for MS Windows.
e3aef5c6 1642
1f5e1a16
GM
1643---
1644** The Lisp function `w32-default-color-map' is now obsolete.
1645(It is only used internally in the Emacs C code.)
5430d399 1646
1f5e1a16
GM
1647+++
1648** Customize ns-auto-hide-menu-bar to have the menu-bar hidden, but
1649reappear on mouse-over. (Requires OS X 10.6 or later.)
04e2ce72 1650
ad7c802c
CY
1651+++
1652** On Mac OS X, dragging a file into Emacs visits the file, like on
1653other platforms, rather than inserting its contents into the buffer.
1654
05197f40 1655\f
a933dad1 1656----------------------------------------------------------------------
5b87ad55 1657This file is part of GNU Emacs.
a933dad1 1658
ab73e885 1659GNU Emacs is free software: you can redistribute it and/or modify
5b87ad55 1660it under the terms of the GNU General Public License as published by
ab73e885
GM
1661the Free Software Foundation, either version 3 of the License, or
1662(at your option) any later version.
5b87ad55
GM
1663
1664GNU Emacs is distributed in the hope that it will be useful,
1665but WITHOUT ANY WARRANTY; without even the implied warranty of
1666MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1667GNU General Public License for more details.
a933dad1 1668
5b87ad55 1669You should have received a copy of the GNU General Public License
ab73e885 1670along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
a933dad1 1671
05197f40 1672\f
a933dad1
DL
1673Local variables:
1674mode: outline
1675paragraph-separate: "[ \f]*$"
1676end: