Do not convert ij and IJ to compatibility chars
[emacs.git] / etc / NEWS
blobdd6d5465d85595715f077f5ef4cd8a5ace455503
1 GNU Emacs NEWS -- history of user-visible changes.
3 Copyright (C) 2014-2017 Free Software Foundation, Inc.
4 See the end of the file for license conditions.
6 Please send Emacs bug reports to bug-gnu-emacs@gnu.org.
7 If possible, use M-x report-emacs-bug.
9 This file is about changes in Emacs version 26.
11 See file HISTORY for a list of GNU Emacs versions and release dates.
12 See files NEWS.25, NEWS.24, NEWS.23, NEWS.22, NEWS.21, NEWS.20,
13 NEWS.19, NEWS.18, and NEWS.1-17 for changes in older Emacs versions.
15 You can narrow news to a specific version by calling 'view-emacs-news'
16 with a prefix argument or by typing C-u C-h C-n.
18 Temporary note:
19 +++ indicates that all necessary documentation updates are complete.
20     (This means all relevant manuals in doc/ AND lisp doc-strings.)
21 --- means no change in the manuals is needed.
22 When you add a new item, use the appropriate mark if you are sure it applies,
25 * Installation Changes in Emacs 26.1
27 ** By default libgnutls is now required when building Emacs.
28 Use 'configure --with-gnutls=no' to build even when GnuTLS is missing.
30 ** GnuTLS version 2.12.2 or later is now required, instead of merely
31 version 2.6.6 or later.
33 ** The new option 'configure --with-mailutils' causes Emacs to rely on
34 GNU Mailutils 'movemail' to retrieve email.  By default, the Emacs
35 build procedure continues to build and install a limited and insecure
36 'movemail' substitute.  Although --with-mailutils is recommended, it
37 is not yet the default due to backward-compatibility concerns.
39 ** The new option 'configure --enable-gcc-warnings=warn-only' causes
40 GCC to issue warnings without stopping the build.  This behavior is
41 now the default in developer builds.  As before, use
42 '--disable-gcc-warnings' to suppress GCC's warnings, and
43 '--enable-gcc-warnings' to stop the build if GCC issues warnings.
45 ** When GCC warnings are enabled, '--enable-check-lisp-object-type' is
46 now enabled by default when configuring.
48 +++
49 ** The Emacs server now has socket-launching support.  This allows
50 socket based activation, where an external process like systemd can
51 invoke the Emacs server process upon a socket connection event and
52 hand the socket over to Emacs.  Emacs uses this socket to service
53 emacsclient commands.  This new functionality can be disabled with the
54 configure option '--disable-libsystemd'.
56 +++
57 ** A systemd user unit file is provided.  Use it in the standard way:
58 systemctl --user enable emacs
59 (If your Emacs is installed in a non-standard location, you may
60 need to copy the emacs.service file to eg ~/.config/systemd/user/)
62 ** New configure option '--disable-build-details' attempts to build an
63 Emacs that is more likely to be reproducible; that is, if you build
64 and install Emacs twice, the second Emacs is a copy of the first.
65 Deterministic builds omit the build date from the output of the
66 emacs-version and erc-cmd-SV functions, and the leave the following
67 variables nil: emacs-build-system, emacs-build-time,
68 erc-emacs-build-time.
70 ** The configure option '--with-gameuser' now defaults to 'no',
71 as this appears to be the most common configuration in practice.
72 When it is 'no', the shared game directory and the auxiliary program
73 update-game-score are no longer needed and are not installed.
75 ** Emacs no longer works on IRIX.  We expect that Emacs users are not
76 affected by this, as SGI stopped supporting IRIX in December 2013.
79 * Startup Changes in Emacs 26.1
81 +++
82 ** New option '--fg-daemon'.  This is the same as '--daemon', except
83 it runs in the foreground and does not fork.  This is intended for
84 modern init systems such as systemd, which manage many of the traditional
85 aspects of daemon behavior themselves.  '--bg-daemon' is now an alias
86 for '--daemon'.
88 ** New option '--module-assertions'.  If the user supplies this
89 option, Emacs will perform expensive correctness checks when dealing
90 with dynamic modules.  This is intended for module authors that wish
91 to verify that their module conforms to the module requirements.  The
92 option makes Emacs abort if a module-related assertion triggers.
94 +++
95 ** Emacs now supports 24-bit colors on capable text terminals
96 Terminal is automatically initialized to use 24-bit colors if the
97 required capabilities are found in terminfo.  See the FAQ node
98 "Colors on a TTY" for more information.
101 * Changes in Emacs 26.1
104 ** The function 'assoc' now takes an optional third argument 'testfn'.
105 This argument, when non-nil, is used for comparison instead of
106 'equal'.
108 ** The variable 'emacs-version' no longer includes the build number.
109 This is now stored separately in a new variable, 'emacs-build-number'.
112 ** The new function 'mapbacktrace' applies a function to all frames of
113 the current stack trace.
116 ** Emacs now provides a limited form of concurrency with Lisp threads.
117 Concurrency in Emacs Lisp is "mostly cooperative", meaning that
118 Emacs will only switch execution between threads at well-defined
119 times: when Emacs waits for input, during blocking operations related
120 to threads (such as mutex locking), or when the current thread
121 explicitly yields.  Global variables are shared among all threads, but
122 a 'let' binding is thread-local.  Each thread also has its own current
123 buffer and its own match data.
125 See the chapter "Threads" in the ELisp manual for full documentation
126 of these facilities.
129 ** The new function 'file-name-case-insensitive-p' tests whether a
130 given file is on a case-insensitive filesystem.
133 ** The new user variable 'electric-quote-chars' provides a list
134 of curved quotes for 'electric-quote-mode', allowing user to choose
135 the types of quotes to be used.
137 ** The new user option 'electric-quote-context-sensitive' makes
138 'electric-quote-mode' context sensitive.  If it is non-nil, you can
139 type an ASCII apostrophe to insert an opening or closing quote,
140 depending on context.  Emacs will replace the apostrophe by an opening
141 quote character at the beginning of the buffer, the beginning of a
142 line, after a whitespace character, and after an opening parenthesis;
143 and it will replace the apostrophe by a closing quote character in all
144 other cases.
146 ** The new variable 'electric-quote-inhibit-functions' controls when
147 to disable electric quoting based on context.  Major modes can add
148 functions to this list; Emacs will temporarily disable
149 'electric-quote-mode' whenever any of the functions returns non-nil.
150 This can be used by major modes that derive from 'text-mode' but allow
151 inline code segments, such as 'markdown-mode'.
154 ** The new user variable 'dired-omit-case-fold' allows the user to
155 customize the case-sensitivity of dired-omit-mode.  It defaults to
156 the same sensitivity as that of the filesystem for the corresponding
157 dired buffer.
160 ** Emacs now uses double buffering to reduce flicker when editing and
161 resizing graphical Emacs frames on the X Window System.  This support
162 requires the DOUBLE-BUFFER extension, which major X servers have
163 supported for many years.  If your system has this extension, but an
164 Emacs built with double buffering misbehaves on some displays you use,
165 you can disable the feature by adding
167   '(inhibit-double-buffering . t)
169 to default-frame-alist.  Or inject this parameter into the selected
170 frame by evaluating this form:
172   (modify-frame-parameters nil '((inhibit-double-buffering . t)))
175 The group 'wp', whose label was "text", is now deprecated.
176 Use the new group 'text', which inherits from 'wp', instead.
179 ** The new function 'call-shell-region' executes a command in an
180 inferior shell with the buffer region as input.
183 ** The new user option 'shell-command-dont-erase-buffer' controls
184 if the output buffer is erased between shell commands; if non-nil,
185 the output buffer is not erased; this variable also controls where
186 to set the point in the output buffer: beginning of the output,
187 end of the buffer or save the point.
188 When 'shell-command-dont-erase-buffer' is nil, the default value,
189 the behavior of 'shell-command', 'shell-command-on-region' and
190 'async-shell-command' is as usual.
193 ** The new user option 'mouse-select-region-move-to-beginning'
194 controls the position of point when double-clicking mouse-1 on the end
195 of a parenthetical grouping or string-delimiter: the default value nil
196 keeps point at the end of the region, setting it to non-nil moves
197 point to the beginning of the region.
200 ** The new user option 'mouse-drag-and-drop-region' allows to drag the
201 entire region of text to another place or another buffer.
204 ** The new user option 'confirm-kill-processes' allows the user to
205 skip a confirmation prompt for killing subprocesses when exiting
206 Emacs.  When set to t (the default), Emacs will prompt for
207 confirmation before killing subprocesses on exit, which is the same
208 behavior as before.
211 ** 'find-library-name' will now fall back on looking at 'load-history'
212 to try to locate libraries that have been loaded with an explicit path
213 outside 'load-path'.
216 ** Faces in 'minibuffer-prompt-properties' no longer overwrite properties
217 in the text in functions like 'read-from-minibuffer', but instead are
218 added to the end of the face list.  This allows users to say things
219 like '(read-from-minibuffer (propertize "Enter something: " 'face 'bold))'.
222 ** The new variable 'extended-command-suggest-shorter' has been added
223 to control whether to suggest shorter 'M-x' commands or not.
226 ** icomplete now respects 'completion-ignored-extensions'.
229 ** Non-breaking hyphens are now displayed with the 'nobreak-hyphen'
230 face instead of the 'escape-glyph' face.
233 ** Approximations to quotes are now displayed with the new 'homoglyph'
234 face instead of the 'escape-glyph' face.
237 ** 'C-x h' ('mark-whole-buffer') will now avoid marking the prompt
238 part of minibuffers.
241 ** 'find-library' now takes a prefix argument to pop to a different
242 window.
245 ** 'process-attributes' on Darwin systems now returns more information.
248 ** Several accessors for the value returned by 'file-attributes'
249 have been added.  They are: 'file-attribute-type',
250 'file-attribute-link-number', 'file-attribute-user-id',
251 'file-attribute-group-id', 'file-attribute-access-time',
252 'file-attribute-modification-time',
253 'file-attribute-status-change-time', 'file-attribute-size',
254 'file-attribute-modes', 'file-attribute-inode-number',
255 'file-attribute-device-number' and 'file-attribute-collect'.
258 ** The new function 'buffer-hash' computes a fast, non-consing hash of
259 a buffer's contents.
262 ** 'fill-paragraph' no longer marks the buffer as changed unless it
263 actually changed something.
266 ** The locale language name 'ca' is now mapped to the language
267 environment 'Catalan', which has been added.
270 ** 'align-regexp' has a separate history for its interactive argument.
271 'align-regexp' no longer shares its history with all other
272 history-less functions that use 'read-string'.
275 ** The networking code has been reworked so that it's more
276 asynchronous than it was (when specifying :nowait t in
277 'make-network-process').  How asynchronous it is varies based on the
278 capabilities of the system, but on a typical GNU/Linux system the DNS
279 resolution, the connection, and (for TLS streams) the TLS negotiation
280 are all done without blocking the main Emacs thread.  To get
281 asynchronous TLS, the TLS boot parameters have to be passed in (see
282 the manual for details).
284 Certain process oriented functions (like 'process-datagram-address')
285 will block until socket setup has been performed.  The recommended way
286 to deal with asynchronous sockets is to avoid interacting with them
287 until they have changed status to "run".  This is most easily done
288 from a process sentinel.
290 ** 'make-network-process' and 'open-network-stream' sometimes allowed
291 :service to be an integer string (e.g., :service "993") and sometimes
292 required an integer (e.g., :service 993).  This difference has been
293 eliminated, and integer strings work everywhere.
295 ** It is possible to disable attempted recovery on fatal signals.
297 Two new variables support disabling attempts to recover from stack
298 overflow and to avoid automatic auto-save when Emacs is delivered a
299 fatal signal.  'attempt-stack-overflow-recovery', if set to 'nil',
300 will disable attempts to recover from C stack overflows; Emacs will
301 then crash as with any other fatal signal.
302 'attempt-orderly-shutdown-on-fatal-signal', if set to 'nil', will
303 disable attempts to auto-save the session and shut down in an orderly
304 fashion when Emacs receives a fatal signal; instead, Emacs will
305 terminate immediately.  Both variables are non-'nil' by default.
306 These variables are for users who would like to avoid the small
307 probability of data corruption due to techniques Emacs uses to recover
308 in these situations.
311 ** File local and directory local variables are now initialized each
312 time the major mode is set, not just when the file is first visited.
313 These local variables will thus not vanish on setting a major mode.
316 ** A second dir-local file (.dir-locals-2.el) is now accepted.
317 See the variable 'dir-locals-file-2' for more information.
320 ** Connection-local variables can be used to specify local variables
321 with a value depending on the connected remote server.  For details,
322 see the node "Connection Local Variables" in the ELisp manual.
325 ** International domain names (IDNA) are now encoded via the new
326 puny.el library, so that one can visit web sites with non-ASCII URLs.
329 ** The new 'timer-list' command lists all active timers in a buffer,
330 where you can cancel them with the 'c' command.
333 ** The new function 'read-multiple-choice' prompts for multiple-choice
334 questions, with a handy way to display help texts.
337 ** 'switch-to-buffer-preserve-window-point' now defaults to t.
340 ** The new variable 'debugger-stack-frame-as-list' allows displaying
341 all call stack frames in a Lisp backtrace buffer as lists.  Both
342 debug.el and edebug.el have been updated to heed to this variable.
345 ** Values in call stack frames are now displayed using 'cl-prin1'.
346 The old behaviour of using 'prin1' can be restored by customizing the
347 new option 'debugger-print-function'.
350 ** NUL bytes in strings copied to the system clipboard are now
351 replaced with "\0".
354 ** The new variable 'x-ctrl-keysym' has been added to the existing
355 roster of X keysyms.  It can be used in combination with another
356 variable of this kind to swap modifiers in Emacs.
359 ** New input methods: 'cyrillic-tuvan', 'polish-prefix'.
362 ** The 'dutch' input method no longer attempts to support Turkish too.
363 Also, it no longer converts 'IJ' and 'ij' to the compatibility
364 characters U+0132 LATIN CAPITAL LIGATURE IJ and U+0133 LATIN SMALL
365 LIGATURE IJ.
368 ** File name quoting by adding the prefix "/:" is now possible for the
369 local part of a remote file name.  Thus, if you have a directory named
370 "/~" on the remote host "foo", you can prevent it from being
371 substituted by a home directory by writing it as "/foo:/:/~/file".
374 ** The new variable 'maximum-scroll-margin' allows having effective
375 settings of 'scroll-margin' up to half the window size, instead of
376 always restricting the margin to a quarter of the window.
379 ** Emacs can scroll horizontally using mouse, touchpad, and trackbar.
380 You can enable this by customizing 'mwheel-tilt-scroll-p'.  If you
381 want to reverse the direction of the scroll, customize
382 'mwheel-flip-direction'.
385 ** Emacsclient has a new option -u/--suppress-output.  The option
386 suppresses display of return values from the server process.
389 ** New user option 'dig-program-options' and extended functionality
390 for DNS-querying functions 'nslookup-host', 'dns-lookup-host',
391 and 'run-dig'.  Each function now accepts an optional name server
392 argument interactively (with a prefix argument) and non-interactively.
395 ** Emacsclient has a new option -T/--tramp.
396 This helps with using a local Emacs session as the server for a remote
397 emacsclient.  With appropriate setup, one can now set the EDITOR
398 environment variable on a remote machine to emacsclient, and
399 use the local Emacs to edit remote files via Tramp.  See the node
400 "emacsclient Options" in the user manual for the details.
403 ** 'describe-key-briefly' now ignores mouse movement events.
406 ** The new variable 'eval-expression-print-maximum-character' prevents
407 large integers from being displayed as characters.
409 ** Two new commands for finding the source code of Emacs Lisp
410 libraries: 'find-library-other-window' and 'find-library-other-frame'.
413 ** The new variable 'display-raw-bytes-as-hex' allows to change the
414 display of raw bytes from octal to hex.
416 ** You can now provide explicit field numbers in format specifiers.
417 For example, '(format "%2$s %1$s" "X" "Y")' produces "Y X".
419 ** 'comment-indent-function' values may now return a cons to specify a
420 range of indentation.
423 ** Emacs now supports optional display of line numbers in the buffer.
424 This is similar to what linum-mode provides, but much faster and
425 doesn't usurp the display margin for the line numbers.  Customize the
426 buffer-local variable 'display-line-numbers' to activate this optional
427 display.  If set to t, Emacs will display the number of each line
428 before the line.  If set to 'relative', Emacs will display the line
429 number relative to the line showing point, with that line's number
430 displayed as absolute.  If set to 'visual', Emacs will display a
431 relative number for every screen line, i.e. it will count screen lines
432 rather than buffer lines.  The default is nil, which doesn't display
433 the line numbers.
435 In 'relative' and 'visual' modes, the variable
436 'display-line-numbers-current-absolute' controls what number is
437 displayed for the line showing point.  By default, this variable's
438 value is t, which means display the absolute line number for the line
439 showing point.  Customizing this variable to a nil value will cause
440 Emacs to show zero instead, which preserves horizontal space of the
441 window in large buffers.
443 Line numbers are not displayed at all in minibuffer windows and in
444 tooltips, as they are not useful there.
446 The new face 'line-number' is used to display the line numbers.  The
447 new face 'line-number-current-line' can be customized to display the
448 current line's number differently from all the other line numbers; by
449 default these two faces are identical.
451 You can also customize the new variable 'display-line-numbers-width' to
452 specify a fixed minimal with of the area allocated to line-number
453 display.  The default is nil, meaning that Emacs will dynamically
454 calculate the area width, enlarging or shrinking it as needed.
455 Setting it to a non-negative integer specifies that as the minimal
456 width; selecting a value  that is large enough to display all line
457 numbers in a buffer will then keep the line-number display area of
458 constant width at all times, if that is desired.
460 Lisp programs can disable line-number display for a particular screen
461 line by putting the 'display-line-numbers-disable' text property or
462 overlay property on the first character of that screen line.  This is
463 intended for add-on packages that need a finer control of the display.
465 Lisp programs that need to know how much screen estate is used up for
466 line-number display in a window can use the new function
467 'line-number-display-width'.
469 Linum mode and all similar packages are henceforth becoming obsolete.
470 Users and developers are encouraged to switch to this new feature
471 instead.
474 * Editing Changes in Emacs 26.1
477 ** New variable 'column-number-indicator-zero-based'.
478 Traditionally, in Column Number mode, the displayed column number
479 counts from zero starting at the left margin of the window.  This
480 behavior is now controlled by 'column-number-indicator-zero-based'.
481 If you would prefer for the displayed column number to count from one,
482 you may set this variable to nil.  (Behind the scenes, there is now a
483 new mode line construct, '%C', which operates exactly as '%c' does
484 except that it counts from one.)
487 ** New single-line horizontal scrolling mode.
488 The 'auto-hscroll-mode' variable can now have a new special value,
489 'current-line', which causes only the line where the cursor is
490 displayed to be horizontally scrolled when lines are truncated on
491 display and point moves outside the left or right window margin.
494 ** New mode line constructs '%o' and '%q', and user option
495 'mode-line-percent-position'.  '%o' displays the "degree of travel" of
496 the window through the buffer.  Unlike the default '%p', this
497 percentage approaches 100% as the window approaches the end of the
498 buffer.  '%q' displays the percentage offsets of both the start and
499 the end of the window, e.g. "5-17%".  The new option
500 'mode-line-percent-position' makes it easier to switch between '%p',
501 '%P', and these new constructs.
504 ** Two new user options 'list-matching-lines-jump-to-current-line' and
505 'list-matching-lines-current-line-face' to show highlighted the current
506 line in *Occur* buffer.
509 ** The 'occur' command can now operate on the region.
512 ** New bindings for 'query-replace-map'.
513 'undo', undo the last replacement; bound to 'u'.
514 'undo-all', undo all replacements; bound to 'U'.
516 ** 'delete-trailing-whitespace' deletes whitespace after form feed.
517 In modes where form feed was treated as a whitespace character,
518 'delete-trailing-whitespace' would keep lines containing it unchanged.
519 It now deletes whitespace after the last form feed thus behaving the
520 same as in modes where the character is not whitespace.
522 ** No more prompt about changed file when the file's content is unchanged.
523 Instead of only checking the modification time, Emacs now also checks
524 the file's actual content before prompting the user.
526 ** Various casing improvements.
528 *** 'upcase', 'upcase-region' et al. convert title case characters
529 (such as Dz) into their upper case form (such as DZ).
531 *** 'capitalize', 'upcase-initials' et al. make use of title-case forms
532 of initial characters (correctly producing for example Džungla instead
533 of incorrect DŽungla).
535 *** Characters which turn into multiple ones when cased are correctly handled.
536 For example, fi ligature is converted to FI when upper cased.
538 *** Greek small sigma is correctly handled when at the end of the word.
539 Strings such as ΌΣΟΣ are now correctly converted to Όσος when
540 capitalized instead of incorrect Όσοσ (compare lowercase sigma at the
541 end of the word).
543 ** Emacs can now auto-save buffers to visited files in a more robust
544 manner via the new mode 'auto-save-visited-mode'.  Unlike
545 'auto-save-visited-file-name', this mode uses the normal saving
546 procedure and therefore obeys saving hooks.
547 'auto-save-visited-file-name' is now obsolete.
550 ** New behavior of 'mark-defun' implemented
551 Prefix argument selects that many (or that many more) defuns.
552 Negative prefix arg flips the direction of selection.  Also,
553 'mark-defun' between defuns correctly selects N following defuns (or
554 -N previous for negative arguments).  Finally, comments preceding the
555 defun are selected unless they are separated from the defun by a blank
556 line.
558 ** New command 'replace-buffer-contents'.
559 This command replaces the contents of the accessible portion of the
560 current buffer with the contents of the accessible portion of a
561 different buffer while keeping point, mark, markers, and text
562 properties as intact as possible.
565 * Changes in Specialized Modes and Packages in Emacs 26.1
567 ** Dired
568 You can now use '`?`' in 'dired-do-shell-command'; as ' ? ', it gets replaced
569 by the current file name.
571 *** html2text is now marked obsolete.
573 *** smerge-refine-regions can refine regions in separate buffers
575 *** Info menu and index completion uses substring completion by default.
576 This can be customized via the info-menu category in
577 completion-category-override.
580 *** The ancestor buffer is shown by default in 3way merges.
581 A new option ediff-show-ancestor and a new toggle
582 ediff-toggle-show-ancestor.
584 ** TeX: Add luatex and xetex as alternatives to pdftex
586 ** Electric-Buffer-menu
589 *** Key 'U' is bound to 'Buffer-menu-unmark-all' and key 'M-DEL' is
590 bound to 'Buffer-menu-unmark-all-buffers'.
592 ** bs
595 *** Two new commands 'bs-unmark-all', bound to 'U', and
596 'bs-unmark-previous', bound to <backspace>.
598 ** Buffer-menu
601 *** Two new commands 'Buffer-menu-unmark-all', bound to 'U' and
602 'Buffer-menu-unmark-all-buffers', bound to 'M-DEL'.
604 ** Gnus
607 *** The .newsrc file will now only be saved if the native select
608 method is an NNTP select method.
611 *** A new command for sorting articles by readedness marks has been
612 added: 'C-c C-s C-m C-m'.
614 ** Ibuffer
617 *** New command 'ibuffer-jump'.
620 *** New filter commands 'ibuffer-filter-by-basename',
621 'ibuffer-filter-by-file-extension', 'ibuffer-filter-by-directory',
622 'ibuffer-filter-by-starred-name', 'ibuffer-filter-by-modified'
623 and 'ibuffer-filter-by-visiting-file'; bound respectively
624 to '/b', '/.', '//', '/*', '/i' and '/v'.
627 *** Two new commands 'ibuffer-filter-chosen-by-completion'
628 and 'ibuffer-and-filter', the second bound to '/&'.
631 *** The commands 'ibuffer-pop-filter', 'ibuffer-pop-filter-group',
632 'ibuffer-or-filter' and 'ibuffer-filter-disable' have the alternative
633 bindings '/<up>', '/S-<up>', '/|' and '/DEL', respectively.
636 *** The data format specifying filters has been extended to allow
637 explicit logical 'and', and a more flexible form for logical 'not'.
638 See 'ibuffer-filtering-qualifiers' doc string for full details.
641 *** A new command 'ibuffer-copy-buffername-as-kill'; bound
642 to 'B'.
645 *** New command 'ibuffer-change-marks'; bound to '* c'.
648 *** A new command 'ibuffer-mark-by-locked' to mark
649 all locked buffers;  bound to '% L'.
652 *** A new option 'ibuffer-locked-char' to indicate
653 locked buffers; Ibuffer shows a new column displaying
654 'ibuffer-locked-char' for locked buffers.
657 *** A new command 'ibuffer-unmark-all-marks' to unmark
658 all buffers without asking confirmation;  bound to
659 'U'; 'ibuffer-do-replace-regexp' bound to 'r'.
662 *** A new command 'ibuffer-mark-by-content-regexp' to mark buffers
663 whose content matches a regexp; bound to '% g'.
666 *** Two new options 'ibuffer-never-search-content-name' and
667 'ibuffer-never-search-content-mode' used by
668 'ibuffer-mark-by-content-regexp'.
670 ** Browse-URL
672 *** Support for opening links to man pages in Man or WoMan mode.
674 ** Comint
677 *** New user option 'comint-move-point-for-matching-input' to control
678 where to place point after C-c M-r and C-c M-s.
680 ** Compilation mode
683 *** Messages from CMake are now recognized.
686 *** A new option 'dired-always-read-filesystem' default to nil.
687 If non-nil, buffers visiting files are reverted before search them;
688 for instance, in 'dired-mark-files-containing-regexp' a non-nil value
689 of this option means the file is revisited in a temporary buffer;
690 this temporary buffer is the actual buffer searched: the original buffer
691 visiting the file is not modified.
694 *** In wdired, when editing files to contain slash characters,
695 the resulting directories are automatically created.  Whether to do
696 this is controlled by the 'wdired-create-parent-directories' variable.
699 *** 'W' is now bound to 'browse-url-of-dired-file', and is useful for
700 viewing HTML files and the like.
702 ** Edebug
704 *** Edebug can be prevented from pausing 1 second after reaching a
705 breakpoint (e.g. with "f" and "o") by customizing the new option
706 'edebug-sit-on-break'.
709 *** New customizable option 'edebug-max-depth'
710 This allows to enlarge the maximum recursion depth when instrumenting
711 code.
713 ** Eshell
715 *** 'eshell-input-filter's value is now a named function
716 'eshell-input-filter-default', and has a new custom option
717 'eshell-input-filter-initial-space' to ignore adding commands prefixed
718 with blank space to eshell history.
720 ** eww
723 *** New 'M-RET' command for opening a link at point in a new eww buffer.
726 *** A new 's' command for switching to another eww buffer via the minibuffer.
729 *** The 'o' command ('shr-save-contents') has moved to 'O' to avoid collision
730 with the 'o' command from 'image-map'.
733 *** A new command 'C' ('eww-toggle-colors') can be used to toggle
734 whether to use the HTML-specified colors or not.  The user can also
735 customize the 'shr-use-colors' variable.
738 *** Images that are being loaded are now marked with gray
739 "placeholder" images of the size specified by the HTML.  They are then
740 replaced by the real images asynchronously, which will also now
741 respect width/height HTML specs (unless they specify widths/heights
742 bigger than the current window).
745 *** The 'w' command on links is now 'shr-maybe-probe-and-copy-url'.
746 'shr-copy-url' now only copies the url at point; users who wish to
747 avoid accidentally accessing remote links may rebind 'w' and 'u' in
748 'eww-link-keymap' to it.
751 ** Ido
753 *** The commands 'find-alternate-file-other-window',
754 'dired-other-window', 'dired-other-frame', and
755 'display-buffer-other-window' are now remapped to Ido equivalents if
756 Ido mode is active.
758 ** Images
761 *** Images are automatically scaled before displaying based on the
762 'image-scaling-factor' variable (if Emacs supports scaling the images
763 in question).
766 *** Images inserted with 'insert-image' and related functions get a
767 keymap put into the text properties (or overlays) that span the
768 image.  This keymap binds keystrokes for manipulating size and
769 rotation, as well as saving the image to a file.  These commands are
770 also available in 'image-mode'.
773 *** A new library for creating and manipulating SVG images has been
774 added.  See the "SVG Images" section in the Lisp reference manual for
775 details.
778 *** New setf-able function to access and set image parameters is
779 provided: 'image-property'.
782 *** New commands 'image-scroll-left' and 'image-scroll-right'
783 for 'image-mode' that complement 'image-scroll-up' and
784 'image-scroll-down': they have the same prefix arg behavior and stop
785 at image boundaries.
787 ** Image-Dired
789 *** Now provides a minor mode 'image-dired-minor-mode' which replaces
790 the function 'image-dired-setup-dired-keybindings'.
792 *** Thumbnail generation is now asynchronous
793 The number of concurrent processes is limited by the variable
794 'image-dired-thumb-job-limit'.
796 *** 'image-dired-thumbnail-storage' has a new option 'standard-large'
797 for generating 256x256 thumbnails according to the Thumbnail Managing
798 Standard.
800 *** Inherits movement keys from 'image-mode' for viewing full images.
801 This includes the usual char, line, and page movement commands.
803 *** All the -options types have been changed to argument lists
804 instead of shell command strings.  This change affects
805 'image-dired-cmd-create-thumbnail-options',
806 'image-dired-cmd-create-temp-image-options',
807 'image-dired-cmd-rotate-thumbnail-options',
808 'image-dired-cmd-rotate-original-options',
809 'image-dired-cmd-write-exif-data-options',
810 'image-dired-cmd-read-exif-data-options', and introduces
811 'image-dired-cmd-pngnq-options', 'image-dired-cmd-pngcrush-options',
812 'image-dired-cmd-create-standard-thumbnail-options'
814 *** Recognizes more tools by default, including pngnq-s9 and OptiPNG
816 *** 'find-file' and related commands now work on thumbnails and
817 displayed images, providing a default argument of the original file name
818 via an addition to 'file-name-at-point-functions'.
821 ** The default 'Info-default-directory-list' no longer checks some obsolete
822 directory suffixes (gnu, gnu/lib, gnu/lib/emacs, emacs, lib, lib/emacs)
823 when searching for info directories.
826 ** The commands that add ChangeLog entries now prefer a VCS root directory
827 for the ChangeLog file, if none already exists.  Customize
828 'change-log-directory-files' to nil for the old behavior.
831 ** Support for non-string values of 'time-stamp-format' has been removed.
833 ** Message
836 *** 'message-use-idna' now defaults to t (because Emacs comes with
837 built-in IDNA support now).
840 *** When sending HTML messages with embedded images, and you have
841 exiftool installed, and you rotate images with EXIF data (i.e.,
842 JPEGs), the rotational information will be inserted into the outgoing
843 image in the message.  (The original image will not have its
844 orientation affected.)
847 *** The 'message-valid-fqdn-regexp' variable has been removed, since
848 there are now top-level domains added all the time.  Message will no
849 longer warn about sending emails to top-level domains it hasn't heard
850 about.
852 *** 'message-beginning-of-line' (bound to C-a) understands folded headers.
853 In 'visual-line-mode' it will look for the true beginning of a header
854 while in non-'visual-line-mode' it will move the point to the indented
855 header's value.
857 ** Package
860 *** The new variable 'package-gnupghome-dir' has been added to control
861 where the GnuPG home directory (used for signature verification) is
862 located and whether GnuPG's option "--homedir" is used or not.
865 *** Deleting a package no longer respects 'delete-by-moving-to-trash'.
867 ** Tramp
870 *** The method part of remote file names is mandatory now.  A valid
871 remote file name starts with "/method:host:" or "/method:user@host:".
874 *** The new pseudo method "-" is a marker for the default method.
875 "/-::" is the shortest remote file name then.
878 *** The command 'tramp-change-syntax' allows to choose an alternative
879 remote file name syntax.
882 *** New connection method "sg", which supports editing files under a
883 different group ID.
886 *** New connection method "doas" for OpenBSD hosts.
889 *** New connection method "gdrive", which allows to access Google
890 Drive onsite repositories.
893 *** Gateway methods in Tramp have been removed.  Instead, the Tramp
894 manual documents how to configure ssh and PuTTY accordingly.
897 *** Setting the "ENV" environment variable in
898 'tramp-remote-process-environment' enables reading of shell
899 initialization files.
902 *** Variable 'tramp-completion-mode' is obsoleted.
905 ** 'auto-revert-use-notify' is set back to t in 'global-auto-revert-mode'.
907 ** JS mode
910 *** JS mode now sets 'comment-multi-line' to t.
913 *** New variable 'js-indent-align-list-continuation', when set to nil,
914 will not align continuations of bracketed lists, but will indent them
915 by the fixed width 'js-indent-level'.
917 ** CSS mode
920 *** Support for completing attribute values, at-rules, bang-rules,
921 HTML tags, classes and IDs using the 'completion-at-point' command.
922 Completion candidates for HTML classes and IDs are retrieved from open
923 HTML mode buffers.
926 *** CSS mode now binds 'C-h S' to a function that will show
927 information about a CSS construct (an at-rule, property, pseudo-class,
928 pseudo-element, with the default being guessed from context).  By
929 default the information is looked up on the Mozilla Developer Network,
930 but this can be customized using 'css-lookup-url-format'.
933 *** CSS colors are fontified using the color they represent as the
934 background.  For instance, #ff0000 would be fontified with a red
935 background.
938 ** Emacs now supports character name escape sequences in character and
939 string literals.  The syntax variants \N{character name} and
940 \N{U+code} are supported.
943 ** Prog mode has some support for multi-mode indentation.
944 This allows better indentation support in modes that support multiple
945 programming languages in the same buffer, like literate programming
946 environments or ANTLR programs with embedded Python code.
948 A major mode can provide indentation context for a sub-mode through
949 the 'prog-indentation-context' variable.  To support this, modes that
950 provide indentation should use 'prog-widen' instead of 'widen' and
951 'prog-first-column' instead of a literal zero.  See the node
952 "Mode-Specific Indent" in the ELisp manual for more details.
954 ** ERC
956 *** New variable 'erc-default-port-tls' used to connect to TLS IRC
957 servers.
959 ** URL
962 *** The new function 'url-cookie-delete-cookie' can be used to
963 programmatically delete all cookies, or cookies from a specific
964 domain.
967 *** 'url-retrieve-synchronously' now takes an optional timeout parameter.
970 *** The URL package now support HTTPS over proxies supporting CONNECT.
973 *** 'url-user-agent' now defaults to 'default', and the User-Agent
974 string is computed dynamically based on 'url-privacy-level'.
976 ** VC and related modes
979 *** The VC state indicator in the mode line now defaults to more
980 colorful faces to make it more obvious to the user what the state is.
981 See the 'vc-faces' customization group.
984 *** 'vc-dir-mode' now binds 'vc-log-outgoing' to 'O'; and has various
985 branch-related commands on a keymap bound to 'B'.
987 ** CC mode
989 *** Opening a .h file will turn C or C++ mode depending on language used.
990 This is done with the help of 'c-or-c++-mode' function which analyses
991 contents of the buffer to determine whether it's a C or C++ source
992 file.
995 ** New DNS mode command 'dns-mode-ipv6-to-nibbles' to convert IPv6 addresses
996 to a format suitable for reverse lookup zone files.
998 ** Flymake
1001 *** Emacs does no longer prompt the user before killing Flymake
1002 processes on exit.
1005 * New Modes and Packages in Emacs 26.1
1007 ** New Elisp data-structure library 'radix-tree'.
1009 ** New library 'xdg' with utilities for some XDG standards and specs.
1011 ** HTML
1014 *** A new submode of 'html-mode', 'mhtml-mode', is now the default
1015 mode for *.html files.  This mode handles indentation,
1016 fontification, and commenting for embedded JavaScript and CSS.
1018 ** New minor mode 'pixel-scroll-mode' provides smooth pixel-level scrolling.
1021 * Incompatible Lisp Changes in Emacs 26.1
1024 *** Command 'dired-mark-extension' now automatically prepends a '.' to the
1025 extension when not present.  The new command 'dired-mark-suffix' behaves
1026 similarly but it doesn't prepend a '.'.
1029 ** Certain cond/pcase/cl-case forms are now compiled using a faster jump
1030 table implementation. This uses a new bytecode op 'switch', which isn't
1031 compatible with previous Emacs versions. This functionality can be disabled
1032 by setting 'byte-compile-cond-use-jump-table' to nil.
1034 ** 'C-up', 'C-down', 'C-left' and 'C-right' are now defined in term
1035 mode to send the same escape sequences that xterm does.  This makes
1036 things like forward-word in readline work.
1039 ** hideshow mode got four key bindings that are analogous to outline
1040 mode bindings: 'C-c @ C-a', 'C-c @ C-t', 'C-c @ C-d', and 'C-c @ C-e.'
1042 ** The grep/rgrep/lgrep functions will now ask about saving files
1043 before running.  This is controlled by the 'grep-save-buffers'
1044 variable.
1047 ** Customizable variable 'query-replace-from-to-separator'
1048 now doesn't propertize the string value of the separator.
1049 Instead, text properties are added by query-replace-read-from.
1050 Additionally, the new nil value restores pre-24.5 behavior
1051 of not providing replacement pairs via the history.
1053 ** Some obsolete functions, variables, and faces have been removed:
1054 *** make-variable-frame-local.  Variables cannot be frame-local any more.
1055 *** From subr.el: window-dot, set-window-dot, read-input, show-buffer,
1056 eval-current-buffer, string-to-int
1057 *** icomplete-prospects-length.
1058 *** All the default-FOO variables that hold the default value of the
1059 FOO variable.  Use 'default-value' and 'setq-default' to access and
1060 change FOO, respectively.  The exhaustive list of removed variables is:
1061 'default-mode-line-format', 'default-header-line-format',
1062 'default-line-spacing', 'default-abbrev-mode', 'default-ctl-arrow',
1063 'default-truncate-lines', 'default-left-margin', 'default-tab-width',
1064 'default-case-fold-search', 'default-left-margin-width',
1065 'default-right-margin-width', 'default-left-fringe-width',
1066 'default-right-fringe-width', 'default-fringes-outside-margins',
1067 'default-scroll-bar-width', 'default-vertical-scroll-bar',
1068 'default-indicate-empty-lines', 'default-indicate-buffer-boundaries',
1069 'default-fringe-indicator-alist', 'default-fringe-cursor-alist',
1070 'default-scroll-up-aggressively', 'default-scroll-down-aggressively',
1071 'default-fill-column', 'default-cursor-type',
1072 'default-cursor-in-non-selected-windows',
1073 'default-buffer-file-coding-system', 'default-major-mode', and
1074 'default-enable-multibyte-characters'.
1075 *** Many variables obsoleted in 22.1 referring to face symbols
1078 ** The variable 'text-quoting-style' no longer affects the treatment
1079 of curved quotes in format arguments to functions like 'message' and
1080 'format-message'.  In particular, when this variable's value is
1081 'grave', all quotes in formats are output as-is.
1083 ** Functions like 'check-declare-file' and 'check-declare-directory'
1084 now generate less chatter and more-compact diagnostics.  The auxiliary
1085 function 'check-declare-errmsg' has been removed.
1088 ** The regular expression character class [:blank:] now matches
1089 Unicode horizontal whitespace as defined in the Unicode Technical
1090 Standard #18.  If you only want to match space and tab, use [ \t]
1091 instead.
1094 ** 'min' and 'max' no longer round their results.  Formerly, they
1095 returned a floating-point value if any argument was floating-point,
1096 which was sometimes numerically incorrect.  For example, on a 64-bit
1097 host (max 1e16 10000000000000001) now returns its second argument
1098 instead of its first.
1101 ** The variable 'old-style-backquotes' has been made internal and
1102 renamed to 'lread--old-style-backquotes'.  No user code should use
1103 this variable.
1106 ** Module functions are now implemented slightly differently; in
1107 particular, the function 'internal--module-call' has been removed.
1108 Code that depends on undocumented internals of the module system might
1109 break.
1112 * Lisp Changes in Emacs 26.1
1114 ** New function 'seq-set-equal-p' to check if SEQUENCE1 and SEQUENCE2
1115 contain the same elements, regardless of the order.
1118 ** Emacs now supports records for user-defined types, via the new
1119 functions 'make-record', 'record', and 'recordp'.  Records are now
1120 used internally to represent cl-defstruct and defclass instances, for
1121 example.
1124 ** 'save-some-buffers' now uses 'save-some-buffers-default-predicate'
1125 to decide which buffers to ask about, if the PRED argument is nil.
1126 The default value of 'save-some-buffers-default-predicate' is nil,
1127 which means ask about all file-visiting buffers.
1129 ** string-(to|as|make)-(uni|multi)byte are now declared obsolete.
1130 ** New variable 'while-no-input-ignore-events' which allow
1131 setting which special events 'while-no-input' should ignore.
1132 It is a list of symbols.
1134 ** New function 'undo-amalgamate-change-group' to get rid of
1135 undo-boundaries between two states.
1137 ** New var 'definition-prefixes' is a hash table mapping prefixes to
1138 the files where corresponding definitions can be found.  This can be
1139 used to fetch definitions that are not yet loaded, for example for
1140 'C-h f'.
1142 ** New var 'syntax-ppss-table' to control the syntax-table used in
1143 'syntax-ppss'.
1146 ** 'define-derived-mode' can now specify an :after-hook form, which
1147 gets evaluated after the new mode's hook has run.  This can be used to
1148 incorporate configuration changes made in the mode hook into the
1149 mode's setup.
1151 ** Autoload files can be generated without timestamps,
1152 by setting 'autoload-timestamps' to nil.
1153 FIXME As an experiment, nil is the current default.
1154 If no insurmountable problems before next release, it can stay that way.
1157 ** 'gnutls-boot' now takes a parameter ':complete-negotiation' that
1158 says that negotiation should complete even on non-blocking sockets.
1161 ** There is now a new variable 'flyspell-sort-corrections-function'
1162 that allows changing the way corrections are sorted.
1165 ** The new command 'fortune-message' has been added, which displays
1166 fortunes in the echo area.
1169 ** New function 'func-arity' returns information about the argument list
1170 of an arbitrary function.  This generalizes 'subr-arity' for functions
1171 that are not built-in primitives.  We recommend using this new
1172 function instead of 'subr-arity'.
1174 ** New function 'region-bounds' can be used in the interactive spec
1175 to provide region boundaries (for rectangular regions more than one)
1176 to an interactively callable function as a single argument instead of
1177 two separate arguments region-beginning and region-end.
1180 ** 'parse-partial-sexp' state has a new element.  Element 10 is
1181 non-nil when the last character scanned might be the first character
1182 of a two character construct, i.e., a comment delimiter or escaped
1183 character.  Its value is the syntax of that last character.
1186 ** 'parse-partial-sexp's state, element 9, has now been confirmed as
1187 permanent and documented, and may be used by Lisp programs.  Its value
1188 is a list of currently open parenthesis positions, starting with the
1189 outermost parenthesis.
1192 ** 'read-color' will now display the color names using the color itself
1193 as the background color.
1195 ** The function 'redirect-debugging-output' now works on platforms
1196 other than GNU/Linux.
1199 ** The new function 'string-version-lessp' compares strings by
1200 interpreting consecutive runs of numerical characters as numbers, and
1201 compares their numerical values.  According to this predicate,
1202 "foo2.png" is smaller than "foo12.png".
1205 ** Numeric comparisons and 'logb' no longer return incorrect answers
1206 due to internal rounding errors.  For example, (< most-positive-fixnum
1207 (+ 1.0 most-positive-fixnum)) now correctly returns t on 64-bit hosts.
1210 ** The functions 'ffloor', 'fceiling', 'ftruncate' and 'fround' now
1211 accept only floating-point arguments, as per their documentation.
1212 Formerly, they quietly accepted integer arguments and sometimes
1213 returned nonsensical answers, e.g., (< N (ffloor N)) could return t.
1216 ** On hosts like GNU/Linux x86-64 where a 'long double' fraction
1217 contains at least EMACS_INT_WIDTH - 3 bits, 'format' no longer returns
1218 incorrect answers due to internal rounding errors when formatting
1219 Emacs integers with %e, %f, or %g conversions.  For example, on these
1220 hosts (eql N (string-to-number (format "%.0f" N))) now returns t for
1221 all Emacs integers N.
1224 ** Calls that accept floating-point integers (for use on hosts with
1225 limited integer range) now signal an error if arguments are not
1226 integral.  For example (decode-char 'ascii 0.5) now signals an error.
1229 ** The new function 'char-from-name' converts a Unicode name string
1230 to the corresponding character code.
1233 ** New functions 'sxhash-eq' and 'sxhash-eql' return hash codes of a
1234 Lisp object suitable for use with 'eq' and 'eql' correspondingly.  If
1235 two objects are 'eq' ('eql'), then the result of 'sxhash-eq'
1236 ('sxhash-eql') on them will be the same.
1239 ** Function 'sxhash' has been renamed to 'sxhash-equal' for
1240 consistency with the new functions.  For compatibility, 'sxhash'
1241 remains as an alias to 'sxhash-equal'.
1244 ** 'make-hash-table' now defaults to a rehash threshold of 0.8125
1245 instead of 0.8, to avoid rounding glitches.
1248 ** New function 'add-variable-watcher' can be used to call a function
1249 when a symbol's value is changed.  This is used to implement the new
1250 debugger command 'debug-on-variable-change'.
1253 ** Time conversion functions that accept a time zone rule argument now
1254 allow it to be OFFSET or a list (OFFSET ABBR), where the integer
1255 OFFSET is a count of seconds east of Universal Time, and the string
1256 ABBR is a time zone abbreviation.  The affected functions are
1257 'current-time-string', 'current-time-zone', 'decode-time',
1258 'format-time-string', and 'set-time-zone-rule'.
1261 ** 'format-time-string' now formats "%q" to the calendar quarter.
1263 ** New built-in function 'mapcan' which avoids unnecessary consing (and garbage
1264 collection).
1267 ** 'car' and 'cdr' compositions 'cXXXr' and 'cXXXXr' are now part of Elisp.
1270 ** 'if-let*', 'when-let*', and 'and-let*' are new in subr-x.el.
1271 The incumbent 'if-let' and 'when-let' are now aliases.
1273 ** Low-level list functions like 'length' and 'member' now do a better
1274 job of signaling list cycles instead of looping indefinitely.
1277 ** The new functions 'make-nearby-temp-file' and 'temporary-file-directory'
1278 can be used for creation of temporary files of remote or mounted directories.
1281 ** The new function 'file-local-name' can be used to specify arguments
1282 of remote processes.
1285 ** The new functions 'file-name-quote', 'file-name-unquote' and
1286 'file-name-quoted-p' can be used to quote / unquote file names with
1287 the prefix "/:".
1290 ** The new error 'file-missing', a subcategory of 'file-error', is now
1291 signaled instead of 'file-error' if a file operation acts on a file
1292 that does not exist.
1295 ** The function 'delete-directory' no longer signals an error when
1296 operating recursively and when some other process deletes the directory
1297 or its files before 'delete-directory' gets to them.
1300 *** New error type 'user-search-failed' like 'search-failed' but
1301 avoids debugger like 'user-error'.
1304 ** The function 'line-number-at-pos' now takes a second optional
1305 argument 'absolute'. If this parameter is nil, the default, this
1306 function keeps on returning the line number taking potential narrowing
1307 into account. If this parameter is non-nil, the function ignores
1308 narrowing and returns the absolute line number.
1310 ** Changes in Frame- and Window- Handling
1313 *** Resizing a frame no longer runs 'window-configuration-change-hook'.
1314 'window-size-change-functions' should be used instead.
1317 *** The new function 'frame-size-changed-p' can tell whether a frame has
1318 been resized since the last time 'window-size-change-functions' has been
1319 run.
1322 *** The function 'frame-geometry' now also returns the width of a
1323 frame's outer border.
1326 *** New frame parameters and changed semantics for older ones
1329 **** 'z-group' positions a frame above or below all others.
1332 **** 'min-width' and 'min-height' specify the absolute minimum size of a
1333 frame.
1336 **** 'parent-frame' makes a frame the child frame of another Emacs
1337 frame.  The section "Child Frames" in the Elisp manual describes the
1338 intrinsics of that relationship.
1341 **** 'delete-before' triggers deletion of one frame before that of
1342 another.
1345 **** 'mouse-wheel-frame' specifies another frame whose windows shall be
1346 scrolled instead.
1349 **** 'no-other-frame' has 'next-frame' and 'previous-frame' skip this
1350 frame.
1353 **** 'skip-taskbar' removes a frame's icon from the taskbar and has
1354 Alt-<TAB> skip this frame.
1357 **** 'no-focus-on-map' avoids that a frame gets input focus when mapped.
1360 **** 'no-accept-focus' means that a frame does not want to get input
1361 focus via the mouse.
1364 **** 'undecorated' removes the window manager decorations from a frame.
1367 **** 'override-redirect' tells the window manager to disregard this
1368 frame.
1371 **** 'width' and 'height' allow to specify pixel values and ratios now.
1374 **** 'left' and 'top' allow to specify ratios now.
1377 **** 'keep-ratio' preserves size and position of child frames when their
1378 parent frame is resized.
1381 **** 'no-special-glyphs' suppresses display of truncation and
1382 continuation glyphs in a frame.
1385 **** 'auto-hide-function' and 'minibuffer-exit' handle auto hiding of
1386 frames and exiting from minibuffer individually.
1389 **** 'fit-frame-to-buffer-margins' and 'fit-frame-to-buffer-sizes'
1390 handle fitting a frame to its buffer individually.
1393 **** 'drag-internal-border', 'drag-with-header-line',
1394 'drag-with-mode-line', 'snap-width', 'top-visible' and 'bottom-visible'
1395 allow to drag and resize frames with the mouse.
1397 *** The new function 'frame-list-z-order' returns a list of all frames
1398 in Z (stacking) order.
1401 *** The function 'x-focus-frame' optionally tries to not activate its
1402 frame.
1405 *** The variable 'focus-follows-mouse' has a third meaningful value
1406 'auto-raise' to indicate that the window manager automatically raises a
1407 frame when the mouse pointer enters it.
1410 *** The new function 'frame-restack' puts a frame above or below
1411 another on the display.
1414 *** The new face 'internal-border' specifies the background of a frame's
1415 internal border.
1418 *** The NORECORD argument of 'select-window' now has a meaningful value
1419 'mark-for-redisplay' which is like any other non-nil value but marks
1420 WINDOW for redisplay.
1423 *** Support for side windows is now official.  The display action
1424 function 'display-buffer-in-side-window' will display its buffer in a
1425 side window.  Functions for toggling all side windows on a frame,
1426 changing and reversing the layout of side windows and returning the main
1427 (major non-side) window of a frame are provided.  For details consult
1428 the section "Side Windows" in the Elisp manual.
1431 *** Support for atomic windows - rectangular compositions of windows
1432 treated by 'split-window', 'delete-window' and 'delete-other-windows'
1433 like a single live window - is now official.  For details consult the
1434 section "Atomic Windows" in the Elisp manual.
1437 *** New 'display-buffer' alist entry 'window-parameters' allows to
1438 assign window parameters to the window used for displaying the buffer.
1441 *** New function 'display-buffer-reuse-mode-window' is an action function
1442 suitable for use in 'display-buffer-alist'. For example, to avoid creating
1443 a new window when opening man pages when there's already one, use
1444 (add-to-list 'display-buffer-alist
1445      '("\\`\\*Man .*\\*\\'" .
1446        (display-buffer-reuse-mode-window
1447         (inhibit-same-window . nil)
1448         (mode . Man-mode))))
1451 *** New window parameter 'no-delete-other-window' prevents that
1452 its window gets deleted by 'delete-other-windows'.
1455 *** New window parameters 'mode-line-format' and 'header-line-format'
1456 allow to override the buffer-local formats for this window.
1459 *** New command 'window-swap-states' swaps the states of two live
1460 windows.
1463 *** New functions 'window-pixel-width-before-size-change' and
1464 'window-pixel-height-before-size-change' support detecting which
1465 window changed size when 'window-size-change-functions' are run.
1468 *** The new function 'window-lines-pixel-dimensions' returns the pixel
1469 dimensions of a window's text lines.
1472 *** The new function 'window-largest-empty-rectangle' returns the
1473 dimensions of the largest rectangular area not occupying any text in a
1474 window's body.
1477 *** The semantics of 'mouse-autoselect-window' has changed slightly.
1478 For details see the section "Mouse Window Auto-selection" in the Elisp
1479 manual.
1482 ** 'tcl-auto-fill-mode' is now declared obsolete.  Its functionality
1483 can be replicated simply by setting 'comment-auto-fill-only-comments'.
1486 * Changes in Emacs 26.1 on Non-Free Operating Systems
1488 ** Intercepting hotkeys on Windows 7 and later now works better.
1489 The new keyboard hooking code properly grabs system hotkeys such as
1490 Win-* and Alt-TAB, in a way that Emacs can get at them before the
1491 system.  This makes the 'w32-register-hot-key' functionality work
1492 again on all versions of MS-Windows starting with Windows 7.  On
1493 Windows NT and later you can now register any hotkey combination.  (On
1494 Windows 9X, the previous limitations, spelled out in the Emacs manual,
1495 still apply.)
1497 ** 'convert-standard-filename' no longer mirrors slashes on MS-Windows.
1498 Previously, on MS-Windows this function converted slash characters in
1499 file names into backslashes.  It no longer does that.  If your Lisp
1500 program used 'convert-standard-filename' to prepare file names to be
1501 passed to subprocesses (which is not the recommended usage of that
1502 function), you will now have to mirror slashes in your application
1503 code.  One possible way is this:
1505          (let ((start 0))
1506            (while (string-match "/" file-name start)
1507              (aset file-name (match-beginning 0) ?\\)
1508              (setq start (match-end 0))))
1510 ** GUI sessions now treat SIGINT like Posix platforms do.
1511 The effect of delivering a Ctrl-C (SIGINT) signal to a GUI Emacs on
1512 MS-Windows is now the same as on Posix platforms -- Emacs saves the
1513 session and exits.  In particular, this will happen if you start
1514 emacs.exe from the Windows shell, then type Ctrl-C into that shell's
1515 window.
1518 ** 'signal-process' supports SIGTRAP on Windows XP and later.
1519 The 'kill' emulation on Windows now maps SIGTRAP to a call to the
1520 'DebugBreakProcess' API.  This causes the receiving process to break
1521 execution and return control to the debugger.  If no debugger is
1522 attached to the receiving process, the call is typically ignored.
1523 This is in contrast to the default action on POSIX Systems, where it
1524 causes the receiving process to terminate with a core dump if no
1525 debugger has been attached to it.
1527 ** 'set-mouse-position' and 'set-mouse-absolute-pixel-position' work
1528 on macOS.
1531 ----------------------------------------------------------------------
1532 This file is part of GNU Emacs.
1534 GNU Emacs is free software: you can redistribute it and/or modify
1535 it under the terms of the GNU General Public License as published by
1536 the Free Software Foundation, either version 3 of the License, or
1537 (at your option) any later version.
1539 GNU Emacs is distributed in the hope that it will be useful,
1540 but WITHOUT ANY WARRANTY; without even the implied warranty of
1541 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1542 GNU General Public License for more details.
1544 You should have received a copy of the GNU General Public License
1545 along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
1548 Local variables:
1549 coding: utf-8
1550 mode: outline
1551 paragraph-separate: "[  \f]*$"
1552 end: