]> code.delx.au - gnu-emacs/blob - etc/NEWS
bfcce3692d0b943bfa95efacd90f9a778a76ee1f
[gnu-emacs] / etc / NEWS
1 GNU Emacs NEWS -- history of user-visible changes.
2
3 Copyright (C) 2014-2015 Free Software Foundation, Inc.
4 See the end of the file for license conditions.
5
6 Please send Emacs bug reports to bug-gnu-emacs@gnu.org.
7 If possible, use M-x report-emacs-bug.
8
9 This file is about changes in Emacs version 25.
10
11 See files NEWS.24, NEWS.23, NEWS.22, NEWS.21, NEWS.20, NEWS.19, NEWS.18,
12 and NEWS.1-17 for changes in older Emacs versions.
13
14 You can narrow news to a specific version by calling `view-emacs-news'
15 with a prefix argument or by typing C-u C-h C-n.
16
17 Temporary note:
18 +++ indicates that all necessary documentation updates are complete.
19 (This means all relevant manuals in doc/ AND lisp doc-strings.)
20 --- means no change in the manuals is needed.
21 When you add a new item, use the appropriate mark if you are sure it applies,
22 otherwise leave it unmarked.
23
24 \f
25 * Installation Changes in Emacs 25.1
26
27 +++
28 ** Building Emacs now requires C99 or later.
29
30 ** Building Emacs now requires GNU make, version 3.81 or later.
31
32 ** New configure option --with-cairo.
33 Maybe add text based on http://lists.gnu.org/archive/html/emacs-devel/2015-05/msg00689.html
34
35 ** By default, Emacs no longer works on IRIX. We expect that Emacs
36 users are not affected by this, as SGI stopped supporting IRIX in
37 December 2013. If you are affected, please send a bug report. You
38 should be able to work around the problem either by porting the Emacs
39 undumping code to GCC under IRIX, or by configuring --with-wide-int,
40 or by sticking with Emacs 24.4.
41
42 ** 'configure' now prefers gnustep-config when configuring GNUstep.
43 If gnustep-config is not available, the old heuristics are used.
44
45 ---
46 ** 'configure' now prefers inotify to gfile for file notification,
47 unless gfile is explicitly requested via --with-file-notification='gfile'.
48
49 ---
50 ** The configure option '--with-pkg-config-prog' has been removed.
51 Use './configure PKG_CONFIG=/full/name/of/pkg-config' if you need to.
52
53 ---
54 ** The configure option '--with-mmdf' has been removed.
55 It was no longer useful, as it relied on libraries that are no longer
56 supported, and its presence led to confusion during configuration.
57 This affects only the 'movemail' utility; Emacs itself can still
58 process MMDF-format files as before.
59
60 ** The configure option '--enable-silent-rules' is now the default,
61 and silent rules are now quieter. To get the old behavior where
62 'make' chatters a lot, configure with '--disable-silent-rules' or
63 build with 'make V=1'.
64
65 ---
66 ** The configure option '--with-gameuser' now allows to specify a
67 group instead of a user if its argument is prefixed by ':' (a colon).
68 This will cause the game score files in ${localstatedir}/games/emacs
69 to be owned by that group, and the helper program for updating them to
70 be installed setgid. The option now defaults to the 'games' group.
71
72 ---
73 ** The `grep-changelog' script (and its manual page) are no longer included.
74 It has no particular connection to Emacs and has not changed in years,
75 so if you want to use it, you can always take a copy from an older Emacs.
76
77 \f
78 * Startup Changes in Emacs 25.1
79
80 +++
81 ** When Emacs is given a file as a command line argument and
82 `initial-buffer-choice' is non-nil, display both the file and
83 `initial-buffer-choice'. When Emacs is given more than one file and
84 `initial-buffer-choice' is non-nil, show `initial-buffer-choice'
85 and *Buffer List*. This makes Emacs convenient to use from the
86 command line when `initial-buffer-choice' is non-nil.
87
88 \f
89 * Changes in Emacs 25.1
90
91 ** `xref-find-definitions' and `describe-function' now display
92 information about mode local overrides (defined by
93 cedet/mode-local.el `define-overloadable-function' and
94 `define-mode-local-overrides').
95
96 ** New `display-buffer' action function `display-buffer-use-some-frame'
97 This displays the buffer in an existing frame other than the current
98 frame, and allows the caller to specify a frame predicate to exclude
99 frames.
100
101 ** New doc command `describe-symbol'. Works for functions, vars, faces, etc...
102
103 ** `isearch' and `query-replace' now perform character folding in matches.
104 This is analogous to case-folding, but applies between Unicode
105 characters and their ASCII counterparts. This means many characters
106 will match entire groups of characters.
107
108 For instance, the " will match all variants of unicode double quotes
109 (like “ and ”), and the letter a will match all of its accented
110 cousins, even those composed of multiple characters, as well as many
111 other symbols like ℀, ℁, ⒜, and ⓐ.
112
113 ** New function `character-folded-regexp' can be used
114 by searching commands to produce a a regexp matching anything that
115 character-folds into STRING.
116
117 ** New command `checkdoc-package-keywords' checks if the
118 current package keywords are recognized. Set the new option
119 `checkdoc-package-keywords-flag' to non-nil to make
120 `checkdoc-current-buffer' call this function automatically.
121
122 ** New function `checkdoc-file' checks for style errors.
123 It's meant for use together with `compile':
124 emacs -batch --eval "(checkdoc-file \"subr.el\")"
125
126 ** New command `comment-line' bound to `C-x C-;'.
127
128 ** New function `custom-prompt-customize-unsaved-options' checks for
129 unsaved customizations and prompts user to customize (if found).
130
131 +++
132 ** Network security (TLS/SSL certificate validity and the like) is
133 added via the new Network Security Manager (NSM) and controlled via
134 the `network-security-level' variable.
135
136 ** C-h l now also lists the commands that were run.
137
138 ---
139 ** The new M-s M-w key binding uses eww to search the web for the
140 text in the region.
141
142 ** M-x suggests shorthands and ignores obsolete commands for completion.
143 ** x-select-enable-clipboard is renamed select-enable-clipboard.
144 x-select-enable-primary and renamed select-enable-primary.
145 Additionally they both now apply to all systems (OSX, GNUstep, Windows, you
146 name it), with the proviso that on some systems (e.g. Windows)
147 select-enable-primary is ineffective since the system doesn't
148 have the equivalent of a primary selection.
149
150 +++
151 ** terpri gets an optional arg ENSURE to conditionally output a newline.
152
153 +++
154 ** New macro `define-advice'.
155
156 ** `insert-register' now leaves point after the inserted text
157 when called interactively. A prefix argument toggles this behavior.
158
159 ** New var `truncate-string-ellipsis' to choose how to indicate truncation.
160
161 +++
162 ** The new variable `term-file-aliases' replaces some files from lisp/term.
163 The function `tty-run-terminal-initialization' consults this variable
164 when deciding what terminal-specific initialization code to run.
165
166 ---
167 ** New variable `system-configuration-features', listing some of the
168 main features that Emacs was compiled with. This is mainly intended
169 for use in Emacs bug reports.
170
171 +++
172 ** A password is now hidden also when typed in batch mode. Another
173 hiding character but the default `.' can be used by let-binding the
174 variable `read-hide-char'.
175
176 ** The new functions `string-collate-lessp' and `string-collate-equalp'
177 preserve the collation order as defined by the system's locale(1)
178 environment. For the time being this is implemented for modern POSIX
179 systems and for MS-Windows, for other systems they fall back to their
180 counterparts `string-lessp' and `string-equal'.
181
182 *** The ls-lisp package uses `string-collate-lessp' to sort file names.
183 If you want the old, locale-independent sorting, customize the new
184 option `ls-lisp-use-string-collate' to a nil value.
185
186 *** The MS-Windows specific variable `w32-collate-ignore-punctuation',
187 if set to a non-nil value, causes the above 2 functions to ignore
188 symbol and punctuation characters when collating strings. This
189 emulates the behavior of modern Posix platforms when the locale's
190 codeset is "UTF-8" (as in "en_US.UTF-8"). This is needed because
191 MS-Windows doesn't support UTF-8 as codeset in its locales.
192
193 +++
194 ** The new function `bidi-find-overridden-directionality' allows to
195 find characters whose directionality was, perhaps maliciously,
196 overridden by directional override control characters. Lisp programs
197 can use this to detect potential phishing of URLs and other links that
198 exploits bidirectional display reordering.
199
200 +++
201 ** The new function `buffer-substring-with-bidi-context' allows to
202 copy a portion of a buffer into a different location while preserving
203 the visual appearance both of the copied text and the text at
204 destination, even when the copied text includes mixed bidirectional
205 text and directional control characters.
206
207 ** New variable `ns-use-fullscreen-animation' controls animation for
208 non-native NS fullscreen. The default is nil. Set to t to enable
209 animation when entering and leaving fullscreen. For native OSX fullscreen
210 this has no effect.
211
212 ** A new text property `inhibit-read-only' can be used in read-only
213 buffers to allow certain parts of the text to be writable.
214
215 ** A new function `directory-files-recursively' returns all matching
216 files (recursively) under a directory.
217
218 ** The new function `directory-name-p' can be used to check whether a file
219 name (as returned from, for instance, `file-name-all-completions' is
220 a directory file name. It returns non-nil if the last character in
221 the name is a forward slash.
222
223 +++
224 ** New variable `fast-but-imprecise-scrolling' inhibits
225 fontification during full screen scrolling operations, giving less
226 hesitant operation during auto-repeat of C-v, M-v at the cost of
227 possible inaccuracies in the end position.
228
229 ** The function `font-info' now returns more details about a font.
230 In particular, it now returns the average width of the font's
231 characters, which can be used for geometry-related calculations.
232
233 ** A new function `default-font-width' returns the average width of a
234 character in the current buffer's default font. If the default face
235 is remapped (see `face-remapping-alist'), the value for the remapped
236 face is returned. This function complements the existing function
237 `default-font-height'.
238
239 ** New functions `window-font-height' and `window-font-width' return
240 the height and average width of characters in a specified face and
241 window. If FACE is remapped (see `face-remapping-alist'), the
242 function returns the information for the remapped face.
243
244 ** A new function `window-max-chars-per-line' returns the maximal
245 number of characters that can be displayed on one line. If a face
246 and/or window are provided, these values are used for the
247 calculation. This function is different from `window-body-width' in
248 that it accounts for (i) continuation glyphs, (ii) the size of the
249 font, and (iii) the specified window.
250
251 ** New possible value for `system-type': nacl.
252
253 +++
254 ** New variable `inhibit-message', when bound to non-nil, inhibits
255 `message' and related functions from displaying messages the Echo
256 Area. The output is still logged to the *Messages* buffer.
257
258 +++
259 ** It is now safe for a mode that derives `tabulated-list-mode' to not
260 call `tabulated-list-init-header', in which case it will have no
261 header.
262
263 +++
264 ** `tabulated-list-print' takes a second optional argument, update,
265 which specifies an alternative printing method which is faster when
266 few or no entries have changed.
267
268 \f
269 * Editing Changes in Emacs 25.1
270
271 ** Successive single-char deletions are collapsed in the undo-log just like
272 successive char insertions.
273
274 ** Unicode names entered via C-x 8 RET now use substring completion by default.
275
276 ** C-x 8 now has shorthands for these chars: ‐ ‑ ‒ – — ― ‘ ’ “ ” † ‡ • ′ ″
277 € № ← → ↔ − ≈ ≠ ≤ ≥. As before, you can type C-x 8 C-h to list shorthands.
278
279 ** New minor mode electric-quote-mode for quoting ‘like this’ and “like this”
280 as you type. See also the new variable ‘text-quoting-style’.
281
282 ** New minor mode global-eldoc-mode is enabled by default.
283
284 ** Emacs now supports "bracketed paste mode" when running on a terminal
285 that supports it. This facility allows Emacs to understand pasted
286 chunks of text as strings to be inserted, instead of interpreting each
287 character in the pasted text as actual user input. This results in a
288 paste experience similar to that under a window system, and significant
289 performance improvements when pasting large amounts of text.
290
291 ** Emacs now supports the latest version of the UBA.
292 The Emacs implementation of the Unicode Bidirectional Algorithm (UBA)
293 was updated to support all the latest additions and changes introduced
294 in Unicode Standard versions 6.3, 7.0, and the latest Unicode 8.0.
295 This includes full support for directional isolates and the
296 Bidirectional Parentheses Algorithm (BPA) specified by these Unicode
297 standards.
298
299 ** You can access `mouse-buffer-menu' (C-down-mouse-1) using C-f10.
300
301 +++
302 ** New buffer-local `electric-pair-local-mode'.
303
304 \f
305 * Changes in Specialized Modes and Packages in Emacs 25.1
306
307 ** Prog mode has some support for multi-mode indentation.
308 See `prog-indentation-context' and `prog-widen'.
309
310 ** Prettify Symbols mode supports custom composition predicates. By
311 overriding the default `prettify-symbols-compose-predicate', modes can
312 specify in which contexts a symbol map be composed to some unicode
313 character. `prettify-symbols-default-compose-p' is the default which
314 is suitable for most programming languages such as C or Lisp (but not
315 (La)TeX).
316
317 ** New `xterm-screen-extra-capabilities' config.
318
319 ** The `save-place' variable is replaced by a `save-place-mode'.
320
321 ** ERC
322
323 *** Hide message types by network or channel. `erc-hide-list' will
324 hide all messages of the specified type, where `erc-network-hide-list'
325 and `erc-channel-hide-list' will only hide the specified message types
326 for the respective specified targets.
327
328 ** Midnight-mode
329 *** `midnight-mode' is a proper minor mode.
330 *** clean-buffer-*-regexps can now specify buffers via predicate functions.
331
332 ** In xterms, killing text now also sets the CLIPBOARD/PRIMARY selection
333 in the surrounding GUI (using the OSC-52 escape sequence). This only works
334 if your xterm supports it and enables the `allowWindowOps' options (disabled
335 by default at least in Debian, for security reasons).
336
337 Similarly, you can yank the CLIPBOARD/PRIMARY selection (using the OSC-52
338 escape sequence) if your xterm has the feature enabled but for that you
339 additionally need to add `getSelection' to `xterm-extra-capabilities'.
340
341 ** xterm-mouse-mode now supports mouse-tracking (if your xterm supports it).
342
343 ** package.el
344
345 *** New "external" package status.
346 An external package is any installed package that's not built-in and
347 not from `package-user-dir', which usually means it's from an entry in
348 `package-directory-list'. They are treated much like built-in
349 packages, in that they cannot be deleted through the package menu and
350 are not considered for upgrades.
351
352 The effect, is that a user can manually place a specific version of a
353 package inside `package-directory-list' and the package menu will
354 always respect that.
355
356 *** If a package is available on multiple archives and one has higher
357 priority (as per `package-archive-priorities') only that one is
358 listed. This can be configured with `package-menu-hide-low-priority'.
359
360 *** `package-menu-toggle-hiding' now toggles the hiding of packages.
361 This includes the above-mentioned low-priority packages, as well as
362 available packages whose version is lower than the currently installed
363 version (which were previously impossible to display).
364 This allows users to downgrade a package if a lower version is
365 available.
366
367 *** When filtering the package menu, keywords starting with "arc:" or
368 "status:" represent package archive or status, respectively, instead
369 of actual keywords.
370
371 *** Most functions which involve downloading information now take an
372 ASYNC argument. If it is non-nil, package.el performs the download(s)
373 asynchronously.
374
375 *** New variable `package-menu-async' controls whether the
376 package-menu uses asynchronous downloads.
377
378 *** `package-install-from-buffer' and `package-install-file' work on directories.
379 This follows the same rules as installing from a .tar file, except the
380 -pkg file is optional.
381
382 *** Packages which are dependencies of other packages cannot be deleted.
383 The FORCE argument to `package-delete' overrides this.
384
385 *** New custom variable `package-selected-packages' tracks packages
386 which were installed by the user (as opposed to installed as
387 dependencies). This variable can also be manually customized.
388
389 *** New command `package-install-user-selected-packages' installs all
390 packages from `package-selected-packages' which are currently missing.
391
392 *** New command `package-autoremove' removes all packages which were
393 installed strictly as dependencies but are no longer needed.
394
395 ** Shell
396
397 When you invoke `shell' interactively, the *shell* buffer will now
398 display in a new window. However, you can customize this behavior via
399 the `display-buffer-alist' variable. For example, to get
400 the old behavior -- *shell* buffer displays in current window -- use
401 (add-to-list 'display-buffer-alist
402 '("^\\*shell\\*$" . (display-buffer-same-window))).
403
404
405 ** EIEIO
406 +++
407 *** The `:protection' slot option is not obeyed any more.
408 +++
409 *** The `newname' argument to constructors is optional&deprecated.
410 If you need your objects to be named, do it by inheriting from `eieio-named'.
411 +++
412 *** The <class>-list-p and <class>-child-p functions are declared obsolete.
413 +++
414 *** The <class> variables are declared obsolete.
415 +++
416 *** The <initarg> variables are declared obsolete.
417 *** defgeneric and defmethod are declared obsolete.
418 +++
419 *** `constructor' is now an obsolete alias for `make-instance'.
420
421 ** ido
422 *** New command `ido-bury-buffer-at-head' bound to C-S-b
423 Bury the buffer at the head of `ido-matches', analogous to how C-k
424 kills the buffer at head.
425 *** A prefix argument to `ido-restrict-to-matches' will reverse its
426 meaning, and the list is restricted to those elements that do not
427 match the current input.
428
429 ** Minibuffer
430
431 *** You can use <up> and <down> keys to move point in the multi-line
432 minibuffer just as in an ordinary buffer. Only when point moves over
433 the bottom/top of the minibuffer it goes to the next/previous history
434 element. The new commands bound to <up> and <down> in the minibuffer:
435 `next-line-or-history-element' and `previous-line-or-history-element'.
436
437 ** Search and Replace
438
439 *** Query-replace history is enhanced.
440 When query-replace reads the FROM string from the minibuffer, typing
441 `M-p' will now show previous replacements as "FROM SEP TO", where FROM
442 and TO are the original text and its replacement, and SEP is an arrow
443 string defined by the new variable `query-replace-from-to-separator'.
444 To select a prior replacement, type `M-p' until the desired
445 replacement appears in the minibuffer, and then exit the minibuffer by
446 typing RET.
447
448 ** Calc
449 +++
450 *** If `quick-calc' is called with a prefix argument, insert the
451 result of the calculation into the current buffer.
452
453 ** ElDoc
454 *** New minor mode `global-eldoc-mode'
455 *** `eldoc-documentation-function' now defaults to `ignore'
456 *** `describe-char-eldoc' displays information about character at point,
457 and can be used as a default value of `eldoc-documentation-function'. It is
458 useful when, for example, one needs to distinguish various spaces (e.g. ] [,
459 ] [, ] [, etc.) while using mono-spaced font.
460
461 ** eww
462
463 ---
464 *** HTML can now be rendered using variable-width fonts.
465
466 +++
467 *** A new command `F' (`eww-toggle-fonts') can be used to toggle
468 whether to use variable-pitch fonts or not. The user can also
469 customize the `shr-use-fonts' variable.
470
471 +++
472 *** A new command `R' (`eww-readable') will try do identify the main
473 textual parts of a web page and display only that, leaving menus and
474 the like off the page.
475
476 ---
477 *** You can now use several eww buffers in parallel by renaming eww
478 buffers you want to keep separate.
479
480 +++
481 *** Partial state of the eww buffers (the URIs and the titles of the
482 pages visited) is now preserved in the desktop file.
483
484 +++
485 *** `eww-after-render-hook' is now called after eww has rendered
486 the data in the buffer.
487
488 ---
489 *** The `eww-reload' command now takes a prefix to not reload via
490 the net, but just use the local copy of the HTML.
491
492 +++
493 *** The DOM shr and eww uses has been changed to the general Emacs
494 xml.el/libxml2 DOM, and a new package dom.el has been added to
495 interact with this DOM. See the Emacs Lisp manual for interface
496 details.
497
498 +++
499 *** `mailcap-mime-data' is now consulted when displaying PDF files.
500
501 +++
502 *** The new `S' command will list all eww buffers, and allow managing
503 them.
504
505 ---
506 *** https pages with valid certificates have headers marked in green, while
507 invalid certificates are marked in red.
508
509 ** Message mode
510
511 *** text/html messages that contain inline image parts will be
512 transformed into multipart/related messages before sending.
513
514 ** pcase
515 *** New UPatterns `quote', `app', `cl-struct', and `eieio'.
516 *** New UPatterns can be defined with `pcase-defmacro'.
517 +++
518 *** New vector QPattern.
519
520 ** Lisp mode
521 *** Strings after `:documentation' are highlighted as docstrings.
522
523 ** Rectangle editing
524 *** Rectangle Mark mode can have corners past EOL or in the middle of a TAB.
525 *** C-x C-x in rectangle-mark-mode now cycles through the four corners.
526 *** `string-rectangle' provides on-the-fly preview of the result.
527
528 ** New font-lock functions font-lock-ensure and font-lock-flush, which
529 should be used instead of font-lock-fontify-buffer when called from Elisp.
530
531 ** Macro `minibuffer-with-setup-hook' takes (:append FUN) to mean
532 appending FUN to `minibuffer-setup-hook'.
533
534 ** cl-lib
535 *** New functions cl-fresh-line, cl-digit-char-p and cl-parse-integer.
536
537 ** seq
538 *** New seq library:
539 The seq library adds sequence manipulation functions and macros that
540 complement basic functions provided by subr.el. All functions are
541 prefixed with `seq-' and work on lists, strings and vectors.
542
543 ** map
544 *** New map library:
545 The map library provides map-manipulation functions that work on alists,
546 hash-table and arrays. All functions are prefixed with "map-".
547
548 ** Calendar and diary
549
550 +++
551 *** The default `diary-file' is now located in .emacs.d.
552
553 +++
554 *** New commands to insert diary entries with Chinese dates:
555 `diary-chinese-insert-anniversary-entry' `diary-chinese-insert-entry'
556 `diary-chinese-insert-monthly-entry', `diary-chinese-insert-yearly-entry'.
557
558 +++
559 *** The calendar can now list and mark diary entries with Chinese dates.
560 See `diary-chinese-list-entries' and `diary-chinese-mark-entries'.
561
562 ---
563 *** The option `calendar-mode-line-format' can now be nil,
564 which means to do nothing special with the mode line in calendars.
565
566 +++
567 *** New option `calendar-weekend-days'.
568 The option customizes which day headers receive the
569 `calendar-weekend-header' face.
570
571 ---
572 *** New optional args N and STRING for ‘holiday-greek-orthodox-easter’.
573
574 ---
575 *** Many items obsolete since at least version 23.1 have been removed.
576 The majority were function/variable/face aliases, too numerous to list here.
577 The remainder were:
578
579 **** Functions `calendar-one-frame-setup', `calendar-only-one-frame-setup',
580 `calendar-two-frame-setup', `european-calendar', `american-calendar'.
581
582 **** Hooks `cal-menu-load-hook', `cal-x-load-hook'.
583
584 **** Macro `calendar-for-loop'.
585
586 **** Variables `european-calendar-style', `diary-face', `hebrew-holidays-{1,4}'.
587
588 **** The nil and list forms of `diary-display-function'.
589
590 ** New ERT function `ert-summarize-tests-batch-and-exit'.
591
592 ** New js.el option `js-indent-first-init'.
593
594 ---
595 ** `Info-fontify-maximum-menu-size' can be t for no limit.
596
597 +++
598 ** `info-display-manual' can now be given a prefix argument which (any
599 non-nil value) directs the command to limit the completion
600 alternatives to currently visited manuals.
601
602 ---
603 ** ntlm.el has support for NTLM2.
604
605 ** Rmail
606
607 *** The Rmail commands d, C-d and u take optional repeat counts to delete or
608 undelete multiple messages.
609
610 *** Rmail can now render HTML mail messages if your Emacs was built with
611 libxml2 or if you have the Lynx browser installed. By default, Rmail
612 will display the HTML version of a mail message that has both HTML and
613 plain text parts, if display of HTML email is possible; customize the
614 `rmail-mime-prefer-html' option to `nil' if you don't want that.
615
616 +++
617 *** In the commands that make summaries by subject, recipients, or senders,
618 you can no longer use commas to separate regular expressions.
619
620 ** SES now supports local printer functions; see `ses-define-local-printer'.
621
622 ** In sh-mode, you can now use `sh-shell' as a file-local variable to
623 specify the type of shell in use (bash, csh, etc).
624
625 ** TLS
626 ---
627 *** Fatal TLS errors are now silent by default.
628
629 ** URL
630
631 *** The URL package accepts now the protocols "ssh", "scp" and "rsync".
632 When `url-handler-mode' is enabled, file operations for these
633 protocols as well as for "telnet" and "ftp" are passed to Tramp.
634
635 *** The URL package allows customizing the `url-user-agent' string.
636 The new `url-user-agent' variable can be customized to be a string or
637 a function.
638
639 *** The new interface variable `url-request-noninteractive' can be used
640 to specify that we're running in a noninteractive context, and that
641 we should not be queried about things like TLS certificate validity.
642
643 *** If URL is used with a https connection, the first callback argument
644 plist will contain a :peer element that has the output of
645 `gnutls-peer-status' (if Emacs is built with GnuTLS support).
646
647 ** Tramp
648
649 *** New connection method "nc", which allows to access dumb busyboxes.
650
651 *** Method-specific parameters can be overwritten now with variable
652 `tramp-connection-properties'.
653
654 ** SQL mode
655
656 *** New user variable `sql-default-directory' enables remote
657 connections using Tramp.
658
659 *** New command `sql-send-line-and-next' sends the current line to the
660 interactive buffer and advances to the next line, skipping whitespace
661 and comments.
662
663 *** Add support for Vertica SQL.
664
665 ** VC and related modes
666
667 *** Basic push support, via `vc-push', bound to `C-x v P'.
668 Implemented for Bzr, Git, Hg. As part of this change, the pre-existing
669 (undocumented) command vc-hg-push now behaves slightly differently.
670
671 *** The new command vc-region-history shows the log+diff of the active region.
672
673 *** New option `vc-annotate-background-mode' controls whether
674 the color range from `vc-annotate-color-map' is applied to the
675 background or to the foreground.
676
677 *** `compare-windows' now compares text with the most recently used window
678 instead of the next window. The new option `compare-windows-get-window-function'
679 allows to customize this.
680
681 *** Two new faces `compare-windows-removed' and `compare-windows-added'
682 replace the obsolete face `compare-windows'.
683
684 ---
685 *** `log-edit-insert-changelog' converts "(tiny change)" to
686 "Copyright-paperwork-exempt: yes". Set `log-edit-rewrite-tiny-change'
687 nil to disable this.
688
689 ** VHDL mode supports VHDL'08.
690
691 ** Calculator: decimal display mode uses "," groups, so it's more
692 fitting for use in money calculations; factorial works with
693 non-integer inputs.
694
695 ** HideIfDef mode now support full C/C++ expressions, argumented macro expansions,
696 interactive macro evaluation and automatic scanning of #defined symbols.
697
698 *** New custom variable `hide-ifdef-header-regexp' to define C/C++ header file
699 name patterns. Default case-insensitive .h, .hh, .hpp and .hxx.
700 *** New custom variable `hide-ifdef-expand-reinclusion-protection' to prevent
701 reinclusion protected header files from being fully hidden.
702 *** New custom variable `hide-ifdef-exclude-define-regexp' to define symbol
703 name patterns (e.x. all "FOR_DOXYGEN_ONLY_*") to be excluded.
704
705 ** TeX mode
706
707 *** New custom variable `tex-print-file-extension' to help users who
708 use PDF instead of DVI.
709
710 *** TeX mode now supports Prettify Symbols mode. When enabling
711 `prettify-symbols-mode' in a tex-mode buffer, \alpha ... \omega, and
712 many other math macros are displayed using unicode characters.
713
714 ** whitespace-mode: new 'big-indent style highlighting too much indentation.
715 By default, 32 spaces and four TABs are considered to be too much but
716 `whitespace-big-indent-regexp' can be configured to change that.
717
718 ** tildify: `tildify-space-string', `tildify-pattern', and
719 `tildify-foreach-region-function' variables added making
720 `tildify-string-alist', `tildify-pattern-alist', and
721 `tildify-ignored-environments-alist' variables (as well as a few
722 helper functions) obsolete.
723
724 ** xref
725 The new package provides generic framework and new commands to find
726 and move to definitions, as well as pop back to the original location.
727
728 *** New key bindings
729 `xref-find-definitions' replaces `find-tag' and provides an interface
730 to pick one destination among several. Hence, `tags-loop-continue' is
731 unbound. `xref-pop-marker-stack' replaces `pop-tag-mark', but uses an
732 easier binding, which is now unoccupied (`M-,').
733 `xref-find-definitions-other-window' replaces `find-tag-other-window'.
734 `xref-find-definitions-other-frame' replaces `find-tag-other-frame'.
735 `xref-find-apropos' replaces `find-tag-regexp'.
736
737 *** New variables
738 `find-tag-marker-ring-length' is now an obsolete alias for
739 `xref-marker-ring-length'. `find-tag-marker-ring' is now an obsolete
740 alias for a private variable. `xref-push-marker-stack' and
741 `xref-pop-marker-stack' should be used to mutate it instead.
742
743 ** etags
744 As a result of the above, these commands are now obsolete:
745 `find-tag-other-window', `find-tag-other-frame', `find-tag-regexp',
746 `tags-apropos' and `tags-loop-continue'.
747
748 ** EUDC
749 EUDC's LDAP backend has been improved.
750
751 *** EUDC supports LDAP-over-SSL URLs (ldaps://).
752
753 *** EUDC passes LDAP passwords through a pipe to the ldapsearch
754 subprocess instead of on the command line.
755
756 *** EUDC handles LDAP wildcards automatically so the user shouldn't
757 need to configure this manually anymore.
758
759 *** The LDAP configuration section of EUDC's manual has been
760 rewritten.
761
762 There have also been customization changes.
763
764 *** New custom variable `eudc-server-hotlist' to allow specifying
765 multiple EUDC servers in init file.
766
767 *** Custom variable `eudc-inline-query-format' defaults to completing
768 on email and firstname instead of surname.
769
770 *** Custom variable `eudc-expansion-overwrites-query' defaults to nil
771 to avoid interfering with the kill ring.
772
773 *** Custom variable `eudc-inline-expansion-format' defaults to
774 "Firstname Surname <mail-address>".
775
776 *** Custom variable `eudc-options-file' defaults to
777 "~/.emacs.d/eudc-options".
778
779 *** New custom variable `ldap-ldapsearch-password-prompt-regexp' to
780 allow overriding the regular expression that recognizes the ldapsearch
781 command line's password prompt.
782
783 ** Eshell
784
785 +++
786 *** The new built-in command `clear' can scroll window contents out of sight.
787 If provided with an optional non-nil argument, the scrollback contents will be cleared.
788
789 *** New buffer syntax '#<buffer-name>', which is equivalent to
790 '#<buffer buffer-name>'. This shorthand makes interacting with
791 buffers from eshell more convenient. Custom variable
792 `eshell-buffer-shorthand', which has been broken for a while, has been
793 removed.
794
795 *** By default, eshell "visual" program buffers (created by
796 `eshell-visual-commands' and similar custom vars) are no longer killed
797 when their processes die. This fixes issues with short-lived commands
798 and makes visual programs more useful in general. For example, if
799 "git log" is a visual command, it will always show the visual command
800 buffer, even if the "git log" process dies. For the old behavior,
801 make the new option `eshell-destroy-buffer-when-process-dies' non-nil.
802
803 ** Browse-url
804
805 *** Support for the Conkeror web browser.
806
807 ---
808 *** Support for several ancient browsers is now officially obsolete.
809
810 +++
811 ** tar-mode: new `tar-new-entry' command, allowing for new members to
812 be added to the archive.
813
814 ** Autorevert: dired buffers are also auto-reverted via file
815 notifications, if Emacs is compiled with file notification support.
816
817 ** Obsolete packages
818
819 ---
820 *** gulp.el
821
822 *** landmark.el (moved to elpa.gnu.org)
823
824 +++
825 ** The character classes [:graph:] and [:print:] in regular expressions
826 no longer match every multibyte character. Instead, Emacs now
827 consults the Unicode character properties to determine which
828 characters are graphic or printable. In particular, surrogates and
829 unassigned codepoints are now rejected. If you want the old behavior,
830 use [:multibyte:] instead.
831
832 \f
833 * New Modes and Packages in Emacs 25.1
834
835 ** pinentry.el allows GnuPG passphrase to be prompted through the
836 minibuffer instead of a graphical dialog, depending on whether the gpg
837 command is called from Emacs (i.e., INSIDE_EMACS environment variable
838 is set). This feature requires newer versions of GnuPG (2.1.5 or
839 later) and Pinentry (0.9.5 or later).
840
841 ** cl-generic.el provides CLOS-style multiple-dispatch generic functions.
842
843 ** scss-mode (a minor variant of css-mode)
844
845 ** let-alist is a new macro (and a package) that allows one to easily
846 let-bind the values stored in an alist.
847
848 ** `tildify-mode' allows to automatically insert hard spaces as one
849 types the text. Breaking line after a single-character words is
850 forbidden by Czech and Polish typography (and may be discouraged in
851 other languages), so `auto-tildify-mode' makes it easier to create
852 a typographically-correct documents.
853 \f
854 * Incompatible Lisp Changes in Emacs 25.1
855
856 ** `:global' minor mode use `setq-default' rather than `setq'.
857 This means that you can't use `make-local-variable' and expect them to
858 "magically" become buffer-local.
859
860 ** `inhibit-point-motion-hooks' now defaults to t and is obsolete.
861
862 +++
863 ** `track-mouse' no longer freezes the shape of the mouse pointer.
864 The `track-mouse' form no longer refrains from changing the shape of
865 the mouse pointer for the entire time the body of that form is
866 executed. Lisp programs that use `track-mouse' for dragging across
867 large portions of the Emacs display, and want to avoid changes in the
868 pointer shape during dragging, should bind the variable `track-mouse'
869 to the special value `dragging' in the body of the form.
870
871 ** The optional `predicate' argument of `lisp-complete-symbol' no longer
872 has any effect. (This change was made in Emacs 24.4 but was not
873 advertised at the time.)
874
875 ** `indirect-function' does not signal `void-function' any more.
876 This is mostly a bug-fix, since this change was missed back in 24.4 when
877 symbol-function was changed not to signal `void-function' any more.
878 *** As a consequence, the second arg of `indirect-function' is now obsolete.
879
880 ** Comint, term, and compile do not set the EMACS env var any more.
881 Use the INSIDE_EMACS environment variable instead.
882
883 ** `save-excursion' does not save&restore the mark any more.
884
885 ** read-buffer-function can now be called with a 4th argument (`predicate').
886
887 ** completion-table-dynamic stays in the minibuffer.
888 If you want the old behavior of calling the function in the buffer
889 from which the minibuffer was entered, call it with the new argument
890 `switch-buffer'.
891
892 ** window-configurations no longer record the buffers' marks.
893
894 ** inhibit-modification-hooks now also inhibits lock-file checks, as well as
895 active region handling.
896
897 ** deactivate-mark is now buffer-local.
898
899 ** `cl-the' now asserts that its argument is of the given type.
900
901 ** `process-running-child-p` may now return a numeric process
902 group ID instead of `t'.
903
904 +++
905 ** Mouse click events on mode line or header line no longer include
906 any reference to a buffer position. The 6th member of the mouse
907 position list returned for such events is now nil.
908
909 ** Menu items in keymaps do not support the "key shortcut cache" any more.
910 These slots used to hold key-shortcut data, but have been obsolete since
911 Emacs-21.
912
913 ** Emacs no longer downcases the first letter of a system diagnostic
914 when signaling a file error. For example, it now reports "Permission
915 denied" instead of "permission denied". The old behavior was problematic
916 in languages like German where downcasing rules depend on grammar.
917
918 +++
919 ** New variable ‘text-quoting-style’ to control how Emacs translates quotes.
920 Set it to ‘curve’ for curved single quotes ‘like this’, to ‘straight’
921 for straight apostrophes 'like this', and to ‘grave’ for grave accent
922 and apostrophe `like this'. The default value nil acts like ‘curve’
923 if curved single quotes are displayable, and like ‘grave’ otherwise.
924 The new variable affects display of diagnostics and help, but not of info.
925
926 +++
927 ** substitute-command-keys now replaces quotes.
928 That is, it converts documentation strings’ quoting style as per the
929 value of ‘text-quoting-style’. Doc strings in source code can use
930 either curved single quotes or grave accents and apostrophes. As
931 before, characters preceded by \= are output as-is.
932
933 +++
934 ** Message-issuing functions ‘error’, ‘message’, etc. now convert quotes.
935 They use the new ‘format-message’ function instead of plain ‘format’,
936 so that they now follow user preference as per ‘text-quoting-style’
937 when processing curved single quotes, grave accents, and apostrophes
938 in their format argument.
939
940 +++
941 ** The character classes [:alpha:] and [:alnum:] in regular expressions
942 now match multibyte characters using Unicode character properties.
943 If you want the old behavior where they matched any character with
944 word syntax, use `\sw' instead.
945
946 +++
947 ** The `diff' command uses the unified format now. To restore the old
948 behavior, set `diff-switches' to `-c'.
949
950 ** `grep-template' and `grep-find-template' values don't include the
951 --color argument anymore. It's added at the <C> place holder position
952 dynamically.
953
954 ** `grep-template' and `grep-find-template' values don't include the
955 --color argument anymore. It's added at the <C> place holder position
956 dynamically. Any third-party code that changes these templates should
957 be updated accordingly.
958
959 \f
960 * Lisp Changes in Emacs 25.1
961
962 ** New functions `filepos-to-bufferpos' and `bufferpos-to-filepos'.
963
964 ** The default value of `load-read-function' is now `read'.
965
966 ** New hook `pre-redisplay-functions', a bit easier to use than pre-redisplay-function.
967
968 ** The second arg of `looking-back' should always be provided explicitly.
969
970 ** Obsolete text properties `intangible', `point-entered', and `point-left'.
971 Replaced by properties `cursor-intangible' and `cursor-sensor-functions',
972 implemented by the new `cursor-intangible-mode' and
973 `cursor-sensor-mode' minor modes.
974
975 ** New process type `pipe', which can be used in combination with the
976 `:stderr' keyword of make-process to handle standard error output
977 of subprocess.
978
979 ** New function `make-process' provides an alternative interface to
980 `start-process'. It allows programs to set process parameters such as
981 process filter, sentinel, etc., through keyword arguments (similar to
982 `make-network-process').
983
984 ** `read-buffer' takes a new `predicate' argument.
985
986 ** Emacs Lisp now supports generators.
987
988 ** New finalizer facility for running code when objects
989 become unreachable.
990
991 ** lexical closures can use (:documentation <form>) to build their docstring.
992 It should be placed right where the docstring would be, and <form> is then
993 evaluated (and should return a string) when the closure is built.
994
995 ** define-inline provides a new way to define inlinable functions.
996
997 ** New function `macroexpand-1' to perform a single step of macroexpansion.
998
999 ** Some "x-*" were obsoleted:
1000 *** x-select-text is renamed gui-select-text.
1001 *** x-selection-value is renamed gui-selection-value.
1002 *** x-get-selection is renamed gui-get-selection.
1003 *** x-get-clipboard and x-clipboard-yank are marked obsolete.
1004 *** x-get-selection-value is renamed to gui-get-primary-selection.
1005 *** x-set-selection is renamed to gui-set-selection
1006
1007 ** New function `string-greaterp', which return the opposite result of
1008 `string-lessp'.
1009
1010 ** New function `alist-get', which is also a valid place (aka lvalue).
1011
1012 ** New function `funcall-interactively', which works like `funcall'
1013 but makes `called-interactively-p' treat the function as (you guessed it)
1014 called interactively.
1015
1016 ** New function `function-put' to use instead of `put' for function properties.
1017
1018 +++
1019 ** New properties that can be specified with `declare':
1020 *** (interactive-only INSTEAD), says to use INSTEAD for non-interactive use.
1021 *** (pure VAL), if VAL is non-nil, indicates the function is pure.
1022 *** (side-effect-free VAL), if VAL is non-nil, indicates the function does not
1023 have side effects.
1024
1025 +++
1026 ** New macro `with-file-modes', for evaluating expressions with default file
1027 permissions set to temporary values (e.g., for creating private files).
1028
1029 ** You can access the slots of structures using `cl-struct-slot-value'.
1030
1031 ** Function `sort' can deal with vectors.
1032
1033 ** Function `system-name' now returns an updated value if the current
1034 system's name has changed or if the Emacs process has changed systems,
1035 and to avoid long waits it no longer consults DNS to canonicalize the
1036 name. The variable `system-name' is now obsolete.
1037
1038 +++
1039 ** Function `write-region' no longer outputs "Wrote FILE" in batch mode.
1040
1041 ** If `pwd' is called with a prefix argument, insert the current default
1042 directory at point.
1043
1044 ---
1045 ** New utilities in subr-x.el:
1046 *** New macros `if-let' and `when-let' allow defining bindings and to
1047 execute code depending whether all values are true.
1048 *** New macros `thread-first' and `thread-last' allow threading a form
1049 as the first or last argument of subsequent forms.
1050
1051 +++
1052 ** Documentation strings now support quoting with curved single quotes
1053 ‘like-this’ in addition to the old style with grave accent and
1054 apostrophe `like-this'. The new style looks better on today's displays.
1055 In the new Electric Quote mode, you can enter curved single quotes
1056 into documentation by typing ` and '. Outside Electric Quote mode,
1057 you can enter them by typing ‘C-x 8 [’ and ‘C-x 8 ]’, or (if your Alt
1058 key works) by typing ‘A-[’ and ‘A-]’. As described above under
1059 ‘text-quoting-style’, the user can specify how to display doc string
1060 quotes.
1061
1062 +++
1063 ** New function ‘format-message’ is like ‘format’ and also converts
1064 curved single quotes, grave accents and apostrophes as per
1065 ‘text-quoting-style’.
1066
1067 +++
1068 ** show-help-function's arg is converted via substitute-command-keys
1069 before being passed to the function. Help strings, help-echo
1070 properties, etc. can therefore contain command key escapes and
1071 quotation marks.
1072
1073 +++
1074 ** Time-related changes:
1075
1076 *** Time conversion functions now accept an optional ZONE argument
1077 that specifies the time zone rules for conversion. ZONE is omitted or
1078 nil for Emacs local time, t for Universal Time, ‘wall’ for system wall
1079 clock time, or a string as in ‘set-time-zone-rule’ for a time zone
1080 rule. The affected functions are ‘current-time-string’,
1081 ‘current-time-zone’, ‘decode-time’, and ‘format-time-string’. The
1082 function ‘encode-time’, which already accepted a simple time zone rule
1083 argument, has been extended to accept all the new forms.
1084
1085 *** Time-related functions now consistently accept numbers
1086 (representing seconds since the epoch) and nil (representing the
1087 current time) as well as the usual list-of-integer representation.
1088 Affected functions include `current-time-string', `current-time-zone',
1089 `decode-time', `float-time', `format-time-string', `seconds-to-time',
1090 `time-add', `time-less-p', `time-subtract', `time-to-day-in-year',
1091 `time-to-days', and `time-to-seconds'.
1092
1093 *** The `encode-time-value' and `with-decoded-time-value' macros have
1094 been obsoleted.
1095
1096 *** `calendar-next-time-zone-transition', `time-add', and
1097 `time-subtract' no longer return time values in the obsolete and
1098 undocumented integer-pair format. Instead, they return a list of two
1099 integers.
1100
1101 +++
1102 ** New function `set-binary-mode' allows to switch a standard stream
1103 of the Emacs process to binary I/O mode.
1104
1105 ** In locales that cannot display curved quotes, ASCII approximations
1106 are installed in standard-display-table.
1107
1108 ** Standard output and error streams now transliterate characters via
1109 standard-display-table, and encode output using locale-coding-system.
1110
1111 ** Miscellaneous name change
1112
1113 For consistency with the usual Emacs spelling, the Lisp variable
1114 `hfy-optimisations' has been renamed to `hfy-optimizations'.
1115 The old name should still work, as an obsolescent alias.
1116
1117 \f
1118 * Changes in Frames and Windows Code in Emacs 25.1
1119
1120 +++
1121 ** Emacs can now draw horizontal scroll bars on some platforms that
1122 provide toolkit scroll bars, namely Gtk+, Lucid, Motif and Windows.
1123 Horizontal scroll bars are turned off by default.
1124 *** New function `horizontal-scroll-bars-available-p' telling whether
1125 horizontal scroll bars are available on the underlying system.
1126 *** New mode `horizontal-scroll-bar-mode' to toggle horizontal scroll
1127 bars on all existing and future frames.
1128 *** New function `toggle-horizontal-scroll-bar' to toggle horizontal
1129 scroll bars on the selected frame.
1130 *** New frame parameters `horizontal-scroll-bars' and
1131 `scroll-bar-height' to set horizontal scroll bars and their height
1132 for individual frames and in `default-frame-alist'.
1133 *** New functions `frame-scroll-bar-height' and
1134 `window-scroll-bar-height' return the height of horizontal scroll
1135 bars on a specific frame or window.
1136 *** `set-window-scroll-bars' now accepts five parameters where the last
1137 two specify height and type of the window's horizontal scroll bar.
1138 *** `window-scroll-bars' now returns type and sizes of horizontal scroll
1139 bars too.
1140 *** New buffer-local variables `horizontal-scroll-bar' and
1141 `scroll-bar-height'.
1142
1143 +++
1144 ** New functions `frame-geometry' and `frame-edges' give access to a
1145 frame's geometry.
1146
1147 +++
1148 ** New functions `mouse-absolute-pixel-position' and
1149 `set-mouse-absolute-pixel-position' get/set screen coordinates of the
1150 mouse cursor.
1151
1152 +++
1153 ** The function `window-edges' now accepts three additional arguments to
1154 retrieve body, absolute and pixel edges of the window.
1155
1156 +++
1157 ** The functions `window-inside-edges', `window-inside-pixel-edges' and
1158 `window-inside-absolute-pixel-edges' have been renamed to respectively
1159 `window-body-edges', `window-body-pixel-edges' and
1160 `window-absolute-body-pixel-edges'. The old names are kept as aliases.
1161
1162 +++
1163 ** New function `window-absolute-pixel-position' to get the screen
1164 coordinates of a visible buffer position.
1165
1166 +++
1167 ** The height of a frame's menu and tool bar are no longer counted in the
1168 frame's text height. This means that the text height stands only for
1169 the height of the frame's root window plus that of the echo area (if
1170 present). This was already the behavior for frames with external tool
1171 and menu bars (like in the Gtk builds) but has now been extended to all
1172 builds.
1173
1174 +++
1175 ** Frames now do not necessarily preserve the number of columns or lines
1176 they display when setting default font, menu bar, fringe width, or
1177 scroll bars. In particular, maximized and fullscreen frames are
1178 conceptually never resized if such settings change. For fullheight and
1179 fullwidth frames, the behavior may depend on the toolkit used.
1180 *** New option `frame-inhibit-implied-resize' if non-nil, means that
1181 setting default font, menu bar, fringe width, or scroll bars of a
1182 specific frame does not resize that frame in order to preserve the
1183 number of columns or lines it displays.
1184
1185 +++
1186 ** New function `window-preserve-size' allows to preserve the size of
1187 windows without "fixing" it. It's supported by `fit-window-to-buffer',
1188 `temp-buffer-resize-mode' and `display-buffer'.
1189
1190 +++
1191 ** New minor mode `window-divider-mode' and options
1192 `window-divider-default-places', `window-divider-default-bottom-width'
1193 and `window-divider-default-right-width'.
1194
1195 +++
1196 ** New option `switch-to-buffer-in-dedicated-window' allows to customize
1197 how `switch-to-buffer' proceeds interactively when the selected window
1198 is strongly dedicated to its buffer.
1199
1200 +++
1201 ** The option `even-window-heights' has been renamed to
1202 `even-window-sizes' and now handles window widths as well.
1203
1204 ** Tearoff menus and detachable toolbars for Gtk+ has been removed.
1205 Those features have been deprecated in Gtk+ for a long time.
1206
1207 ** Miscellaneous
1208
1209 *** etags no longer qualifies class members by default.
1210 By default, `etags' will not qualify class members for C-like
1211 object-oriented languages with their class names and namespaces, and
1212 will remove qualifications used explicitly in the code from the tag
1213 names it puts in TAGS files. This is so the etags.el back-end for
1214 `xref-find-definitions' is more accurate and produces less false
1215 positives.
1216
1217 Use --class-qualify (-Q) if you want the old default behavior of
1218 qualifying class members in C++, Java, and Objective C. Note that
1219 using -Q might make some class members become "unknown" to `M-.'
1220 (`xref-find-definitions'); if so, you can use `C-u M-.' to specify the
1221 qualified names by hand.
1222
1223 \f
1224 * Changes in Emacs 25.1 on Non-Free Operating Systems
1225
1226 ---
1227 ** MS-Windows specific Emacs build scripts are no longer in the distribution
1228 This includes the makefile.w32-in files in various subdirectories, and
1229 the support files. The file nt/configure.bat now just tells the user
1230 to use the procedure described in nt/INSTALL, by running the Posix
1231 `configure' script in the top-level directory.
1232
1233 ---
1234 ** Building Emacs for MS-Windows requires at least Windows XP
1235 or Windows Server 2003. The built binaries still run on all versions
1236 of Windows starting with Windows 9X.
1237
1238 +++
1239 ** Emacs running on MS-Windows now supports the daemon mode.
1240
1241 ** The byte counts in etags-generated TAGS files are now the same on
1242 MS-Windows as they are on other platforms.
1243
1244 ---
1245 ** On OS X, configure creates a Cocoa ("Nextstep") build by default.
1246 Pass '--without-ns' to configure to create an X11 build, the old default.
1247
1248 ** OS X 10.5 or older is no longer supported.
1249
1250 ** OS X on PowerPC is no longer supported.
1251
1252 ---
1253 ** The new function 'w32-application-type' returns the type of an
1254 MS-Windows application given the name of its executable program file.
1255
1256 \f
1257 ----------------------------------------------------------------------
1258 This file is part of GNU Emacs.
1259
1260 GNU Emacs is free software: you can redistribute it and/or modify
1261 it under the terms of the GNU General Public License as published by
1262 the Free Software Foundation, either version 3 of the License, or
1263 (at your option) any later version.
1264
1265 GNU Emacs is distributed in the hope that it will be useful,
1266 but WITHOUT ANY WARRANTY; without even the implied warranty of
1267 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1268 GNU General Public License for more details.
1269
1270 You should have received a copy of the GNU General Public License
1271 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
1272
1273 \f
1274 Local variables:
1275 coding: utf-8
1276 mode: outline
1277 paragraph-separate: "[ \f]*$"
1278 end: