(Searching and Matching): Mention property search.
[emacs.git] / etc / NEWS
blob00a625adb17ba19bcaa601572433ae28f5dbca8d
1 GNU Emacs NEWS -- history of user-visible changes.  2006-06-04
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006
3           Free Software Foundation, Inc.
4 See the end for copying 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 22.
11 See files NEWS.21, NEWS.20, NEWS.19, NEWS.18, and NEWS.1-17 for changes
12 in older emacs versions.
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.
17 Temporary note:
18  +++ indicates that the appropriate manual has already been updated.
19  --- means no change in the manuals is called for.
20 When you add a new item, please add it without either +++ or ---
21 so we will look at it and add it to the manual.
24 * Installation Changes in Emacs 22.1
26 ---
27 ** Emacs comes with a new set of icons.
28 These icons are displayed on the taskbar and/or titlebar when Emacs
29 runs in a graphical environment.  Source files for these icons can be
30 found in etc/images/icons.  (You can't change the icons displayed by
31 Emacs by changing these files directly.  On X, the icon is compiled
32 into the Emacs executable; see gnu.h in the source tree.  On MS
33 Windows, see nt/icons/emacs.ico.)
35 ---
36 ** Emacs now supports new configure options `--program-prefix',
37 `--program-suffix' and `--program-transform-name' that affect the names of
38 installed programs.
40 ---
41 ** Emacs can now be built without sound support.
43 ---
44 ** You can build Emacs with Gtk+ widgets by specifying `--with-x-toolkit=gtk'
45 when you run configure.  This requires Gtk+ 2.4 or newer.  This port
46 provides a way to display multilingual text in menus (with some caveats).
48 ---
49 ** The `emacsserver' program has been removed, replaced with Lisp code.
51 ---
52 ** The `yow' program has been removed.
53 Use the corresponding Emacs feature instead.
55 ---
56 ** By default, Emacs now uses a setgid helper program to update game
57 scores.  The directory ${localstatedir}/games/emacs is the normal
58 place for game scores to be stored.  You can control this with the
59 configure option `--with-game-dir'.  The specific user that Emacs uses
60 to own the game scores is controlled by `--with-game-user'.  If access
61 to a game user is not available, then scores will be stored separately
62 in each user's home directory.
64 ---
65 ** Leim is now part of the Emacs distribution.
66 You no longer need to download a separate tarball in order to build
67 Emacs with Leim.
69 +++
70 ** The Emacs Lisp Reference Manual is now part of the distribution.
72 The Emacs Lisp Reference Manual in Info format is built as part of the
73 Emacs build procedure and installed together with the Emacs User
74 Manual.  A menu item was added to the menu bar that makes it easy
75 accessible (Help->More Manuals->Emacs Lisp Reference).
77 ---
78 ** The Introduction to Programming in Emacs Lisp manual is now part of
79 the distribution.
81 This manual is now part of the standard distribution and is installed,
82 together with the Emacs User Manual, into the Info directory.  A menu
83 item was added to the menu bar that makes it easy accessible
84 (Help->More Manuals->Introduction to Emacs Lisp).
86 ---
87 ** New translations of the Emacs Tutorial are available in the
88 following languages: Brasilian Portuguese, Bulgarian, Chinese (both
89 with simplified and traditional characters), French, and Italian.
90 Type `C-u C-h t' to choose one of them in case your language setup
91 doesn't automatically select the right one.
93 ---
94 ** A Portuguese translation of Emacs' reference card has been added.
95 Its name is `pt-br-refcard.tex'.  The corresponding PostScript file is
96 also included.
98 ---
99 ** A French translation of the `Emacs Survival Guide' is available.
102 ** Emacs now includes support for loading image libraries on demand.
103 (Currently this feature is only used on MS Windows.)  You can configure
104 the supported image types and their associated dynamic libraries by
105 setting the variable `image-library-alist'.
108 ** Support for a Cygwin build of Emacs was added.
111 ** Support for FreeBSD/Alpha has been added.
114 ** Support for GNU/Linux systems on S390 machines was added.
117 ** Support for MacOS X was added.
118 See the files mac/README and mac/INSTALL for build instructions.
121 ** Support for GNU/Linux systems on X86-64 machines was added.
124 ** Mac OS 9 port now uses the Carbon API by default.  You can also
125 create non-Carbon build by specifying `NonCarbon' as a target.  See
126 the files mac/README and mac/INSTALL for build instructions.
129 ** Building with -DENABLE_CHECKING does not automatically build with union
130 types any more.  Add -DUSE_LISP_UNION_TYPE if you want union types.
133 ** When pure storage overflows while dumping, Emacs now prints how
134 much pure storage it will approximately need.
136 ** The script etc/emacs-buffer.gdb can be used with gdb to retrieve the
137 contents of buffers from a core dump and save them to files easily, should
138 emacs crash.
141 ** The Emacs terminal emulation in term.el uses a different terminfo name.
142 The Emacs terminal emulation in term.el now uses "eterm-color" as its
143 terminfo name, since term.el now supports color.
146 ** Emacs Lisp source files are compressed by default if `gzip' is available.
149 ** All images used in Emacs have been consolidated in etc/images and subdirs.
150 See also the changes to `find-image', documented below.
153 * Startup Changes in Emacs 22.1
156 ** New command line option -Q or --quick.
157 This is like using -q --no-site-file, but in addition it also disables
158 the fancy startup screen.
161 ** New command line option -D or --basic-display.
162 Disables the menu-bar, the tool-bar, the scroll-bars, tool tips, and
163 the blinking cursor.
166 ** New command line option -nbc or --no-blinking-cursor disables
167 the blinking cursor on graphical terminals.
170 ** The option --script FILE runs Emacs in batch mode and loads FILE.
171 It is useful for writing Emacs Lisp shell script files, because they
172 can start with this line:
174    #!/usr/bin/emacs --script
177 ** The option --directory DIR now modifies `load-path' immediately.
178 Directories are added to the front of `load-path' in the order they
179 appear on the command line.  For example, with this command line:
181   emacs -batch -L .. -L /tmp --eval "(require 'foo)"
183 Emacs looks for library `foo' in the parent directory, then in /tmp, then
184 in the other directories in `load-path'.  (-L is short for --directory.)
187 ** The command line option --no-windows has been changed to
188 --no-window-system.  The old one still works, but is deprecated.
191 ** If the environment variable DISPLAY specifies an unreachable X display,
192 Emacs will now startup as if invoked with the --no-window-system option.
195 ** The -f option, used from the command line to call a function,
196 now reads arguments for the function interactively if it is
197 an interactively callable function.
200 ** When you specify a frame size with --geometry, the size applies to
201 all frames you create.  A position specified with --geometry only
202 affects the initial frame.
205 ** Emacs built for MS-Windows now behaves like Emacs on X does,
206 wrt its frame position: if you don't specify a position (in your
207 .emacs init file, in the Registry, or with the --geometry command-line
208 option), Emacs leaves the frame position to the Windows' window
209 manager.
212 ** Emacs can now be invoked in full-screen mode on a windowed display.
213 When Emacs is invoked on a window system, the new command-line options
214 `--fullwidth', `--fullheight', and `--fullscreen' produce a frame
215 whose width, height, or both width and height take up the entire
216 screen size.  (For now, this does not work with some window managers.)
219 ** Emacs now displays a splash screen by default even if command-line
220 arguments were given.  The new command-line option --no-splash
221 disables the splash screen; see also the variable
222 `inhibit-startup-message' (which is also aliased as
223 `inhibit-splash-screen').
226 ** The default is now to use a bitmap as the icon, so the command-line options
227 --icon-type, -i has been replaced with options --no-bitmap-icon, -nbi to turn
228 the bitmap icon off.
231 ** New user option `inhibit-startup-buffer-menu'.
232 When loading many files, for instance with `emacs *', Emacs normally
233 displays a buffer menu.  This option turns the buffer menu off.
236 ** Init file changes
237 If the init file ~/.emacs does not exist, Emacs will try
238 ~/.emacs.d/init.el or ~/.emacs.d/init.elc.  You can also put the shell
239 init file .emacs_SHELL under ~/.emacs.d.
242 ** Emacs now reads the standard abbrevs file ~/.abbrev_defs
243 automatically at startup, if it exists.  When Emacs offers to save
244 modified buffers, it saves the abbrevs too if they have changed.  It
245 can do this either silently or asking for confirmation first,
246 according to the value of `save-abbrevs'.
249 ** If the environment variable EMAIL is defined, Emacs now uses its value
250 to compute the default value of `user-mail-address', in preference to
251 concatenation of `user-login-name' with the name of your host machine.
254 * Incompatible Editing Changes in Emacs 22.1
257 ** M-g is now a prefix key.
258 M-g g and M-g M-g run goto-line.
259 M-g n and M-g M-n run next-error (like C-x `).
260 M-g p and M-g M-p run previous-error.
263 ** C-u M-g M-g switches to the most recent previous buffer,
264 and goes to the specified line in that buffer.
266 When goto-line starts to execute, if there's a number in the buffer at
267 point then it acts as the default argument for the minibuffer.
270 ** The old bindings C-M-delete and C-M-backspace have been deleted,
271 since there are situations where one or the other will shut down
272 the operating system or your X server.
275 ** line-move-ignore-invisible now defaults to t.
278 ** When the undo information of the current command gets really large
279 (beyond the value of `undo-outer-limit'), Emacs discards it and warns
280 you about it.
283 ** `apply-macro-to-region-lines' now operates on all lines that begin
284 in the region, rather than on all complete lines in the region.
287 ** A prefix argument is no longer required to repeat a jump to a
288 previous mark if you set `set-mark-command-repeat-pop' to t.  I.e. C-u
289 C-SPC C-SPC C-SPC ... cycles through the mark ring.  Use C-u C-u C-SPC
290 to set the mark immediately after a jump.
293 ** The info-search bindings on C-h C-f, C-h C-k and C-h C-i
294 have been moved to C-h F, C-h K and C-h S.
297 ** In incremental search, C-w is changed.  M-%, C-M-w and C-M-y are special.
299 See below under "incremental search changes".
302 ** C-x C-f RET, typing nothing in the minibuffer, is no longer a special case.
304 Since the default input is the current directory, this has the effect
305 of specifying the current directory.  Normally that means to visit the
306 directory with Dired.
308 You can get the old behavior by typing C-x C-f M-n RET, which fetches
309 the actual file name into the minibuffer.
312 ** The completion commands TAB, SPC and ? in the minibuffer apply only
313 to the text before point.  If there is text in the buffer after point,
314 it remains unchanged.
317 ** When Emacs prompts for file names, SPC no longer completes the file name.
318 This is so filenames with embedded spaces could be input without the
319 need to quote the space with a C-q.  The underlying changes in the
320 keymaps that are active in the minibuffer are described below under
321 "New keymaps for typing file names".
324 ** M-o now is the prefix key for setting text properties;
325 M-o M-o requests refontification.
328 ** You can now follow links by clicking Mouse-1 on the link.
330 See below for more details.
333 ** In Dired's ! command (dired-do-shell-command), `*' and `?' now
334 control substitution of the file names only when they are surrounded
335 by whitespace.  This means you can now use them as shell wildcards
336 too.  If you want to use just plain `*' as a wildcard, type `*""'; the
337 doublequotes make no difference in the shell, but they prevent
338 special treatment in `dired-do-shell-command'.
340 ** Adaptive filling misfeature removed.
341 It no longer treats `NNN.' or `(NNN)' as a prefix.
344 * Editing Changes in Emacs 22.1
347 ** !MEM FULL! at the start of the mode line indicates that Emacs
348 cannot get any more memory for Lisp data.  This often means it could
349 crash soon if you do things that use more memory.  On most systems,
350 killing buffers will get out of this state.  If killing buffers does
351 not make !MEM FULL! disappear, you should save your work and start
352 a new Emacs.
355 ** The max size of buffers and integers has been doubled.
356 On 32bit machines, it is now 256M (i.e. 268435455).
359 ** You can now switch buffers in a cyclic order with C-x C-left
360 (previous-buffer) and C-x C-right (next-buffer).  C-x left and
361 C-x right can be used as well.  The functions keep a different buffer
362 cycle for each frame, using the frame-local buffer list.
365 ** `undo-only' does an undo which does not redo any previous undo.
368 ** M-SPC (just-one-space) when given a numeric argument N
369 converts whitespace around point to N spaces.
372 ** C-x 5 C-o displays a specified buffer in another frame
373 but does not switch to that frame.  It's the multi-frame
374 analogue of C-x 4 C-o.
377 ** New commands to operate on pairs of open and close characters:
378 `insert-pair', `delete-pair', `raise-sexp'.
381 ** New command `kill-whole-line' kills an entire line at once.
382 By default, it is bound to C-S-<backspace>.
385 ** Yanking text now discards certain text properties that can
386 be inconvenient when you did not expect them.  The variable
387 `yank-excluded-properties' specifies which ones.  Insertion
388 of register contents and rectangles also discards these properties.
391 ** The default values of paragraph-start and indent-line-function have
392 been changed to reflect those used in Text mode rather than those used
393 in Indented-Text mode.
396 ** M-x setenv now expands environment variable references.
398 Substrings of the form `$foo' and `${foo}' in the specified new value
399 now refer to the value of environment variable foo.  To include a `$'
400 in the value, use `$$'.
403 ** `special-display-buffer-names' and `special-display-regexps' now
404 understand two new boolean pseudo-frame-parameters `same-frame' and
405 `same-window'.
408 ** The default for the paper size (variable ps-paper-type) is taken
409 from the locale.
411 ** Mark command changes:
414 *** A prefix argument is no longer required to repeat a jump to a
415 previous mark, i.e. C-u C-SPC C-SPC C-SPC ... cycles through the
416 mark ring.  Use C-u C-u C-SPC to set the mark immediately after a jump.
419 *** Marking commands extend the region when invoked multiple times.
421 If you type C-M-SPC (mark-sexp), M-@ (mark-word), M-h
422 (mark-paragraph), or C-M-h (mark-defun) repeatedly, the marked region
423 extends each time, so you can mark the next two sexps with M-C-SPC
424 M-C-SPC, for example.  This feature also works for
425 mark-end-of-sentence, if you bind that to a key.  It also extends the
426 region when the mark is active in Transient Mark mode, regardless of
427 the last command.  To start a new region with one of marking commands
428 in Transient Mark mode, you can deactivate the active region with C-g,
429 or set the new mark with C-SPC.
432 *** M-h (mark-paragraph) now accepts a prefix arg.
434 With positive arg, M-h marks the current and the following paragraphs;
435 if the arg is negative, it marks the current and the preceding
436 paragraphs.
439 *** Some commands do something special in Transient Mark mode when the
440 mark is active--for instance, they limit their operation to the
441 region.  Even if you don't normally use Transient Mark mode, you might
442 want to get this behavior from a particular command.  There are two
443 ways you can enable Transient Mark mode and activate the mark, for one
444 command only.
446 One method is to type C-SPC C-SPC; this enables Transient Mark mode
447 and sets the mark at point.  The other method is to type C-u C-x C-x.
448 This enables Transient Mark mode temporarily but does not alter the
449 mark or the region.
451 After these commands, Transient Mark mode remains enabled until you
452 deactivate the mark.  That typically happens when you type a command
453 that alters the buffer, but you can also deactivate the mark by typing
454 C-g.
457 *** Movement commands `beginning-of-buffer', `end-of-buffer',
458 `beginning-of-defun', `end-of-defun' do not set the mark if the mark
459 is already active in Transient Mark mode.
461 ** Help command changes:
464 *** Changes in C-h bindings:
466 C-h e displays the *Messages* buffer.
468 C-h d runs apropos-documentation.
470 C-h r visits the Emacs Manual in Info.
472 C-h followed by a control character is used for displaying files
473     that do not change:
475 C-h C-f displays the FAQ.
476 C-h C-e displays the PROBLEMS file.
478 The info-search bindings on C-h C-f, C-h C-k and C-h C-i
479 have been moved to C-h F, C-h K and C-h S.
481 C-h c, C-h k, C-h w, and C-h f now handle remapped interactive commands.
482 - C-h c and C-h k report the actual command (after possible remapping)
483   run by the key sequence.
484 - C-h w and C-h f on a command which has been remapped now report the
485   command it is remapped to, and the keys which can be used to run
486   that command.
488 For example, if C-k is bound to kill-line, and kill-line is remapped
489 to new-kill-line, these commands now report:
490 - C-h c and C-h k C-k reports:
491   C-k runs the command new-kill-line
492 - C-h w and C-h f kill-line reports:
493   kill-line is remapped to new-kill-line which is on C-k, <deleteline>
494 - C-h w and C-h f new-kill-line reports:
495   new-kill-line is on C-k
498 *** Help commands `describe-function' and `describe-key' now show function
499 arguments in lowercase italics on displays that support it.  To change the
500 default, customize face `help-argument-name' or redefine the function
501 `help-default-arg-highlight'.
504 *** C-h v and C-h f commands now include a hyperlink to the C source for
505 variables and functions defined in C (if the C source is available).
508 *** Help mode now only makes hyperlinks for faces when the face name is
509 preceded or followed by the word `face'.  It no longer makes
510 hyperlinks for variables without variable documentation, unless
511 preceded by one of the words `variable' or `option'.  It now makes
512 hyperlinks to Info anchors (or nodes) if the anchor (or node) name is
513 enclosed in single quotes and preceded by `info anchor' or `Info
514 anchor' (in addition to earlier `info node' and `Info node'). In
515 addition, it now makes hyperlinks to URLs as well if the URL is
516 enclosed in single quotes and preceded by `URL'.
519 *** The new command `describe-char' (C-u C-x =) pops up a buffer with
520 description various information about a character, including its
521 encodings and syntax, its text properties, how to input, overlays, and
522 widgets at point.  You can get more information about some of them, by
523 clicking on mouse-sensitive areas or moving there and pressing RET.
526 *** The command `list-text-properties-at' has been deleted because
527 C-u C-x = gives the same information and more.
530 *** New command `display-local-help' displays any local help at point
531 in the echo area.  It is bound to `C-h .'.  It normally displays the
532 same string that would be displayed on mouse-over using the
533 `help-echo' property, but, in certain cases, it can display a more
534 keyboard oriented alternative.
537 *** New user option `help-at-pt-display-when-idle' allows to
538 automatically show the help provided by `display-local-help' on
539 point-over, after suitable idle time.  The amount of idle time is
540 determined by the user option `help-at-pt-timer-delay' and defaults
541 to one second.  This feature is turned off by default.
544 *** The apropos commands now accept a list of words to match.
545 When more than one word is specified, at least two of those words must
546 be present for an item to match.  Regular expression matching is still
547 available.
550 *** The new option `apropos-sort-by-scores' causes the matching items
551 to be sorted according to their score.  The score for an item is a
552 number calculated to indicate how well the item matches the words or
553 regular expression that you entered to the apropos command.  The best
554 match is listed first, and the calculated score is shown for each
555 matching item.
557 ** Incremental Search changes:
560 *** Vertical scrolling is now possible within incremental search.
561 To enable this feature, customize the new user option
562 `isearch-allow-scroll'.  User written commands which satisfy stringent
563 constraints can be marked as "scrolling commands".  See the Emacs manual
564 for details.
567 *** C-w in incremental search now grabs either a character or a word,
568 making the decision in a heuristic way.  This new job is done by the
569 command `isearch-yank-word-or-char'.  To restore the old behavior,
570 bind C-w to `isearch-yank-word' in `isearch-mode-map'.
573 *** C-y in incremental search now grabs the next line if point is already
574 at the end of a line.
577 *** C-M-w deletes and C-M-y grabs a character in isearch mode.
578 Another method to grab a character is to enter the minibuffer by `M-e'
579 and to type `C-f' at the end of the search string in the minibuffer.
582 *** M-% typed in isearch mode invokes `query-replace' or
583 `query-replace-regexp' (depending on search mode) with the current
584 search string used as the string to replace.
587 *** Isearch no longer adds `isearch-resume' commands to the command
588 history by default.  To enable this feature, customize the new
589 user option `isearch-resume-in-command-history'.
591 ** Replace command changes:
594 *** New user option `query-replace-skip-read-only': when non-nil,
595 `query-replace' and related functions simply ignore
596 a match if part of it has a read-only property.
599 *** When used interactively, the commands `query-replace-regexp' and
600 `replace-regexp' allow \,expr to be used in a replacement string,
601 where expr is an arbitrary Lisp expression evaluated at replacement
602 time.  In many cases, this will be more convenient than using
603 `query-replace-regexp-eval'.  `\#' in a replacement string now refers
604 to the count of replacements already made by the replacement command.
605 All regular expression replacement commands now allow `\?' in the
606 replacement string to specify a position where the replacement string
607 can be edited for each replacement.
610 *** query-replace uses isearch lazy highlighting when the new user option
611 `query-replace-lazy-highlight' is non-nil.
614 *** The current match in query-replace is highlighted in new face
615 `query-replace' which by default inherits from isearch face.
617 ** Local variables lists:
620 *** In processing a local variables list, Emacs strips the prefix and
621 suffix from every line before processing all the lines.
624 *** Text properties in local variables.
626 A file local variables list cannot specify a string with text
627 properties--any specified text properties are discarded.
630 *** If the local variables list contains any variable-value pairs that
631 are not known to be safe, Emacs shows a prompt asking whether to apply
632 the local variables list as a whole.  In earlier versions, a prompt
633 was only issued for variables explicitly marked as risky (for the
634 definition of risky variables, see `risky-local-variable-p').
636 At the prompt, you can choose to save the contents of this local
637 variables list to `safe-local-variable-values'.  This new customizable
638 option is a list of variable-value pairs that are known to be safe.
639 Variables can also be marked as safe with the existing
640 `safe-local-variable' property (see `safe-local-variable-p').
641 However, risky variables will not be added to
642 `safe-local-variable-values' in this way.
645 *** The variable `enable-local-variables' controls how local variable
646 lists are handled.  t, the default, specifies the standard querying
647 behavior.  :safe means use only safe values, and ignore the rest.
648 :all means set all variables, whether or not they are safe.
649 nil means ignore them all.  Anything else means always query.
652 *** The variable `safe-local-eval-forms' specifies a list of forms that
653 are ok to evaluate when they appear in an `eval' local variables
654 specification.  Normally Emacs asks for confirmation before evaluating
655 such a form, but if the form appears in this list, no confirmation is
656 needed.
659 *** If a function has a non-nil `safe-local-eval-function' property,
660 that means it is ok to evaluate some calls to that function when it
661 appears in an `eval' local variables specification.  If the property
662 is t, then any form calling that function with constant arguments is
663 ok.  If the property is a function or list of functions, they are called
664 with the form as argument, and if any returns t, the form is ok to call.
666 If the form is not "ok to call", that means Emacs asks for
667 confirmation as before.
669 ** File operation changes:
672 *** Unquoted `$' in file names do not signal an error any more when
673 the corresponding environment variable does not exist.
674 Instead, the `$ENVVAR' text is left as is, so that `$$' quoting
675 is only rarely needed.
678 *** find-file-read-only visits multiple files in read-only mode,
679 when the file name contains wildcard characters.
682 *** find-alternate-file replaces the current file with multiple files,
683 when the file name contains wildcard characters.
686 *** Auto Compression mode is now enabled by default.
689 *** C-x C-f RET, typing nothing in the minibuffer, is no longer a special case.
691 Since the default input is the current directory, this has the effect
692 of specifying the current directory.  Normally that means to visit the
693 directory with Dired.
696 *** When you are root, and you visit a file whose modes specify
697 read-only, the Emacs buffer is now read-only too.  Type C-x C-q if you
698 want to make the buffer writable.  (As root, you can in fact alter the
699 file.)
702 *** C-x s (save-some-buffers) now offers an option `d' to diff a buffer
703 against its file, so you can see what changes you would be saving.
706 *** The commands copy-file, rename-file, make-symbolic-link and
707 add-name-to-file, when given a directory as the "new name" argument,
708 convert it to a file name by merging in the within-directory part of
709 the existing file's name.  (This is the same convention that shell
710 commands cp, mv, and ln follow.)  Thus, M-x copy-file RET ~/foo RET
711 /tmp RET copies ~/foo to /tmp/foo.
714 *** When used interactively, `format-write-file' now asks for confirmation
715 before overwriting an existing file, unless a prefix argument is
716 supplied.  This behavior is analogous to `write-file'.
719 *** The variable `auto-save-file-name-transforms' now has a third element that
720 controls whether or not the function `make-auto-save-file-name' will
721 attempt to construct a unique auto-save name (e.g. for remote files).
724 *** The new option `write-region-inhibit-fsync' disables calls to fsync
725 in `write-region'.  This can be useful on laptops to avoid spinning up
726 the hard drive upon each file save.  Enabling this variable may result
727 in data loss, use with care.
730 *** If the user visits a file larger than `large-file-warning-threshold',
731 Emacs asks for confirmation.
734 *** require-final-newline now has two new possible values:
736 `visit' means add a newline (as an undoable change) if it's needed
737 when visiting the file.
739 `visit-save' means add a newline (as an undoable change) if it's
740 needed when visiting the file, and also add a newline if it's needed
741 when saving the file.
744 *** The new option mode-require-final-newline controls how certain
745 major modes enable require-final-newline.  Any major mode that's
746 designed for a kind of file that should normally end in a newline
747 sets require-final-newline based on mode-require-final-newline.
748 So you can customize mode-require-final-newline to control what these
749 modes do.
751 ** Minibuffer changes:
754 *** The new file-name-shadow-mode is turned ON by default, so that when
755 entering a file name, any prefix which Emacs will ignore is dimmed.
758 *** There's a new face `minibuffer-prompt'.
759 Emacs adds this face to the list of text properties stored in the
760 variable `minibuffer-prompt-properties', which is used to display the
761 prompt string.
764 *** Enhanced visual feedback in `*Completions*' buffer.
766 Completions lists use faces to highlight what all completions
767 have in common and where they begin to differ.
769 The common prefix shared by all possible completions uses the face
770 `completions-common-part', while the first character that isn't the
771 same uses the face `completions-first-difference'.  By default,
772 `completions-common-part' inherits from `default', and
773 `completions-first-difference' inherits from `bold'.  The idea of
774 `completions-common-part' is that you can use it to make the common
775 parts less visible than normal, so that the rest of the differing
776 parts is, by contrast, slightly highlighted.
778 Above fontification is always done when listing completions is
779 triggered at minibuffer. If you want to fontify completions whose
780 listing is triggered at the other normal buffer, you have to pass
781 the common prefix of completions to `display-completion-list' as
782 its second argument.
785 *** File-name completion can now ignore specified directories.
786 If an element of the list in `completion-ignored-extensions' ends in a
787 slash `/', it indicates a subdirectory that should be ignored when
788 completing file names.  Elements of `completion-ignored-extensions'
789 which do not end in a slash are never considered when a completion
790 candidate is a directory.
793 *** The completion commands TAB, SPC and ? in the minibuffer apply only
794 to the text before point.  If there is text in the buffer after point,
795 it remains unchanged.
798 *** New user option `history-delete-duplicates'.
799 If set to t when adding a new history element, all previous identical
800 elements are deleted from the history list.
802 ** Redisplay changes:
805 *** Preemptive redisplay now adapts to current load and bandwidth.
807 To avoid preempting redisplay on fast computers, networks, and displays,
808 the arrival of new input is now performed at regular intervals during
809 redisplay.  The new variable `redisplay-preemption-period' specifies
810 the period; the default is to check for input every 0.1 seconds.
813 *** The mode line position information now comes before the major mode.
814 When the file is maintained under version control, that information
815 appears between the position information and the major mode.
818 *** New face `escape-glyph' highlights control characters and escape glyphs.
821 *** Non-breaking space and hyphens are now displayed with a special
822 face, either nobreak-space or escape-glyph.  You can turn this off or
823 specify a different mode by setting the variable `nobreak-char-display'.
826 *** The parameters of automatic hscrolling can now be customized.
827 The variable `hscroll-margin' determines how many columns away from
828 the window edge point is allowed to get before automatic hscrolling
829 will horizontally scroll the window.  The default value is 5.
831 The variable `hscroll-step' determines how many columns automatic
832 hscrolling scrolls the window when point gets too close to the
833 window edge.  If its value is zero, the default, Emacs scrolls the
834 window so as to center point.  If its value is an integer, it says how
835 many columns to scroll.  If the value is a floating-point number, it
836 gives the fraction of the window's width to scroll the window.
838 The variable `automatic-hscrolling' was renamed to
839 `auto-hscroll-mode'.  The old name is still available as an alias.
842 *** Moving or scrolling through images (and other lines) taller than
843 the window now works sensibly, by automatically adjusting the window's
844 vscroll property.
846 *** New customize option `overline-margin' controls the space between
847 overline and text.
849 *** New variable `x-underline-at-descent-line' controls the relative
850 position of the underline.  When set, it overrides the
851 `x-use-underline-position-properties' variables.
854 *** The new face `mode-line-inactive' is used to display the mode line
855 of non-selected windows.  The `mode-line' face is now used to display
856 the mode line of the currently selected window.
858 The new variable `mode-line-in-non-selected-windows' controls whether
859 the `mode-line-inactive' face is used.
862 *** You can now customize the use of window fringes.  To control this
863 for all frames, use M-x fringe-mode or the Show/Hide submenu of the
864 top-level Options menu, or customize the `fringe-mode' variable.  To
865 control this for a specific frame, use the command M-x
866 set-fringe-style.
869 *** Angle icons in the fringes can indicate the buffer boundaries.  In
870 addition, up and down arrow bitmaps in the fringe indicate which ways
871 the window can be scrolled.
873 This behavior is activated by setting the buffer-local variable
874 `indicate-buffer-boundaries' to a non-nil value.  The default value of
875 this variable is found in `default-indicate-buffer-boundaries'.
877 If value is `left' or `right', both angle and arrow bitmaps are
878 displayed in the left or right fringe, resp.
880 The value can also be an alist which specifies the presence and
881 position of each bitmap individually.
883 For example, ((top . left) (t .  right)) places the top angle bitmap
884 in left fringe, the bottom angle bitmap in right fringe, and both
885 arrow bitmaps in right fringe.  To show just the angle bitmaps in the
886 left fringe, but no arrow bitmaps, use ((top . left) (bottom . left)).
889 *** On window systems, lines which are exactly as wide as the window
890 (not counting the final newline character) are no longer broken into
891 two lines on the display (with just the newline on the second line).
892 Instead, the newline now "overflows" into the right fringe, and the
893 cursor will be displayed in the fringe when positioned on that newline.
895 The new user option 'overflow-newline-into-fringe' can be set to nil to
896 revert to the old behavior of continuing such lines.
899 *** When a window has display margin areas, the fringes are now
900 displayed between the margins and the buffer's text area, rather than
901 outside those margins.
904 *** A window can now have individual fringe and scroll-bar settings,
905 in addition to the individual display margin settings.
907 Such individual settings are now preserved when windows are split
908 horizontally or vertically, a saved window configuration is restored,
909 or when the frame is resized.
911 ** Cursor display changes:
914 *** On X, MS Windows, and Mac OS, the blinking cursor's "off" state is
915 now controlled by the variable `blink-cursor-alist'.
918 *** The X resource cursorBlink can be used to turn off cursor blinking.
921 *** Emacs can produce an underscore-like (horizontal bar) cursor.
922 The underscore cursor is set by putting `(cursor-type . hbar)' in
923 default-frame-alist.  It supports variable heights, like the `bar'
924 cursor does.
927 *** Display of hollow cursors now obeys the buffer-local value (if any)
928 of `cursor-in-non-selected-windows' in the buffer that the cursor
929 appears in.
932 *** The variable `cursor-in-non-selected-windows' can now be set to any
933 of the recognized cursor types.
936 *** On text terminals, the variable `visible-cursor' controls whether Emacs
937 uses the "very visible" cursor (the default) or the normal cursor.
939 ** New faces:
942 *** `mode-line-highlight' is the standard face indicating mouse sensitive
943 elements on mode-line (and header-line) like `highlight' face on text
944 areas.
946 *** `mode-line-buffer-id' is the standard face for buffer identification
947 parts of the mode line.
950 *** `shadow' face defines the appearance of the "shadowed" text, i.e.
951 the text which should be less noticeable than the surrounding text.
952 This can be achieved by using shades of grey in contrast with either
953 black or white default foreground color.  This generic shadow face
954 allows customization of the appearance of shadowed text in one place,
955 so package-specific faces can inherit from it.
958 *** `vertical-border' face is used for the vertical divider between windows.
960 ** Font-Lock changes:
963 *** M-o now is the prefix key for setting text properties;
964 M-o M-o requests refontification.
967 *** All modes now support using M-x font-lock-mode to toggle
968 fontification, even those such as Occur, Info, and comint-derived
969 modes that do their own fontification in a special way.
971 The variable `Info-fontify' is no longer applicable; to disable
972 fontification in Info, remove `turn-on-font-lock' from
973 `Info-mode-hook'.
976 *** Font-Lock mode: in major modes such as Lisp mode, where some Emacs
977 features assume that an open-paren in column 0 is always outside of
978 any string or comment, Font-Lock now highlights any such open-paren in
979 bold-red if it is inside a string or a comment, to indicate that it
980 can cause trouble.  You should rewrite the string or comment so that
981 the open-paren is not in column 0.
984 *** New standard font-lock face `font-lock-preprocessor-face'.
987 *** New standard font-lock face `font-lock-comment-delimiter-face'.
990 *** Easy to overlook single character negation can now be font-locked.
991 You can use the new variable `font-lock-negation-char-face' and the face of
992 the same name to customize this.  Currently the cc-modes, sh-script-mode,
993 cperl-mode and make-mode support this.
996 *** The default settings for JIT stealth lock parameters are changed.
997 The default value for the user option jit-lock-stealth-time is now 16
998 instead of 3, and the default value of jit-lock-stealth-nice is now
999 0.5 instead of 0.125.  The new defaults should lower the CPU usage
1000 when Emacs is fontifying in the background.
1003 *** jit-lock can now be delayed with `jit-lock-defer-time'.
1005 If this variable is non-nil, its value should be the amount of Emacs
1006 idle time in seconds to wait before starting fontification.  For
1007 example, if you set `jit-lock-defer-time' to 0.25, fontification will
1008 only happen after 0.25s of idle time.
1011 *** contextual refontification is now separate from stealth fontification.
1013 jit-lock-defer-contextually is renamed jit-lock-contextually and
1014 jit-lock-context-time determines the delay after which contextual
1015 refontification takes place.
1017 ** Menu support:
1020 *** A menu item "Show/Hide" was added to the top-level menu "Options".
1021 This menu allows you to turn various display features on and off (such
1022 as the fringes, the tool bar, the speedbar, and the menu bar itself).
1023 You can also move the vertical scroll bar to either side here or turn
1024 it off completely.  There is also a menu-item to toggle displaying of
1025 current date and time, current line and column number in the mode-line.
1028 *** Speedbar has moved from the "Tools" top level menu to "Show/Hide".
1031 *** You can exit dialog windows and menus by typing C-g.
1034 *** The menu item "Open File..." has been split into two items, "New File..."
1035 and "Open File...".  "Open File..." now opens only existing files.  This is
1036 to support existing GUI file selection dialogs better.
1039 *** The file selection dialog for Gtk+, Mac, W32 and Motif/Lesstif can be
1040 disabled by customizing the variable `use-file-dialog'.
1043 *** The pop up menus for Lucid now stay up if you do a fast click and can
1044 be navigated with the arrow keys (like Gtk+, Mac and W32).
1047 *** The menu bar for Motif/Lesstif/Lucid/Gtk+ can be navigated with keys.
1048 Pressing F10 shows the first menu in the menu bar.  Navigation is done with
1049 the arrow keys, select with the return key and cancel with the escape keys.
1052 *** The Lucid menus can display multilingual text in your locale.  You have
1053 to explicitly specify a fontSet resource for this to work, for example
1054 `-xrm "Emacs*fontSet:  -*-helvetica-medium-r-*--*-120-*-*-*-*-*-*,*"'.
1057 *** Dialogs for Lucid/Athena and Lesstif/Motif now pops down when pressing
1058 ESC, like they do for Gtk+, Mac and W32.
1061 *** For the Gtk+ version, you can make Emacs use the old file dialog
1062 by setting the variable `x-gtk-use-old-file-dialog' to t.  Default is to use
1063 the new dialog.
1065 ** Mouse changes:
1068 *** If you set the new variable `mouse-autoselect-window' to a non-nil
1069 value, windows are automatically selected as you move the mouse from
1070 one Emacs window to another, even within a frame.  A minibuffer window
1071 can be selected only when it is active.
1074 *** On X, when the window manager requires that you click on a frame to
1075 select it (give it focus), the selected window and cursor position
1076 normally changes according to the mouse click position.  If you set
1077 the variable x-mouse-click-focus-ignore-position to t, the selected
1078 window and cursor position do not change when you click on a frame
1079 to give it focus.
1082 *** You can now follow links by clicking Mouse-1 on the link.
1084 Traditionally, Emacs uses a Mouse-1 click to set point and a Mouse-2
1085 click to follow a link, whereas most other applications use a Mouse-1
1086 click for both purposes, depending on whether you click outside or
1087 inside a link.  Now the behavior of a Mouse-1 click has been changed
1088 to match this context-sentitive dual behavior.  (If you prefer the old
1089 behavior, set the user option `mouse-1-click-follows-link' to nil.)
1091 Depending on the current mode, a Mouse-2 click in Emacs can do much
1092 more than just follow a link, so the new Mouse-1 behavior is only
1093 activated for modes which explicitly mark a clickable text as a "link"
1094 (see the new function `mouse-on-link-p' for details).  The Lisp
1095 packages that are included in release 22.1 have been adapted to do
1096 this, but external packages may not yet support this.  However, there
1097 is no risk in using such packages, as the worst thing that could
1098 happen is that you get the original Mouse-1 behavior when you click
1099 on a link, which typically means that you set point where you click.
1101 If you want to get the original Mouse-1 action also inside a link, you
1102 just need to press the Mouse-1 button a little longer than a normal
1103 click (i.e. press and hold the Mouse-1 button for half a second before
1104 you release it).
1106 Dragging the Mouse-1 inside a link still performs the original
1107 drag-mouse-1 action, typically copy the text.
1109 You can customize the new Mouse-1 behavior via the new user options
1110 `mouse-1-click-follows-link' and `mouse-1-click-in-non-selected-windows'.
1113 *** Emacs normally highlights mouse sensitive text whenever the mouse
1114 is over the text.  By setting the new variable `mouse-highlight', you
1115 can optionally enable mouse highlighting only after you move the
1116 mouse, so that highlighting disappears when you press a key.  You can
1117 also disable mouse highlighting.
1120 *** You can now customize if selecting a region by dragging the mouse
1121 shall not copy the selected text to the kill-ring by setting the new
1122 variable mouse-drag-copy-region to nil.
1125 *** mouse-wheels can now scroll a specific fraction of the window
1126 (rather than a fixed number of lines) and the scrolling is `progressive'.
1129 *** Emacs ignores mouse-2 clicks while the mouse wheel is being moved.
1131 People tend to push the mouse wheel (which counts as a mouse-2 click)
1132 unintentionally while turning the wheel, so these clicks are now
1133 ignored.  You can customize this with the mouse-wheel-click-event and
1134 mouse-wheel-inhibit-click-time variables.
1137 *** Under X, mouse-wheel-mode is turned on by default.
1139 ** Multilingual Environment (Mule) changes:
1141 *** You can disable character translation for a file using the -*-
1142 construct.  Include `enable-character-translation: nil' inside the
1143 -*-...-*- to disable any character translation that may happen by
1144 various global and per-coding-system translation tables.  You can also
1145 specify it in a local variable list at the end of the file.  For
1146 shortcut, instead of using this long variable name, you can append the
1147 character "!" at the end of coding-system name specified in -*-
1148 construct or in a local variable list.  For example, if a file has the
1149 following header, it is decoded by the coding system `iso-latin-1'
1150 without any character translation:
1151 ;; -*- coding: iso-latin-1!; -*-
1154 *** Language environment and various default coding systems are setup
1155 more correctly according to the current locale name.  If the locale
1156 name doesn't specify a charset, the default is what glibc defines.
1157 This change can result in using the different coding systems as
1158 default in some locale (e.g. vi_VN).
1161 *** The keyboard-coding-system is now automatically set based on your
1162 current locale settings if you are not using a window system.  This
1163 can mean that the META key doesn't work but generates non-ASCII
1164 characters instead, depending on how the terminal (or terminal
1165 emulator) works.  Use `set-keyboard-coding-system' (or customize
1166 keyboard-coding-system) if you prefer META to work (the old default)
1167 or if the locale doesn't describe the character set actually generated
1168 by the keyboard.  See Info node `Single-Byte Character Support'.
1171 *** The new command `revert-buffer-with-coding-system' (C-x RET r)
1172 revisits the current file using a coding system that you specify.
1175 *** New command `recode-region' decodes the region again by a specified
1176 coding system.
1179 *** The new command `recode-file-name' changes the encoding of the name
1180 of a file.
1183 *** New command `ucs-insert' inserts a character specified by its
1184 unicode.
1187 *** The new command `set-file-name-coding-system' (C-x RET F) sets
1188 coding system for encoding and decoding file names.  A new menu item
1189 (Options->Mule->Set Coding Systems->For File Name) invokes this
1190 command.
1193 *** New command quail-show-key shows what key (or key sequence) to type
1194 in the current input method to input a character at point.
1197 *** Limited support for character `unification' has been added.
1198 Emacs now knows how to translate between different representations of
1199 the same characters in various Emacs charsets according to standard
1200 Unicode mappings.  This applies mainly to characters in the ISO 8859
1201 sets plus some other 8-bit sets, but can be extended.  For instance,
1202 translation works amongst the Emacs ...-iso8859-... charsets and the
1203 mule-unicode-... ones.
1205 By default this translation happens automatically on encoding.
1206 Self-inserting characters are translated to make the input conformant
1207 with the encoding of the buffer in which it's being used, where
1208 possible.
1210 You can force a more complete unification with the user option
1211 unify-8859-on-decoding-mode.  That maps all the Latin-N character sets
1212 into Unicode characters (from the latin-iso8859-1 and
1213 mule-unicode-0100-24ff charsets) on decoding.  Note that this mode
1214 will often effectively clobber data with an iso-2022 encoding.
1217 *** There is support for decoding Greek and Cyrillic characters into
1218 either Unicode (the mule-unicode charsets) or the iso-8859 charsets,
1219 when possible.  The latter are more space-efficient.  This is
1220 controlled by user option utf-fragment-on-decoding.
1223 *** New language environments: French, Ukrainian, Tajik,
1224 Bulgarian, Belarusian, Ukrainian, UTF-8, Windows-1255, Welsh, Latin-6,
1225 Latin-7, Lithuanian, Latvian, Swedish, Slovenian, Croatian, Georgian,
1226 Italian, Russian, Malayalam, Tamil, Russian, Chinese-EUC-TW.  (Set up
1227 automatically according to the locale.)
1230 *** New input methods: latin-alt-postfix, latin-postfix, latin-prefix,
1231 ukrainian-computer, belarusian, bulgarian-bds, russian-computer,
1232 vietnamese-telex, lithuanian-numeric, lithuanian-keyboard,
1233 latvian-keyboard, welsh, georgian, rfc1345, ucs, sgml,
1234 bulgarian-phonetic, dutch, slovenian, croatian, malayalam-inscript,
1235 tamil-inscript.
1238 *** New input method chinese-sisheng for inputting Chinese Pinyin
1239 characters.
1242 *** Improved Thai support.  A new minor mode `thai-word-mode' (which is
1243 automatically activated if you select Thai as a language
1244 environment) changes key bindings of most word-oriented commands to
1245 versions which recognize Thai words.  Affected commands are
1246     M-f     (forward-word)
1247     M-b     (backward-word)
1248     M-d     (kill-word)
1249     M-DEL   (backward-kill-word)
1250     M-t     (transpose-words)
1251     M-q     (fill-paragraph)
1254 *** Indian support has been updated.
1255 The in-is13194 coding system is now Unicode-based.  CDAC fonts are
1256 assumed.  There is a framework for supporting various
1257 Indian scripts, but currently only Devanagari, Malayalam and Tamil are
1258 supported.
1261 *** A UTF-7 coding system is available in the library `utf-7'.
1264 *** The utf-8/16 coding systems have been enhanced.
1265 By default, untranslatable utf-8 sequences are simply composed into
1266 single quasi-characters.  User option `utf-translate-cjk-mode' (it is
1267 turned on by default) arranges to translate many utf-8 CJK character
1268 sequences into real Emacs characters in a similar way to the Mule-UCS
1269 system.  As this loads a fairly big data on demand, people who are not
1270 interested in CJK characters may want to customize it to nil.
1271 You can augment/amend the CJK translation via hash tables
1272 `ucs-mule-cjk-to-unicode' and `ucs-unicode-to-mule-cjk'.  The utf-8
1273 coding system now also encodes characters from most of Emacs's
1274 one-dimensional internal charsets, specifically the ISO-8859 ones.
1275 The utf-16 coding system is affected similarly.
1278 *** A new coding system `euc-tw' has been added for traditional Chinese
1279 in CNS encoding; it accepts both Big 5 and CNS as input; on saving,
1280 Big 5 is then converted to CNS.
1283 *** Many new coding systems are available in the `code-pages' library.
1284 These include complete versions of most of those in codepage.el, based
1285 on Unicode mappings.  `codepage-setup' is now obsolete and is used
1286 only in the MS-DOS port of Emacs.  All coding systems defined in
1287 `code-pages' are auto-loaded.
1290 *** New variable `utf-translate-cjk-unicode-range' controls which
1291 Unicode characters to translate in `utf-translate-cjk-mode'.
1294 *** iso-10646-1 (`Unicode') fonts can be used to display any range of
1295 characters encodable by the utf-8 coding system.  Just specify the
1296 fontset appropriately.
1298 ** Customize changes:
1301 *** Custom themes are collections of customize options.  Create a
1302 custom theme with M-x customize-create-theme.  Use M-x load-theme to
1303 load and enable a theme, and M-x disable-theme to disable it.  Use M-x
1304 enable-theme to enable a disabled theme.
1307 *** The commands M-x customize-face and M-x customize-face-other-window
1308 now look at the character after point.  If a face or faces are
1309 specified for that character, the commands by default customize those
1310 faces.
1313 *** The face-customization widget has been reworked to be less confusing.
1314 In particular, when you enable a face attribute using the corresponding
1315 check-box, there's no longer a redundant `*' option in value selection
1316 for that attribute; the values you can choose are only those which make
1317 sense for the attribute.  When an attribute is de-selected by unchecking
1318 its check-box, then the (now ignored, but still present temporarily in
1319 case you re-select the attribute) value is hidden.
1322 *** When you set or reset a variable's value in a Customize buffer,
1323 the previous value becomes the "backup value" of the variable.
1324 You can go back to that backup value by selecting "Use Backup Value"
1325 under the "[State]" button.
1327 ** Buffer Menu changes:
1330 *** New command `Buffer-menu-toggle-files-only' toggles display of file
1331 buffers only in the Buffer Menu.  It is bound to T in Buffer Menu
1332 mode.
1335 *** `buffer-menu' and `list-buffers' now list buffers whose names begin
1336 with a space, when those buffers are visiting files.  Normally buffers
1337 whose names begin with space are omitted.
1340 *** The new options `buffers-menu-show-directories' and
1341 `buffers-menu-show-status' let you control how buffers are displayed
1342 in the menu dropped down when you click "Buffers" from the menu bar.
1344 `buffers-menu-show-directories' controls whether the menu displays
1345 leading directories as part of the file name visited by the buffer.
1346 If its value is `unless-uniquify', the default, directories are
1347 shown unless uniquify-buffer-name-style' is non-nil.  The value of nil
1348 and t turn the display of directories off and on, respectively.
1350 `buffers-menu-show-status' controls whether the Buffers menu includes
1351 the modified and read-only status of the buffers.  By default it is
1352 t, and the status is shown.
1354 Setting these variables directly does not take effect until next time
1355 the Buffers menu is regenerated.
1357 ** Dired mode:
1360 *** New faces dired-header, dired-mark, dired-marked, dired-flagged,
1361 dired-ignored, dired-directory, dired-symlink, dired-warning
1362 introduced for Dired mode instead of font-lock faces.
1365 *** New Dired command `dired-compare-directories' marks files
1366 with different file attributes in two dired buffers.
1369 *** New Dired command `dired-do-touch' (bound to T) changes timestamps
1370 of marked files with the value entered in the minibuffer.
1373 *** The Dired command `dired-goto-file' is now bound to j, not M-g.
1374 This is to avoid hiding the global key binding of M-g.
1377 *** In Dired's ! command (dired-do-shell-command), `*' and `?' now
1378 control substitution of the file names only when they are surrounded
1379 by whitespace.  This means you can now use them as shell wildcards
1380 too.  If you want to use just plain `*' as a wildcard, type `*""'; the
1381 double quotes make no difference in the shell, but they prevent
1382 special treatment in `dired-do-shell-command'.
1385 *** In Dired, the w command now stores the current line's file name
1386 into the kill ring.  With a zero prefix arg, it stores the absolute file name.
1389 *** In Dired-x, Omitting files is now a minor mode, dired-omit-mode.
1391 The mode toggling command is bound to M-o.  A new command
1392 dired-mark-omitted, bound to * O, marks omitted files.  The variable
1393 dired-omit-files-p is obsoleted, use the mode toggling function
1394 instead.
1397 *** The variables dired-free-space-program and dired-free-space-args
1398 have been renamed to directory-free-space-program and
1399 directory-free-space-args, and they now apply whenever Emacs puts a
1400 directory listing into a buffer.
1402 ** Comint changes:
1405 *** The comint prompt can now be made read-only, using the new user
1406 option `comint-prompt-read-only'.  This is not enabled by default,
1407 except in IELM buffers.  The read-only status of IELM prompts can be
1408 controlled with the new user option `ielm-prompt-read-only', which
1409 overrides `comint-prompt-read-only'.
1411 The new commands `comint-kill-whole-line' and `comint-kill-region'
1412 support editing comint buffers with read-only prompts.
1414 `comint-kill-whole-line' is like `kill-whole-line', but ignores both
1415 read-only and field properties.  Hence, it always kill entire
1416 lines, including any prompts.
1418 `comint-kill-region' is like `kill-region', except that it ignores
1419 read-only properties, if it is safe to do so.  This means that if any
1420 part of a prompt is deleted, then the entire prompt must be deleted
1421 and that all prompts must stay at the beginning of a line.  If this is
1422 not the case, then `comint-kill-region' behaves just like
1423 `kill-region' if read-only properties are involved: it copies the text
1424 to the kill-ring, but does not delete it.
1427 *** The new command `comint-insert-previous-argument' in comint-derived
1428 modes (shell-mode, etc.) inserts arguments from previous command lines,
1429 like bash's `ESC .' binding.  It is bound by default to `C-c .', but
1430 otherwise behaves quite similarly to the bash version.
1433 *** `comint-use-prompt-regexp-instead-of-fields' has been renamed
1434 `comint-use-prompt-regexp'.  The old name has been kept as an alias,
1435 but declared obsolete.
1438 *** The EMACS environment variable now defaults to Emacs's absolute
1439 file name, instead of to "t".
1441 ** M-x Compile changes:
1444 *** M-x compile has become more robust and reliable
1446 Quite a few more kinds of messages are recognized.  Messages that are
1447 recognized as warnings or informational come in orange or green, instead of
1448 red.  Informational messages are by default skipped with `next-error'
1449 (controlled by `compilation-skip-threshold').
1451 Location data is collected on the fly as the *compilation* buffer changes.
1452 This means you could modify messages to make them point to different files.
1453 This also means you can not go to locations of messages you may have deleted.
1455 The variable `compilation-error-regexp-alist' has now become customizable.  If
1456 you had added your own regexps to this, you'll probably need to include a
1457 leading `^', otherwise they'll match anywhere on a line.  There is now also a
1458 `compilation-mode-font-lock-keywords' and it nicely handles all the checks
1459 that configure outputs and -o options so you see at a glance where you are.
1461 The new file etc/compilation.txt gives examples of each type of message.
1464 *** New user option `compilation-environment'.
1465 This option allows you to specify environment variables for inferior
1466 compilation processes without affecting the environment that all
1467 subprocesses inherit.
1470 *** New user option `compilation-disable-input'.
1471 If this is non-nil, send end-of-file as compilation process input.
1474 *** New options `next-error-highlight' and `next-error-highlight-no-select'
1475 specify the method of highlighting of the corresponding source line
1476 in new face `next-error'.
1479 *** A new minor mode `next-error-follow-minor-mode' can be used in
1480 compilation-mode, grep-mode, occur-mode, and diff-mode (i.e. all the
1481 modes that can use `next-error').  In this mode, cursor motion in the
1482 buffer causes automatic display in another window of the corresponding
1483 matches, compilation errors, etc.  This minor mode can be toggled with
1484 C-c C-f.
1487 *** When the left fringe is displayed, an arrow points to current message in
1488 the compilation buffer.
1491 *** The new variable `compilation-context-lines' controls lines of leading
1492 context before the current message.  If nil and the left fringe is displayed,
1493 it doesn't scroll the compilation output window.  If there is no left fringe,
1494 no arrow is displayed and a value of nil means display the message at the top
1495 of the window.
1498 *** The EMACS environment variable now defaults to Emacs's absolute
1499 file name, instead of to "t".
1501 ** Occur mode changes:
1504 *** In the *Occur* buffer, `o' switches to it in another window, and
1505 C-o displays the current line's occurrence in another window without
1506 switching to it.
1509 *** You can now use next-error (C-x `) and previous-error to advance to
1510 the next/previous matching line found by M-x occur.
1513 *** The new command `multi-occur' is just like `occur', except it can
1514 search multiple buffers.  There is also a new command
1515 `multi-occur-in-matching-buffers' which allows you to specify the
1516 buffers to search by their filenames or buffer names.  Internally,
1517 Occur mode has been rewritten, and now uses font-lock, among other
1518 changes.
1520 ** Grep changes:
1523 *** Grep has been decoupled from compilation mode setup.
1525 There's a new separate package grep.el, with its own submenu and
1526 customization group.
1529 *** `grep-find' is now also available under the name `find-grep' where
1530 people knowing `find-grep-dired' would probably expect it.
1533 *** New commands `lgrep' (local grep) and `rgrep' (recursive grep) are
1534 more user-friendly versions of `grep' and `grep-find', which prompt
1535 separately for the regular expression to match, the files to search,
1536 and the base directory for the search (rgrep only).  Case sensitivitivy
1537 of the search is controlled by the current value of `case-fold-search'.
1539 These commands build the shell commands based on the new variables
1540 `grep-template' (lgrep) and `grep-find-template' (rgrep).
1542 The files to search can use aliases defined in `grep-files-aliases'.
1544 Subdirectories listed in `grep-find-ignored-directories' such as those
1545 typically used by various version control systems, like CVS and arch,
1546 are automatically skipped by `rgrep'.
1549 *** The grep commands provide highlighting support.
1551 Hits are fontified in green, and hits in binary files in orange.  Grep buffers
1552 can be saved and automatically revisited.
1555 *** The new variables `grep-window-height' and `grep-scroll-output' override
1556 the corresponding compilation mode settings, for grep commands only.
1559 *** New option `grep-highlight-matches' highlights matches in *grep*
1560 buffer.  It uses a special feature of some grep programs which accept
1561 --color option to output markers around matches.  When going to the next
1562 match with `next-error' the exact match is highlighted in the source
1563 buffer.  Otherwise, if `grep-highlight-matches' is nil, the whole
1564 source line is highlighted.
1567 *** New key bindings in grep output window:
1568 SPC and DEL scrolls window up and down.  C-n and C-p moves to next and
1569 previous match in the grep window.  RET jumps to the source line of
1570 the current match.  `n' and `p' shows next and previous match in
1571 other window, but does not switch buffer.  `{' and `}' jumps to the
1572 previous or next file in the grep output.  TAB also jumps to the next
1573 file.
1576 *** M-x grep now tries to avoid appending `/dev/null' to the command line
1577 by using GNU grep `-H' option instead.  M-x grep automatically
1578 detects whether this is possible or not the first time it is invoked.
1579 When `-H' is used, the grep command line supplied by the user is passed
1580 unchanged to the system to execute, which allows more complicated
1581 command lines to be used than was possible before.
1583 ** X Windows Support:
1586 *** Emacs now supports drag and drop for X.  Dropping a file on a window
1587    opens it, dropping text inserts the text.  Dropping a file on a dired
1588    buffer copies or moves the file to that directory.
1591 *** Under X11, it is possible to swap Alt and Meta (and Super and Hyper).
1592 The new variables `x-alt-keysym', `x-hyper-keysym', `x-meta-keysym',
1593 and `x-super-keysym' can be used to choose which keysyms Emacs should
1594 use for the modifiers.  For example, the following two lines swap
1595 Meta and Alt:
1596     (setq x-alt-keysym 'meta)
1597     (setq x-meta-keysym 'alt)
1600 *** The X resource useXIM can be used to turn off use of XIM, which can
1601 speed up Emacs with slow networking to the X server.
1603 If the configure option `--without-xim' was used to turn off use of
1604 XIM by default, the X resource useXIM can be used to turn it on.
1607 *** The new variable `x-select-request-type' controls how Emacs
1608 requests X selection.  The default value is nil, which means that
1609 Emacs requests X selection with types COMPOUND_TEXT and UTF8_STRING,
1610 and use the more appropriately result.
1613 *** The scrollbar under LessTif or Motif has a smoother drag-scrolling.
1614 On the other hand, the size of the thumb does not represent the actual
1615 amount of text shown any more (only a crude approximation of it).
1617 ** Xterm support:
1620 *** If you enable Xterm Mouse mode, Emacs will respond to mouse clicks
1621 on the mode line, header line and display margin, when run in an xterm.
1624 *** Improved key bindings support when running in an xterm.
1625 When emacs is running in an xterm more key bindings are available. The
1626 following should work:
1627 {C,S,C-S,A}-{right,left,up,down,prior,next,delete,insert,F1-12}.
1628 These key bindings work on xterm from X.org 6.8, they might not work on
1629 some older versions of xterm, or on some proprietary versions.
1631 ** Character terminal color support changes:
1634 *** The new command-line option --color=MODE lets you specify a standard
1635 mode for a tty color support.  It is meant to be used on character
1636 terminals whose capabilities are not set correctly in the terminal
1637 database, or with terminal emulators which support colors, but don't
1638 set the TERM environment variable to a name of a color-capable
1639 terminal.  "emacs --color" uses the same color commands as GNU `ls'
1640 when invoked with "ls --color", so if your terminal can support colors
1641 in "ls --color", it will support "emacs --color" as well.  See the
1642 user manual for the possible values of the MODE parameter.
1645 *** Emacs now supports several character terminals which provide more
1646 than 8 colors.  For example, for `xterm', 16-color, 88-color, and
1647 256-color modes are supported.  Emacs automatically notes at startup
1648 the extended number of colors, and defines the appropriate entries for
1649 all of these colors.
1652 *** Emacs now uses the full range of available colors for the default
1653 faces when running on a color terminal, including 16-, 88-, and
1654 256-color xterms.  This means that when you run "emacs -nw" on an
1655 88-color or 256-color xterm, you will see essentially the same face
1656 colors as on X.
1659 *** There's a new support for colors on `rxvt' terminal emulator.
1661 * New Modes and Packages in Emacs 22.1
1663 ** ERC is now part of the Emacs distribution.
1665 ERC is a powerful, modular, and extensible IRC client for Emacs.
1667 To see what modules are available, type
1668 M-x customize-option erc-modules RET.
1670 To start an IRC session, type M-x erc-select, and follow the prompts
1671 for server, port, and nick.
1674 ** Rcirc is now part of the Emacs distribution.
1676 Rcirc is an Internet relay chat (IRC) client.  It supports
1677 simultaneous connections to multiple IRC servers.  Each discussion
1678 takes place in its own buffer.  For each connection you can join
1679 several channels (many-to-many) and participate in private
1680 (one-to-one) chats.  Both channel and private chats are contained in
1681 separate buffers.
1683 To start an IRC session, type M-x irc, and follow the prompts for
1684 server, port, nick and initial channels.
1687 ** Newsticker is now part of the Emacs distribution.
1689 Newsticker asynchronously retrieves headlines (RSS) from a list of news
1690 sites, prepares these headlines for reading, and allows for loading the
1691 corresponding articles in a web browser.  Its documentation is in a
1692 separate manual.
1695 ** savehist saves minibuffer histories between sessions.
1696 To use this feature, turn on savehist-mode in your `.emacs' file.
1699 ** Filesets are collections of files.  You can define a fileset in
1700 various ways, such as based on a directory tree or based on
1701 program files that include other program files.
1703 Once you have defined a fileset, you can perform various operations on
1704 all the files in it, such as visiting them or searching and replacing
1705 in them.
1708 ** Calc is now part of the Emacs distribution.
1710 Calc is an advanced desk calculator and mathematical tool written in
1711 Emacs Lisp.  The prefix for Calc has been changed to `C-x *' and Calc
1712 can be started with `C-x * *'.  The Calc manual is separate from the
1713 Emacs manual; within Emacs, type "C-h i m calc RET" to read the
1714 manual.  A reference card is available in `etc/calccard.tex' and
1715 `etc/calccard.ps'.
1718 ** The new package ibuffer provides a powerful, completely
1719 customizable replacement for buff-menu.el.
1722 ** Ido mode is now part of the Emacs distribution.
1724 The ido (interactively do) package is an extension of the iswitchb
1725 package to do interactive opening of files and directories in addition
1726 to interactive buffer switching.  Ido is a superset of iswitchb (with
1727 a few exceptions), so don't enable both packages.
1730 ** Image files are normally visited in Image mode, which lets you toggle
1731 between viewing the image and viewing the text using C-c C-c.
1734 ** CUA mode is now part of the Emacs distribution.
1736 The new cua package provides CUA-like keybindings using C-x for
1737 cut (kill), C-c for copy, C-v for paste (yank), and C-z for undo.
1738 With cua, the region can be set and extended using shifted movement
1739 keys (like pc-selection-mode) and typed text replaces the active
1740 region (like delete-selection-mode).  Do not enable these modes with
1741 cua-mode.  Customize the variable `cua-mode' to enable cua.
1743 In addition, cua provides unified rectangle support with visible
1744 rectangle highlighting: Use C-return to start a rectangle, extend it
1745 using the movement commands (or mouse-3), and cut or copy it using C-x
1746 or C-c (using C-w and M-w also works).
1748 Use M-o and M-c to `open' or `close' the rectangle, use M-b or M-f, to
1749 fill it with blanks or another character, use M-u or M-l to upcase or
1750 downcase the rectangle, use M-i to increment the numbers in the
1751 rectangle, use M-n to fill the rectangle with a numeric sequence (such
1752 as 10 20 30...), use M-r to replace a regexp in the rectangle, and use
1753 M-' or M-/ to restrict command on the rectangle to a subset of the
1754 rows.  See the commentary in cua-base.el for more rectangle commands.
1756 Cua also provides unified support for registers:  Use a numeric
1757 prefix argument between 0 and 9, i.e. M-0 .. M-9, for C-x, C-c, and
1758 C-v to cut or copy into register 0-9, or paste from register 0-9.
1760 The last text deleted (not killed) is automatically stored in
1761 register 0.  This includes text deleted by typing text.
1763 Finally, cua provides a global mark which is set using S-C-space.
1764 When the global mark is active, any text which is cut or copied is
1765 automatically inserted at the global mark position.  See the
1766 commentary in cua-base.el for more global mark related commands.
1768 The features of cua also works with the standard emacs bindings for
1769 kill, copy, yank, and undo.  If you want to use cua mode, but don't
1770 want the C-x, C-c, C-v, and C-z bindings, you can customize the
1771 `cua-enable-cua-keys' variable.
1773 Note: This version of cua mode is not backwards compatible with older
1774 versions of cua.el and cua-mode.el.  To ensure proper operation, you
1775 must remove older versions of cua.el or cua-mode.el as well as the
1776 loading and customization of those packages from the .emacs file.
1779 ** Org mode is now part of the Emacs distribution
1781 Org mode is a mode for keeping notes, maintaining ToDo lists, and
1782 doing project planning with a fast and effective plain-text system.
1783 It also contains a plain-text table editor with spreadsheet-like
1784 capabilities.
1786 The Org mode table editor can be integrated into any major mode by
1787 activating the minor Orgtbl-mode.
1789 The documentation for org-mode is in a separate manual; within Emacs,
1790 type "C-h i m org RET" to read that manual.  A reference card is
1791 available in `etc/orgcard.tex' and `etc/orgcard.ps'.
1794 ** The new package dns-mode.el adds syntax highlighting of DNS master files.
1795 It is a modern replacement for zone-mode.el, which is now obsolete.
1798 ** The new global minor mode `file-name-shadow-mode' modifies the way
1799 filenames being entered by the user in the minibuffer are displayed, so
1800 that it's clear when part of the entered filename will be ignored due to
1801 emacs' filename parsing rules.  The ignored portion can be made dim,
1802 invisible, or otherwise less visually noticeable.  The display method can
1803 be displayed by customizing the variable `file-name-shadow-properties'.
1806 ** The new package flymake.el does on-the-fly syntax checking of program
1807 source files.  See the Flymake's Info manual for more details.
1810 ** The new keypad setup package provides several common bindings for
1811 the numeric keypad which is available on most keyboards.  The numeric
1812 keypad typically has the digits 0 to 9, a decimal point, keys marked
1813 +, -, /, and *, an Enter key, and a NumLock toggle key.  The keypad
1814 package only controls the use of the digit and decimal keys.
1816 By customizing the variables `keypad-setup', `keypad-shifted-setup',
1817 `keypad-numlock-setup', and `keypad-numlock-shifted-setup', or by
1818 using the function `keypad-setup', you can rebind all digit keys and
1819 the decimal key of the keypad in one step for each of the four
1820 possible combinations of the Shift key state (not pressed/pressed) and
1821 the NumLock toggle state (off/on).
1823 The choices for the keypad keys in each of the above states are:
1824 `Plain numeric keypad' where the keys generates plain digits,
1825 `Numeric keypad with decimal key' where the character produced by the
1826 decimal key can be customized individually (for internationalization),
1827 `Numeric Prefix Arg' where the keypad keys produce numeric prefix args
1828 for emacs editing commands, `Cursor keys' and `Shifted Cursor keys'
1829 where the keys work like (shifted) arrow keys, home/end, etc., and
1830 `Unspecified/User-defined' where the keypad keys (kp-0, kp-1, etc.)
1831 are left unspecified and can be bound individually through the global
1832 or local keymaps.
1835 ** The new kmacro package provides a simpler user interface to
1836 emacs' keyboard macro facilities.
1838 Basically, it uses two function keys (default F3 and F4) like this:
1839 F3 starts a macro, F4 ends the macro, and pressing F4 again executes
1840 the last macro.  While defining the macro, F3 inserts a counter value
1841 which automatically increments every time the macro is executed.
1843 There is now a keyboard macro ring which stores the most recently
1844 defined macros.
1846 The C-x C-k sequence is now a prefix for the kmacro keymap which
1847 defines bindings for moving through the keyboard macro ring,
1848 C-x C-k C-p and C-x C-k C-n, editing the last macro C-x C-k C-e,
1849 manipulating the macro counter and format via C-x C-k C-c,
1850 C-x C-k C-a, and C-x C-k C-f.  See the commentary in kmacro.el
1851 for more commands.
1853 The normal macro bindings C-x (, C-x ), and C-x e now interfaces to
1854 the keyboard macro ring.
1856 The C-x e command now automatically terminates the current macro
1857 before calling it, if used while defining a macro.
1859 In addition, when ending or calling a macro with C-x e, the macro can
1860 be repeated immediately by typing just the `e'.  You can customize
1861 this behavior via the variables kmacro-call-repeat-key and
1862 kmacro-call-repeat-with-arg.
1864 Keyboard macros can now be debugged and edited interactively.
1865 C-x C-k SPC steps through the last keyboard macro one key sequence
1866 at a time, prompting for the actions to take.
1869 ** New minor mode, Visible mode, toggles invisibility in the current buffer.
1870 When enabled, it makes all invisible text visible.  When disabled, it
1871 restores the previous value of `buffer-invisibility-spec'.
1874 ** The wdired.el package allows you to use normal editing commands on Dired
1875 buffers to change filenames, permissions, etc...
1878 ** The new package longlines.el provides a minor mode for editing text
1879 files composed of long lines, based on the `use-hard-newlines'
1880 mechanism.  The long lines are broken up by inserting soft newlines,
1881 which are automatically removed when saving the file to disk or
1882 copying into the kill ring, clipboard, etc.  By default, Longlines
1883 mode inserts soft newlines automatically during editing, a behavior
1884 referred to as "soft word wrap" in other text editors.  This is
1885 similar to Refill mode, but more reliable.  To turn the word wrap
1886 feature off, set `longlines-auto-wrap' to nil.
1889 ** The printing package is now part of the Emacs distribution.
1891 If you enable the printing package by including (require 'printing) in
1892 the .emacs file, the normal Print item on the File menu is replaced
1893 with a Print sub-menu which allows you to preview output through
1894 ghostview, use ghostscript to print (if you don't have a PostScript
1895 printer) or send directly to printer a PostScript code generated by
1896 `ps-print' package.  Use M-x pr-help for more information.
1899 ** The minor mode Reveal mode makes text visible on the fly as you
1900 move your cursor into hidden regions of the buffer.
1901 It should work with any package that uses overlays to hide parts
1902 of a buffer, such as outline-minor-mode, hs-minor-mode, hide-ifdef-mode, ...
1904 There is also Global Reveal mode which affects all buffers.
1907 ** The ruler-mode.el library provides a minor mode for displaying an
1908 "active" ruler in the header line.  You can use the mouse to visually
1909 change the `fill-column', `window-margins' and `tab-stop-list'
1910 settings.
1913 ** SES mode (ses-mode) is a new major mode for creating and editing
1914 spreadsheet files.  Besides the usual Emacs features (intuitive command
1915 letters, undo, cell formulas in Lisp, plaintext files, etc.) it also offers
1916 viral immunity and import/export of tab-separated values.
1919 ** The new global minor mode `size-indication-mode' (off by default)
1920 shows the size of accessible part of the buffer on the mode line.
1923 ** The new package table.el implements editable, WYSIWYG, embedded
1924 `text tables' in Emacs buffers.  It simulates the effect of putting
1925 these tables in a special major mode.  The package emulates WYSIWYG
1926 table editing available in modern word processors.  The package also
1927 can generate a table source in typesetting and markup languages such
1928 as latex and html from the visually laid out text table.
1930 ** The tumme.el package allows you to easily view, tag and in other ways
1931 manipulate image files and their thumbnails, using dired as the main interface.
1932 Tumme provides functionality to generate simple image galleries.
1935 ** Tramp is now part of the distribution.
1937 This package is similar to Ange-FTP: it allows you to edit remote
1938 files.  But whereas Ange-FTP uses FTP to access the remote host,
1939 Tramp uses a shell connection.  The shell connection is always used
1940 for filename completion and directory listings and suchlike, but for
1941 the actual file transfer, you can choose between the so-called
1942 `inline' methods (which transfer the files through the shell
1943 connection using base64 or uu encoding) and the `out-of-band' methods
1944 (which invoke an external copying program such as `rcp' or `scp' or
1945 `rsync' to do the copying).
1947 Shell connections can be acquired via `rsh', `ssh', `telnet' and also
1948 `su' and `sudo'.  Ange-FTP is still supported via the `ftp' method.
1950 If you want to disable Tramp you should set
1952   (setq tramp-default-method "ftp")
1954 Removing Tramp, and re-enabling Ange-FTP, can be achieved by M-x
1955 tramp-unload-tramp.
1958 ** The URL package (which had been part of W3) is now part of Emacs.
1961 ** `cfengine-mode' is a major mode for editing GNU Cfengine
1962 configuration files.
1965 ** The new package conf-mode.el handles thousands of configuration files, with
1966 varying syntaxes for comments (;, #, //, /* */ or !), assignment (var = value,
1967 var : value, var value or keyword var value) and sections ([section] or
1968 section { }).  Many files under /etc/, or with suffixes like .cf through
1969 .config, .properties (Java), .desktop (KDE/Gnome), .ini and many others are
1970 recognized.
1973 ** GDB-Script-mode is used for files like .gdbinit.
1976 ** The new python.el package is used to edit Python and Jython programs.
1979 ** The TCL package tcl-mode.el was replaced by tcl.el.
1980 This was actually done in Emacs-21.1, and was not documented.
1982 ** The new package scroll-lock.el provides the Scroll Lock minor mode
1983 for pager-like scrolling.  Keys which normally move point by line or
1984 paragraph will scroll the buffer by the respective amount of lines
1985 instead and point will be kept vertically fixed relative to window
1986 boundaries during scrolling.
1989 ** The file t-mouse.el is now part of Emacs and provides access to mouse
1990 events from the console.  It still requires gpm to work but has been updated
1991 for Emacs 22. In particular, the mode-line is now position sensitive.
1993 * Changes in Specialized Modes and Packages in Emacs 22.1:
1995 ** Changes in Dired
1998 *** Bindings for Tumme added
1999 Several new keybindings, all starting with the C-t prefix, have been
2000 added to Dired. They are all bound to commands in Tumme. As a starting
2001 point, mark some image files in a dired buffer and do C-t d to display
2002 thumbnails of them in a separate buffer.
2004 ** Changes in Hi Lock
2007 *** hi-lock-mode now only affects a single buffer, and a new function
2008 `global-hi-lock-mode' enables Hi Lock in all buffers.  By default, if
2009 hi-lock-mode is used in what appears to be the initialization file, a
2010 warning message suggests to use global-hi-lock-mode instead.  However,
2011 if the new variable `hi-lock-archaic-interface-deduce' is non-nil,
2012 using hi-lock-mode in an initialization file will turn on Hi Lock in all
2013 buffers and no warning will be issued (for compatibility with the
2014 behavior in older versions of Emacs).
2017 ** Changes in Allout
2019 *** Some previously rough topic-header format edge cases are reconciled.
2020 Level 1 topics use the mode's comment format, and lines starting with the
2021 asterisk - for instance, the comment close of some languages (eg, c's "*/"
2022 or mathematica's "*)") - at the beginning of line are no longer are
2023 interpreted as level 1 topics in those modes.
2025 *** Many or most commonly occuring "accidental" topics are disqualified.
2026 Text in item bodies that looks like a low-depth topic is no longer mistaken
2027 for one unless its first offspring (or that of its next sibling with
2028 offspring) is only one level deeper.
2030 For example, pasting some text with a bunch of leading asterisks into a
2031 topic that's followed by a level 3 or deeper topic will not cause the
2032 pasted text to be mistaken for outline structure.
2034 The same constraint is applied to any level 2 or 3 topics.
2036 This settles an old issue where typed or pasted text needed to be carefully
2037 reviewed, and sometimes doctored, to avoid accidentally disrupting the
2038 outline structure.  Now that should be generally unnecessary, as the most
2039 prone-to-occur accidents are disqualified.
2041 *** Allout now refuses to create "containment discontinuities", where a
2042 topic is shifted deeper than the offspring-depth of its container.  On the
2043 other hand, allout now operates gracefully with existing containment
2044 discontinuities, revealing excessively contained topics rather than either
2045 leaving them hidden or raising an error.
2047 *** Topic cryptography added, enabling easy gpg topic encryption and
2048 decryption.  Per-topic basis enables interspersing encrypted-text and
2049 clear-text within a single file to your heart's content, using symmetric
2050 and/or public key modes.  Time-limited key caching, user-provided
2051 symmetric key hinting and consistency verification, auto-encryption of
2052 pending topics on save, and more, make it easy to use encryption in
2053 powerful ways.  Encryption behavior customization is collected in the
2054 allout-encryption customization group.
2056 *** Navigation within an item is easier.  Repeated beginning-of-line and
2057 end-of-line key commands (usually, ^A and ^E) cycle through the
2058 beginning/end-of-line and then beginning/end of topic, etc.  See new
2059 customization vars `allout-beginning-of-line-cycles' and
2060 `allout-end-of-line-cycles'.
2062 *** New or revised allout-mode activity hooks enable creation of
2063 cooperative enhancements to allout mode without changes to the mode,
2064 itself.
2066 See `allout-exposure-change-hook', `allout-structure-added-hook',
2067 `allout-structure-deleted-hook', and `allout-structure-shifted-hook'.
2069 `allout-exposure-change-hook' replaces the existing
2070 `allout-view-change-hook', which is being deprecated.  Both are still
2071 invoked, but `allout-view-change-hook' will eventually be ignored.
2072 `allout-exposure-change-hook' is called with explicit arguments detailing
2073 the specifics of each change (as are the other new hooks), making it easier
2074 to use than the old version.
2076 There is a new mode deactivation hook, `allout-mode-deactivate-hook', for
2077 coordinating with deactivation of allout-mode.  Both that and the mode
2078 activation hook, `allout-mode-hook' are now run after the `allout-mode'
2079 variable is changed, rather than before.
2081 *** Default command prefix was changed to "\C-c " (control-c space), to
2082 avoid intruding on user's keybinding space.  Customize the
2083 `allout-command-prefix' variable to your preference.
2085 *** Allout now uses text overlay's `invisible' property for concealed text,
2086 instead of selective-display.  This simplifies the code, in particular
2087 avoiding the need for kludges for isearch dynamic-display, discretionary
2088 handling of edits of concealed text, undo concerns, etc.
2090 *** There are many other fixes and refinements, including:
2092    - repaired inhibition of inadvertent edits to concealed text, without
2093      inhibiting undo; we now reveal undo changes within concealed text.
2094    - auto-fill-mode is now left inactive when allout-mode starts, if it
2095      already was inactive.  also, `allout-inhibit-auto-fill' custom
2096      configuration variable makes it easy to disable auto fill in allout
2097      outlines in general or on a per-buffer basis.
2098    - allout now tolerates fielded text in outlines without disruption.
2099    - hot-spot navigation now is modularized with a new function,
2100      `allout-hotspot-key-handler', enabling easier use and enhancement of
2101      the functionality in allout addons.
2102    - repaired retention of topic body hanging indent upon topic depth shifts
2103    - bulleting variation is simpler and more accommodating, both in the
2104      default behavior and in ability to vary when creating new topics
2105    - mode deactivation now does cleans up effectively, more properly
2106      restoring affected variables and hooks to former state, removing
2107      overlays, etc.  see `allout-add-resumptions' and
2108      `allout-do-resumptions', which replace the old `allout-resumptions'.
2109    - included a few unit-tests for interior functionality.  developers can
2110      have them automatically run at the end of module load by customizing
2111      the option `allout-run-unit-tests-on-load'.
2112    - many, many other, more minor tweaks, fixes, and refinements.
2113    - version number incremented to 2.2
2115 ** The variable `woman-topic-at-point' was renamed
2116 to `woman-use-topic-at-point' and behaves differently: if this
2117 variable is non-nil, the `woman' command uses the word at point
2118 automatically, without asking for a confirmation.  Otherwise, the word
2119 at point is suggested as default, but not inserted at the prompt.
2122 ** Changes to cmuscheme
2124 *** Emacs now offers to start Scheme if the user tries to
2125 evaluate a Scheme expression but no Scheme subprocess is running.
2127 *** If a file `.emacs_NAME' (where NAME is the name of the Scheme interpreter)
2128 exists in the user's home directory or in ~/.emacs.d, its
2129 contents are sent to the Scheme subprocess upon startup.
2131 *** There are new commands to instruct the Scheme interpreter to trace
2132 procedure calls (`scheme-trace-procedure') and to expand syntactic forms
2133 (`scheme-expand-current-form').  The commands actually sent to the Scheme
2134 subprocess are controlled by the user options `scheme-trace-command',
2135 `scheme-untrace-command' and `scheme-expand-current-form'.
2138 ** Changes in Makefile mode
2140 *** Makefile mode has submodes for automake, gmake, makepp, BSD make and imake.
2142 The former two couldn't be differentiated before, and the latter three
2143 are new.  Font-locking is robust now and offers new customizable
2144 faces.
2146 *** The variable `makefile-query-one-target-method' has been renamed
2147 to `makefile-query-one-target-method-function'.  The old name is still
2148 available as alias.
2151 ** In Outline mode, `hide-body' no longer hides lines at the top
2152 of the file that precede the first header line.
2155 ** Telnet now prompts you for a port number with C-u M-x telnet.
2158 ** The terminal emulation code in term.el has been improved; it can
2159 run most curses applications now.
2162 ** M-x diff uses Diff mode instead of Compilation mode.
2165 ** Diff mode key bindings changed.
2167 These are the new bindings:
2169 C-c C-e   diff-ediff-patch  (old M-A)
2170 C-c C-n   diff-restrict-view   (old M-r)
2171 C-c C-r   diff-reverse-direction  (old M-R)
2172 C-c C-u   diff-context->unified   (old M-U)
2173 C-c C-w   diff-refine-hunk  (old C-c C-r)
2175 To convert unified to context format, use C-u C-c C-u.
2176 In addition, C-c C-u now operates on the region
2177 in Transient Mark mode when the mark is active.
2180 ** You can now customize `fill-nobreak-predicate' to control where
2181 filling can break lines.  The value is now normally a list of
2182 functions, but it can also be a single function, for compatibility.
2184 Emacs provide two predicates, `fill-single-word-nobreak-p' and
2185 `fill-french-nobreak-p', for use as the value of
2186 `fill-nobreak-predicate'.
2189 ** M-x view-file and commands that use it now avoid interfering
2190 with special modes such as Tar mode.
2193 ** Commands `winner-redo' and `winner-undo', from winner.el, are now
2194 bound to C-c <left> and C-c <right>, respectively.  This is an
2195 incompatible change.
2198 ** `global-whitespace-mode' is a new alias for `whitespace-global-mode'.
2201 ** M-x compare-windows now can automatically skip non-matching text to
2202 resync points in both windows.
2205 ** New user option `add-log-always-start-new-record'.
2207 When this option is enabled, M-x add-change-log-entry always
2208 starts a new record regardless of when the last record is.
2211 ** PO translation files are decoded according to their MIME headers
2212 when Emacs visits them.
2214 ** Info mode changes:
2217 *** A numeric prefix argument of `info' selects an Info buffer
2218 with the number appended to the `*info*' buffer name (e.g. "*info*<2>").
2221 *** isearch in Info uses Info-search and searches through multiple nodes.
2223 Before leaving the initial Info node isearch fails once with the error
2224 message [initial node], and with subsequent C-s/C-r continues through
2225 other nodes.  When isearch fails for the rest of the manual, it wraps
2226 around the whole manual to the top/final node.  The user option
2227 `Info-isearch-search' controls whether to use Info-search for isearch,
2228 or the default isearch search function that wraps around the current
2229 Info node.
2232 *** New search commands: `Info-search-case-sensitively' (bound to S),
2233 `Info-search-backward', and `Info-search-next' which repeats the last
2234 search without prompting for a new search string.
2237 *** New command `Info-history-forward' (bound to r and new toolbar icon)
2238 moves forward in history to the node you returned from after using
2239 `Info-history-back' (renamed from `Info-last').
2242 *** New command `Info-history' (bound to L) displays a menu of visited nodes.
2245 *** New command `Info-toc' (bound to T) creates a node with table of contents
2246 from the tree structure of menus of the current Info file.
2249 *** New command `info-apropos' searches the indices of the known
2250 Info files on your system for a string, and builds a menu of the
2251 possible matches.
2254 *** New command `Info-copy-current-node-name' (bound to w) copies
2255 the current Info node name into the kill ring.  With a zero prefix
2256 arg, puts the node name inside the `info' function call.
2259 *** New face `info-xref-visited' distinguishes visited nodes from unvisited
2260 and a new option `Info-fontify-visited-nodes' to control this.
2263 *** http and ftp links in Info are now operational: they look like cross
2264 references and following them calls `browse-url'.
2267 *** Info now hides node names in menus and cross references by default.
2269 If you prefer the old behavior, you can set the new user option
2270 `Info-hide-note-references' to nil.
2273 *** Images in Info pages are supported.
2275 Info pages show embedded images, in Emacs frames with image support.
2276 Info documentation that includes images, processed with makeinfo
2277 version 4.7 or newer, compiles to Info pages with embedded images.
2280 *** The default value for `Info-scroll-prefer-subnodes' is now nil.
2283 *** `Info-index' offers completion.
2285 ** Lisp mode changes:
2288 *** Lisp mode now uses `font-lock-doc-face' for doc strings.
2291 *** C-u C-M-q in Emacs Lisp mode pretty-prints the list after point.
2293 *** New features in evaluation commands
2296 **** The function `eval-defun' (C-M-x) called on defface reinitializes
2297 the face to the value specified in the defface expression.
2300 **** Typing C-x C-e twice prints the value of the integer result
2301 in additional formats (octal, hexadecimal, character) specified
2302 by the new function `eval-expression-print-format'.  The same
2303 function also defines the result format for `eval-expression' (M-:),
2304 `eval-print-last-sexp' (C-j) and some edebug evaluation functions.
2307 ** CC mode changes.
2309 *** The CC Mode manual has been extensively revised.
2310 The information about using CC Mode has been separated from the larger
2311 and more difficult chapters about configuration.
2313 *** Changes in Key Sequences
2314 **** c-toggle-auto-hungry-state is no longer bound to C-c C-t.
2316 **** c-toggle-hungry-state is no longer bound to C-c C-d.
2317 This binding has been taken over by c-hungry-delete-forwards.
2319 **** c-toggle-auto-state (C-c C-t) has been renamed to c-toggle-auto-newline.
2320 c-toggle-auto-state remains as an alias.
2322 **** The new commands c-hungry-backspace and c-hungry-delete-forwards
2323 have key bindings C-c C-DEL (or C-c DEL, for the benefit of TTYs) and
2324 C-c C-d (or C-c C-<delete> or C-c <delete>) respectively.  These
2325 commands delete entire blocks of whitespace with a single
2326 key-sequence.  [N.B. "DEL" is the <backspace> key.]
2328 **** The new command c-toggle-electric-mode is bound to C-c C-l.
2330 **** The new command c-subword-mode is bound to C-c C-w.
2332 *** C-c C-s (`c-show-syntactic-information') now highlights the anchor
2333 position(s).
2335 *** New Minor Modes
2336 **** Electric Minor Mode toggles the electric action of non-alphabetic keys.
2337 The new command c-toggle-electric-mode is bound to C-c C-l.  Turning the
2338 mode off can be helpful for editing chaotically indented code and for
2339 users new to CC Mode, who sometimes find electric indentation
2340 disconcerting.  Its current state is displayed in the mode line with an
2341 'l', e.g. "C/al".
2343 **** Subword Minor Mode makes Emacs recognize word boundaries at upper case
2344 letters in StudlyCapsIdentifiers.  You enable this feature by C-c C-w.  It can
2345 also be used in non-CC Mode buffers.  :-) Contributed by Masatake YAMATO.
2347 *** New clean-ups
2349 **** `comment-close-slash'.
2350 With this clean-up, a block (i.e. c-style) comment can be terminated by
2351 typing a slash at the start of a line.
2353 **** `c-one-liner-defun'
2354 This clean-up compresses a short enough defun (for example, an AWK
2355 pattern/action pair) onto a single line.  "Short enough" is configurable.
2357 *** Font lock support.
2358 CC Mode now provides font lock support for all its languages.  This
2359 supersedes the font lock patterns that have been in the core font lock
2360 package for C, C++, Java and Objective-C.  Like indentation, font
2361 locking is done in a uniform way across all languages (except the new
2362 AWK mode - see below).  That means that the new font locking will be
2363 different from the old patterns in various details for most languages.
2365 The main goal of the font locking in CC Mode is accuracy, to provide a
2366 dependable aid in recognizing the various constructs.  Some, like
2367 strings and comments, are easy to recognize while others like
2368 declarations and types can be very tricky.  CC Mode can go to great
2369 lengths to recognize declarations and casts correctly, especially when
2370 the types aren't recognized by standard patterns.  This is a fairly
2371 demanding analysis which can be slow on older hardware, and it can
2372 therefore be disabled by choosing a lower decoration level with the
2373 variable font-lock-maximum-decoration.
2375 Note that the most demanding font lock level has been tuned with lazy
2376 fontification in mind; Just-In-Time-Lock mode should be enabled for
2377 the highest font lock level (by default, it is).  Fontifying a file
2378 with several thousand lines in one go can take the better part of a
2379 minute.
2381 **** The (c|c++|objc|java|idl|pike)-font-lock-extra-types variables
2382 are now used by CC Mode to recognize identifiers that are certain to
2383 be types.  (They are also used in cases that aren't related to font
2384 locking.)  At the maximum decoration level, types are often recognized
2385 properly anyway, so these variables should be fairly restrictive and
2386 not contain patterns for uncertain types.
2388 **** Support for documentation comments.
2389 There is a "plugin" system to fontify documentation comments like
2390 Javadoc and the markup within them.  It's independent of the host
2391 language, so it's possible to e.g. turn on Javadoc font locking in C
2392 buffers.  See the variable c-doc-comment-style for details.
2394 Currently three kinds of doc comment styles are recognized: Sun's
2395 Javadoc, Autodoc (which is used in Pike) and GtkDoc (used in C).  (The
2396 last was contributed by Masatake YAMATO).  This is by no means a
2397 complete list of the most common tools; if your doc comment extractor
2398 of choice is missing then please drop a note to bug-cc-mode@gnu.org.
2400 **** Better handling of C++ templates.
2401 As a side effect of the more accurate font locking, C++ templates are
2402 now handled much better.  The angle brackets that delimit them are
2403 given parenthesis syntax so that they can be navigated like other
2404 parens.
2406 This also improves indentation of templates, although there still is
2407 work to be done in that area.  E.g. it's required that multiline
2408 template clauses are written in full and then refontified to be
2409 recognized, and the indentation of nested templates is a bit odd and
2410 not as configurable as it ought to be.
2412 **** Improved handling of Objective-C and CORBA IDL.
2413 Especially the support for Objective-C and IDL has gotten an overhaul.
2414 The special "@" declarations in Objective-C are handled correctly.
2415 All the keywords used in CORBA IDL, PSDL, and CIDL are recognized and
2416 handled correctly, also wrt indentation.
2418 *** Support for the AWK language.
2419 Support for the AWK language has been introduced.  The implementation is
2420 based around GNU AWK version 3.1, but it should work pretty well with
2421 any AWK.  As yet, not all features of CC Mode have been adapted for AWK.
2422 Here is a summary:
2424 **** Indentation Engine
2425 The CC Mode indentation engine fully supports AWK mode.
2427 AWK mode handles code formatted in the conventional AWK fashion: `{'s
2428 which start actions, user-defined functions, or compound statements are
2429 placed on the same line as the associated construct; the matching `}'s
2430 are normally placed under the start of the respective pattern, function
2431 definition, or structured statement.
2433 The predefined line-up functions haven't yet been adapted for AWK
2434 mode, though some of them may work serendipitously.  There shouldn't
2435 be any problems writing custom indentation functions for AWK mode.
2437 **** Font Locking
2438 There is a single level of font locking in AWK mode, rather than the
2439 three distinct levels the other modes have.  There are several
2440 idiosyncrasies in AWK mode's font-locking due to the peculiarities of
2441 the AWK language itself.
2443 **** Comment and Movement Commands
2444 These commands all work for AWK buffers.  The notion of "defun" has
2445 been augmented to include AWK pattern-action pairs - the standard
2446 "defun" commands on key sequences C-M-a, C-M-e, and C-M-h use this
2447 extended definition.
2449 **** "awk" style, Auto-newline Insertion and Clean-ups
2450 A new style, "awk" has been introduced, and this is now the default
2451 style for AWK code.  With auto-newline enabled, the clean-up
2452 c-one-liner-defun (see above) is useful.
2454 *** New syntactic symbols in IDL mode.
2455 The top level constructs "module" and "composition" (from CIDL) are
2456 now handled like "namespace" in C++: They are given syntactic symbols
2457 module-open, module-close, inmodule, composition-open,
2458 composition-close, and incomposition.
2460 *** New functions to do hungry delete without enabling hungry delete mode.
2461 The new functions `c-hungry-backspace' and `c-hungry-delete-forward'
2462 provide hungry deletion without having to toggle a mode.  They are
2463 bound to C-c C-DEL and C-c C-d (and several variants, for the benefit
2464 of different keyboard setups.  See "Changes in key sequences" above).
2466 *** Better control over `require-final-newline'.
2468 The variable `c-require-final-newline' specifies which of the modes
2469 implemented by CC mode should insert final newlines.  Its value is a
2470 list of modes, and only those modes should do it.  By default the list
2471 includes C, C++ and Objective-C modes.
2473 Whichever modes are in this list will set `require-final-newline'
2474 based on `mode-require-final-newline'.
2476 *** Format change for syntactic context elements.
2478 The elements in the syntactic context returned by `c-guess-basic-syntax'
2479 and stored in `c-syntactic-context' has been changed somewhat to allow
2480 attaching more information.  They are now lists instead of single cons
2481 cells.  E.g. a line that previously had the syntactic analysis
2483 ((inclass . 11) (topmost-intro . 13))
2485 is now analyzed as
2487 ((inclass 11) (topmost-intro 13))
2489 In some cases there are more than one position given for a syntactic
2490 symbol.
2492 This change might affect code that calls `c-guess-basic-syntax'
2493 directly, and custom lineup functions if they use
2494 `c-syntactic-context'.  However, the argument given to lineup
2495 functions is still a single cons cell with nil or an integer in the
2496 cdr.
2498 *** API changes for derived modes.
2500 There have been extensive changes "under the hood" which can affect
2501 derived mode writers.  Some of these changes are likely to cause
2502 incompatibilities with existing derived modes, but on the other hand
2503 care has now been taken to make it possible to extend and modify CC
2504 Mode with less risk of such problems in the future.
2506 **** New language variable system.
2507 These are variables whose values vary between CC Mode's different
2508 languages.  See the comment blurb near the top of cc-langs.el.
2510 **** New initialization functions.
2511 The initialization procedure has been split up into more functions to
2512 give better control: `c-basic-common-init', `c-font-lock-init', and
2513 `c-init-language-vars'.
2515 *** Changes in analysis of nested syntactic constructs.
2516 The syntactic analysis engine has better handling of cases where
2517 several syntactic constructs appear nested on the same line.  They are
2518 now handled as if each construct started on a line of its own.
2520 This means that CC Mode now indents some cases differently, and
2521 although it's more consistent there might be cases where the old way
2522 gave results that's more to one's liking.  So if you find a situation
2523 where you think that the indentation has become worse, please report
2524 it to bug-cc-mode@gnu.org.
2526 **** New syntactic symbol substatement-label.
2527 This symbol is used when a label is inserted between a statement and
2528 its substatement.  E.g:
2530     if (x)
2531       x_is_true:
2532         do_stuff();
2534 *** Better handling of multiline macros.
2536 **** Syntactic indentation inside macros.
2537 The contents of multiline #define's are now analyzed and indented
2538 syntactically just like other code.  This can be disabled by the new
2539 variable `c-syntactic-indentation-in-macros'.  A new syntactic symbol
2540 `cpp-define-intro' has been added to control the initial indentation
2541 inside `#define's.
2543 **** New lineup function `c-lineup-cpp-define'.
2545 Now used by default to line up macro continuation lines.  The behavior
2546 of this function closely mimics the indentation one gets if the macro
2547 is indented while the line continuation backslashes are temporarily
2548 removed.  If syntactic indentation in macros is turned off, it works
2549 much line `c-lineup-dont-change', which was used earlier, but handles
2550 empty lines within the macro better.
2552 **** Automatically inserted newlines continues the macro if used within one.
2553 This applies to the newlines inserted by the auto-newline mode, and to
2554 `c-context-line-break' and `c-context-open-line'.
2556 **** Better alignment of line continuation backslashes.
2557 `c-backslash-region' tries to adapt to surrounding backslashes.  New
2558 variable `c-backslash-max-column' puts a limit on how far out
2559 backslashes can be moved.
2561 **** Automatic alignment of line continuation backslashes.
2562 This is controlled by the new variable `c-auto-align-backslashes'.  It
2563 affects `c-context-line-break', `c-context-open-line' and newlines
2564 inserted in Auto-Newline mode.
2566 **** Line indentation works better inside macros.
2567 Regardless whether syntactic indentation and syntactic indentation
2568 inside macros are enabled or not, line indentation now ignores the
2569 line continuation backslashes.  This is most noticeable when syntactic
2570 indentation is turned off and there are empty lines (save for the
2571 backslash) in the macro.
2573 *** indent-for-comment is more customizable.
2574 The behavior of M-; (indent-for-comment) is now configurable through
2575 the variable `c-indent-comment-alist'.  The indentation behavior is
2576 based on the preceding code on the line, e.g. to get two spaces after
2577 #else and #endif but indentation to `comment-column' in most other
2578 cases (something which was hardcoded earlier).
2580 *** New function `c-context-open-line'.
2581 It's the open-line equivalent of `c-context-line-break'.
2583 *** New lineup functions
2585 **** `c-lineup-string-cont'
2586 This lineup function lines up a continued string under the one it
2587 continues.  E.g:
2589 result = prefix + "A message "
2590                   "string.";      <- c-lineup-string-cont
2592 **** `c-lineup-cascaded-calls'
2593 Lines up series of calls separated by "->" or ".".
2595 **** `c-lineup-knr-region-comment'
2596 Gives (what most people think is) better indentation of comments in
2597 the "K&R region" between the function header and its body.
2599 **** `c-lineup-gcc-asm-reg'
2600 Provides better indentation inside asm blocks.
2602 **** `c-lineup-argcont'
2603 Lines up continued function arguments after the preceding comma.
2605 *** Better caching of the syntactic context.
2606 CC Mode caches the positions of the opening parentheses (of any kind)
2607 of the lists surrounding the point.  Those positions are used in many
2608 places as anchor points for various searches.  The cache is now
2609 improved so that it can be reused to a large extent when the point is
2610 moved.  The less it moves, the less needs to be recalculated.
2612 The effect is that CC Mode should be fast most of the time even when
2613 opening parens are hung (i.e. aren't in column zero).  It's typically
2614 only the first time after the point is moved far down in a complex
2615 file that it'll take noticeable time to find out the syntactic
2616 context.
2618 *** Statements are recognized in a more robust way.
2619 Statements are recognized most of the time even when they occur in an
2620 "invalid" context, e.g. in a function argument.  In practice that can
2621 happen when macros are involved.
2623 *** Improved the way `c-indent-exp' chooses the block to indent.
2624 It now indents the block for the closest sexp following the point
2625 whose closing paren ends on a different line.  This means that the
2626 point doesn't have to be immediately before the block to indent.
2627 Also, only the block and the closing line is indented; the current
2628 line is left untouched.
2630 *** Added toggle for syntactic indentation.
2631 The function `c-toggle-syntactic-indentation' can be used to toggle
2632 syntactic indentation.
2634 ** In sh-script, a continuation line is only indented if the backslash was
2635 preceded by a SPC or a TAB.
2638 ** Perl mode has a new variable `perl-indent-continued-arguments'.
2641 ** The old Octave mode bindings C-c f and C-c i have been changed
2642 to C-c C-f and C-c C-i.  The C-c C-i subcommands now have duplicate
2643 bindings on control characters--thus, C-c C-i C-b is the same as
2644 C-c C-i b, and so on.
2646 ** Fortran mode changes:
2649 *** Fortran mode does more font-locking by default. Use level 3
2650 highlighting for the old default.
2653 *** Fortran mode has a new variable `fortran-directive-re'.
2654 Adapt this to match the format of any compiler directives you use.
2655 Lines that match are never indented, and are given distinctive font-locking.
2658 *** F90 mode and Fortran mode have new navigation commands
2659 `f90-end-of-block', `f90-beginning-of-block', `f90-next-block',
2660 `f90-previous-block', `fortran-end-of-block',
2661 `fortran-beginning-of-block'.
2664 *** F90 mode and Fortran mode have support for `hs-minor-mode' (hideshow).
2665 It cannot deal with every code format, but ought to handle a sizeable
2666 majority.
2669 *** The new function `f90-backslash-not-special' can be used to change
2670 the syntax of backslashes in F90 buffers.
2673 ** Reftex mode changes
2676 *** Changes to RefTeX's table of contents
2678 The new command keys "<" and ">" in the TOC buffer promote/demote the
2679 section at point or all sections in the current region, with full
2680 support for multifile documents.
2682 The new command `reftex-toc-recenter' (`C-c -') shows the current
2683 section in the TOC buffer without selecting the TOC window.
2684 Recentering can happen automatically in idle time when the option
2685 `reftex-auto-recenter-toc' is turned on.  The highlight in the TOC
2686 buffer stays when the focus moves to a different window.  A dedicated
2687 frame can show the TOC with the current section always automatically
2688 highlighted.  The frame is created and deleted from the toc buffer
2689 with the `d' key.
2691 The toc window can be split off horizontally instead of vertically.
2692 See new option `reftex-toc-split-windows-horizontally'.
2694 Labels can be renamed globally from the table of contents using the
2695 key `M-%'.
2697 The new command `reftex-goto-label' jumps directly to a label
2698 location.
2701 *** Changes related to citations and BibTeX database files
2703 Commands that insert a citation now prompt for optional arguments when
2704 called with a prefix argument.  Related new options are
2705 `reftex-cite-prompt-optional-args' and `reftex-cite-cleanup-optional-args'.
2707 The new command `reftex-create-bibtex-file' creates a BibTeX database
2708 with all entries referenced in the current document.  The keys "e" and
2709 "E" allow to produce a BibTeX database file from entries marked in a
2710 citation selection buffer.
2712 The command `reftex-citation' uses the word in the buffer before the
2713 cursor as a default search string.
2715 The support for chapterbib has been improved.  Different chapters can
2716 now use BibTeX or an explicit `thebibliography' environment.
2718 The macros which specify the bibliography file (like \bibliography)
2719 can be configured with the new option `reftex-bibliography-commands'.
2721 Support for jurabib has been added.
2724 *** Global index matched may be verified with a user function
2726 During global indexing, a user function can verify an index match.
2727 See new option `reftex-index-verify-function'.
2730 *** Parsing documents with many labels can be sped up.
2732 Operating in a document with thousands of labels can be sped up
2733 considerably by allowing RefTeX to derive the type of a label directly
2734 from the label prefix like `eq:' or `fig:'.  The option
2735 `reftex-trust-label-prefix' needs to be configured in order to enable
2736 this feature.  While the speed-up is significant, this may reduce the
2737 quality of the context offered by RefTeX to describe a label.
2740 *** Miscellaneous changes
2742 The macros which input a file in LaTeX (like \input, \include) can be
2743 configured in the new option `reftex-include-file-commands'.
2745 RefTeX supports global incremental search.
2748 ** Prolog mode has a new variable `prolog-font-lock-keywords'
2749 to support use of font-lock.
2751 ** HTML/SGML changes:
2754 *** Emacs now tries to set up buffer coding systems for HTML/XML files
2755 automatically.
2758 *** SGML mode has indentation and supports XML syntax.
2759 The new variable `sgml-xml-mode' tells SGML mode to use XML syntax.
2760 When this option is enabled, SGML tags are inserted in XML style,
2761 i.e., there is always a closing tag.
2762 By default, its setting is inferred on a buffer-by-buffer basis
2763 from the file name or buffer contents.
2765 *** The variable `sgml-transformation' has been renamed to
2766 `sgml-transformation-function'.  The old name is still available as
2767 alias.
2770 *** `xml-mode' is now an alias for `sgml-mode', which has XML support.
2772 ** TeX modes:
2775 *** C-c C-c prompts for a command to run, and tries to offer a good default.
2778 *** The user option `tex-start-options-string' has been replaced
2779 by two new user options: `tex-start-options', which should hold
2780 command-line options to feed to TeX, and `tex-start-commands' which should hold
2781 TeX commands to use at startup.
2784 *** verbatim environments are now highlighted in courier by font-lock
2785 and super/sub-scripts are made into super/sub-scripts.
2788 *** New major mode Doctex mode, for *.dtx files.
2790 ** BibTeX mode:
2792 *** The new command `bibtex-url' browses a URL for the BibTeX entry at
2793 point (bound to C-c C-l and mouse-2, RET on clickable fields).
2795 *** The new command `bibtex-entry-update' (bound to C-c C-u) updates
2796 an existing BibTeX entry by inserting fields that may occur but are not
2797 present.
2799 *** New `bibtex-entry-format' option `required-fields', enabled by default.
2801 *** `bibtex-maintain-sorted-entries' can take values `plain',
2802 `crossref', and `entry-class' which control the sorting scheme used
2803 for BibTeX entries.  `bibtex-sort-entry-class' controls the sorting
2804 scheme `entry-class'.  TAB completion for reference keys and
2805 automatic detection of duplicates does not require anymore that
2806 `bibtex-maintain-sorted-entries' is non-nil.
2808 *** If the new variable `bibtex-parse-keys-fast' is non-nil,
2809 use fast but simplified algorithm for parsing BibTeX keys.
2811 *** If the new variable `bibtex-autoadd-commas' is non-nil,
2812 automatically add missing commas at end of BibTeX fields.
2814 *** The new variable `bibtex-autofill-types' contains a list of entry
2815 types for which fields are filled automatically (if possible).
2817 *** The new command `bibtex-complete' completes word fragment before
2818 point according to context (bound to M-tab).
2820 *** The new commands `bibtex-find-entry' and `bibtex-find-crossref'
2821 locate entries and crossref'd entries (bound to C-c C-s and C-c C-x).
2822 Crossref fields are clickable (bound to mouse-2, RET).
2824 *** In BibTeX mode the command `fill-paragraph' (M-q) fills
2825 individual fields of a BibTeX entry.
2827 *** The new variables `bibtex-files' and `bibtex-file-path' define a set
2828 of BibTeX files that are searched for entry keys.
2830 *** The new command `bibtex-validate-globally' checks for duplicate keys
2831 in multiple BibTeX files.
2833 *** The new command `bibtex-copy-summary-as-kill' pushes summary
2834 of BibTeX entry to kill ring (bound to C-c C-t).
2836 *** The new variables bibtex-expand-strings and
2837 bibtex-autokey-expand-strings control the expansion of strings when
2838 extracting the content of a BibTeX field.
2840 *** The variables `bibtex-autokey-name-case-convert' and
2841 `bibtex-autokey-titleword-case-convert' have been renamed to
2842 `bibtex-autokey-name-case-convert-function' and
2843 `bibtex-autokey-titleword-case-convert-function'. The old names are
2844 still available as aliases.
2846 ** In Artist mode the variable `artist-text-renderer' has been
2847 renamed to `artist-text-renderer-function'.  The old name is still
2848 available as alias.
2851 ** In Enriched mode, `set-left-margin' and `set-right-margin' are now
2852 by default bound to `C-c [' and `C-c ]' instead of the former `C-c C-l'
2853 and `C-c C-r'.
2855 ** GUD changes:
2858 *** In GUD mode, when talking to GDB, C-x C-a C-j "jumps" the program
2859 counter to the specified source line (the one where point is).
2862 *** GUD mode has its own tool bar for controlling execution of the inferior
2863 and other common debugger commands.
2866 *** The new package gdb-ui.el provides an enhanced graphical interface to
2867 GDB.  You can interact with GDB through the GUD buffer in the usual way, but
2868 there are also further buffers which control the execution and describe the
2869 state of your program.  It can separate the input/output of your program from
2870 that of GDB and watches expressions in the speedbar.  It also uses features of
2871 Emacs 21/22 such as the toolbar, and bitmaps in the fringe to indicate
2872 breakpoints.
2874 To use this package just type M-x gdb.  See the Emacs manual if you want the
2875 old behaviour.
2877 *** The variable tooltip-gud-tips-p has been removed.  GUD tooltips can now be
2878 toggled independently of normal tooltips with the minor mode
2879 `gud-tooltip-mode'.
2882 *** In graphical mode, with a C program, GUD Tooltips have been extended to
2883 display the #define directive associated with an identifier when program is
2884 not executing.
2887 ** GUD mode improvements for jdb:
2889 *** Search for source files using jdb classpath and class information.
2890 Fast startup since there is no need to scan all source files up front.
2891 There is also no need to create and maintain lists of source
2892 directories to scan.  Look at `gud-jdb-use-classpath' and
2893 `gud-jdb-classpath' customization variables documentation.
2895 *** Supports the standard breakpoint (gud-break, gud-clear)
2896 set/clear operations from Java source files under the classpath, stack
2897 traversal (gud-up, gud-down), and run until current stack finish
2898 (gud-finish).
2900 *** Supports new jdb (Java 1.2 and later) in addition to oldjdb
2901 (Java 1.1 jdb).
2903 *** The previous method of searching for source files has been
2904 preserved in case someone still wants/needs to use it.
2905 Set `gud-jdb-use-classpath' to nil.
2907 *** Added Customization Variables
2909 **** `gud-jdb-command-name'.   What command line to use to invoke jdb.
2911 **** `gud-jdb-use-classpath'.  Allows selection of java source file searching
2912 method: set to t for new method, nil to scan `gud-jdb-directories' for
2913 java sources (previous method).
2915 **** `gud-jdb-directories'.  List of directories to scan and search for Java
2916 classes using the original gud-jdb method (if `gud-jdb-use-classpath'
2917 is nil).
2919 *** Minor Improvements
2921 **** The STARTTLS wrapper (starttls.el) can now use GNUTLS
2922 instead of the OpenSSL based `starttls' tool.  For backwards
2923 compatibility, it prefers `starttls', but you can toggle
2924 `starttls-use-gnutls' to switch to GNUTLS (or simply remove the
2925 `starttls' tool).
2927 **** Do not allow debugger output history variable to grow without bounds.
2929 ** Auto-Revert changes:
2932 *** You can now use Auto Revert mode to `tail' a file.
2934 If point is at the end of a file buffer before reverting, Auto Revert
2935 mode keeps it at the end after reverting.  Similarly if point is
2936 displayed at the end of a file buffer in any window, it stays at
2937 the end of the buffer in that window.  This allows to tail a file:
2938 just put point at the end of the buffer and it stays there.  This
2939 rule applies to file buffers.  For non-file buffers, the behavior can
2940 be mode dependent.
2942 If you are sure that the file will only change by growing at the end,
2943 then you can tail the file more efficiently by using the new minor
2944 mode Auto Revert Tail mode.  The function `auto-revert-tail-mode'
2945 toggles this mode.
2948 *** Auto Revert mode is now more careful to avoid excessive reverts and
2949 other potential problems when deciding which non-file buffers to
2950 revert.  This matters especially if Global Auto Revert mode is enabled
2951 and `global-auto-revert-non-file-buffers' is non-nil.  Auto Revert
2952 mode only reverts a non-file buffer if the buffer has a non-nil
2953 `revert-buffer-function' and a non-nil `buffer-stale-function', which
2954 decides whether the buffer should be reverted.  Currently, this means
2955 that auto reverting works for Dired buffers (although this may not
2956 work properly on all operating systems) and for the Buffer Menu.
2959 *** If the new user option `auto-revert-check-vc-info' is non-nil, Auto
2960 Revert mode reliably updates version control info (such as the version
2961 control number in the mode line), in all version controlled buffers in
2962 which it is active.  If the option is nil, the default, then this info
2963 only gets updated whenever the buffer gets reverted.
2966 ** recentf changes.
2968 The recent file list is now automatically cleaned up when recentf mode is
2969 enabled.  The new option `recentf-auto-cleanup' controls when to do
2970 automatic cleanup.
2972 The ten most recent files can be quickly opened by using the shortcut
2973 keys 1 to 9, and 0, when the recent list is displayed in a buffer via
2974 the `recentf-open-files', or `recentf-open-more-files' commands.
2976 The `recentf-keep' option replaces `recentf-keep-non-readable-files-p'
2977 and provides a more general mechanism to customize which file names to
2978 keep in the recent list.
2980 With the more advanced option `recentf-filename-handlers', you can
2981 specify functions that successively transform recent file names.  For
2982 example, if set to `file-truename' plus `abbreviate-file-name', the
2983 same file will not be in the recent list with different symbolic
2984 links, and the file name will be abbreviated.
2986 To follow naming convention, `recentf-menu-append-commands-flag'
2987 replaces the misnamed option `recentf-menu-append-commands-p'.  The
2988 old name remains available as alias, but has been marked obsolete.
2991 ** Desktop package
2994 *** Desktop saving is now a minor mode, `desktop-save-mode'.
2997 *** The variable `desktop-enable' is obsolete.
2999 Customize `desktop-save-mode' to enable desktop saving.
3002 *** Buffers are saved in the desktop file in the same order as that in the
3003 buffer list.
3006 *** The desktop package can be customized to restore only some buffers
3007 immediately, remaining buffers are restored lazily (when Emacs is
3008 idle).
3011 *** New commands:
3012   - desktop-revert reverts to the last loaded desktop.
3013   - desktop-change-dir kills current desktop and loads a new.
3014   - desktop-save-in-desktop-dir saves desktop in the directory from which
3015     it was loaded.
3016   - desktop-lazy-complete runs the desktop load to completion.
3017   - desktop-lazy-abort aborts lazy loading of the desktop.
3020 *** New customizable variables:
3021   - desktop-save. Determines whether the desktop should be saved when it is
3022     killed.
3023   - desktop-file-name-format. Format in which desktop file names should be saved.
3024   - desktop-path. List of directories in which to lookup the desktop file.
3025   - desktop-locals-to-save. List of local variables to save.
3026   - desktop-globals-to-clear. List of global variables that `desktop-clear' will clear.
3027   - desktop-clear-preserve-buffers-regexp. Regexp identifying buffers that `desktop-clear'
3028     should not delete.
3029   - desktop-restore-eager. Number of buffers to restore immediately. Remaining buffers are
3030     restored lazily (when Emacs is idle).
3031   - desktop-lazy-verbose. Verbose reporting of lazily created buffers.
3032   - desktop-lazy-idle-delay. Idle delay before starting to create buffers.
3035 *** New command line option --no-desktop
3038 *** New hooks:
3039   - desktop-after-read-hook run after a desktop is loaded.
3040   - desktop-no-desktop-file-hook run when no desktop file is found.
3043 ** The saveplace.el package now filters out unreadable files.
3045 When you exit Emacs, the saved positions in visited files no longer
3046 include files that aren't readable, e.g. files that don't exist.
3047 Customize the new option `save-place-forget-unreadable-files' to nil
3048 to get the old behavior.  The new options `save-place-save-skipped'
3049 and `save-place-skip-check-regexp' allow further fine-tuning of this
3050 feature.
3052 ** EDiff changes.
3055 ***  When comparing directories.
3056 Typing D brings up a buffer that lists the differences between the contents of
3057 directories. Now it is possible to use this buffer to copy the missing files
3058 from one directory to another.
3061 *** When comparing files or buffers.
3062 Typing the = key now offers to perform the word-by-word comparison of the
3063 currently highlighted regions in an inferior Ediff session. If you answer 'n'
3064 then it reverts to the old behavior and asks the user to select regions for
3065 comparison.
3068 *** The new command `ediff-backup' compares a file with its most recent
3069 backup using `ediff'.  If you specify the name of a backup file,
3070 `ediff-backup' compares it with the file of which it is a backup.
3073 ** Etags changes.
3075 *** New regular expressions features
3077 **** New syntax for regular expressions, multi-line regular expressions.
3079 The syntax --ignore-case-regexp=/regex/ is now undocumented and retained
3080 only for backward compatibility.  The new equivalent syntax is
3081 --regex=/regex/i.  More generally, it is --regex=/TAGREGEX/TAGNAME/MODS,
3082 where `/TAGNAME' is optional, as usual, and MODS is a string of 0 or
3083 more characters among `i' (ignore case), `m' (multi-line) and `s'
3084 (single-line).  The `m' and `s' modifiers behave as in Perl regular
3085 expressions: `m' allows regexps to match more than one line, while `s'
3086 (which implies `m') means that `.' matches newlines.  The ability to
3087 span newlines allows writing of much more powerful regular expressions
3088 and rapid prototyping for tagging new languages.
3090 **** Regular expressions can use char escape sequences as in GCC.
3092 The escaped character sequence \a, \b, \d, \e, \f, \n, \r, \t, \v,
3093 respectively, stand for the ASCII characters BEL, BS, DEL, ESC, FF, NL,
3094 CR, TAB, VT.
3096 **** Regular expressions can be bound to a given language.
3098 The syntax --regex={LANGUAGE}REGEX means that REGEX is used to make tags
3099 only for files of language LANGUAGE, and ignored otherwise.  This is
3100 particularly useful when storing regexps in a file.
3102 **** Regular expressions can be read from a file.
3104 The --regex=@regexfile option means read the regexps from a file, one
3105 per line.  Lines beginning with space or tab are ignored.
3107 *** New language parsing features
3109 **** The `::' qualifier triggers C++ parsing in C file.
3111 Previously, only the `template' and `class' keywords had this effect.
3113 **** The GCC __attribute__ keyword is now recognized and ignored.
3115 **** New language HTML.
3117 Tags are generated for `title' as well as `h1', `h2', and `h3'.  Also,
3118 when `name=' is used inside an anchor and whenever `id=' is used.
3120 **** In Makefiles, constants are tagged.
3122 If you want the old behavior instead, thus avoiding to increase the
3123 size of the tags file, use the --no-globals option.
3125 **** New language Lua.
3127 All functions are tagged.
3129 **** In Perl, packages are tags.
3131 Subroutine tags are named from their package.  You can jump to sub tags
3132 as you did before, by the sub name, or additionally by looking for
3133 package::sub.
3135 **** In Prolog, etags creates tags for rules in addition to predicates.
3137 **** New language PHP.
3139 Functions, classes and defines are tags.  If the --members option is
3140 specified to etags, variables are tags also.
3142 **** New default keywords for TeX.
3144 The new keywords are def, newcommand, renewcommand, newenvironment and
3145 renewenvironment.
3147 **** In C and derived languages, etags creates tags for #undef
3149 *** Honor #line directives.
3151 When Etags parses an input file that contains C preprocessor's #line
3152 directives, it creates tags using the file name and line number
3153 specified in those directives.  This is useful when dealing with code
3154 created from Cweb source files.  When Etags tags the generated file, it
3155 writes tags pointing to the source file.
3157 *** New option --parse-stdin=FILE.
3159 This option is mostly useful when calling etags from programs.  It can
3160 be used (only once) in place of a file name on the command line.  Etags
3161 reads from standard input and marks the produced tags as belonging to
3162 the file FILE.
3164 ** VC Changes
3167 *** The key C-x C-q only changes the read-only state of the buffer
3168 (toggle-read-only).  It no longer checks files in or out.
3170 We made this change because we held a poll and found that many users
3171 were unhappy with the previous behavior.  If you do prefer this
3172 behavior, you can bind `vc-toggle-read-only' to C-x C-q in your
3173 `.emacs' file:
3175     (global-set-key "\C-x\C-q" 'vc-toggle-read-only)
3177 The function `vc-toggle-read-only' will continue to exist.
3180 *** The new variable `vc-cvs-global-switches' specifies switches that
3181 are passed to any CVS command invoked by VC.
3183 These switches are used as "global options" for CVS, which means they
3184 are inserted before the command name.  For example, this allows you to
3185 specify a compression level using the `-z#' option for CVS.
3188 *** New backends for Subversion and Meta-CVS.
3191 *** VC-Annotate mode enhancements
3193 In VC-Annotate mode, you can now use the following key bindings for
3194 enhanced functionality to browse the annotations of past revisions, or
3195 to view diffs or log entries directly from vc-annotate-mode:
3197     P:  annotates the previous revision
3198     N:  annotates the next revision
3199     J:  annotates the revision at line
3200     A:  annotates the revision previous to line
3201     D:  shows the diff of the revision at line with its previous revision
3202     L:  shows the log of the revision at line
3203     W:  annotates the workfile (most up to date) version
3205 ** pcl-cvs changes:
3208 *** In pcl-cvs mode, there is a new `d y' command to view the diffs
3209 between the local version of the file and yesterday's head revision
3210 in the repository.
3213 *** In pcl-cvs mode, there is a new `d r' command to view the changes
3214 anyone has committed to the repository since you last executed
3215 `checkout', `update' or `commit'.  That means using cvs diff options
3216 -rBASE -rHEAD.
3219 ** The new variable `mail-default-directory' specifies
3220 `default-directory' for mail buffers.  This directory is used for
3221 auto-save files of mail buffers.  It defaults to "~/".
3224 ** The mode line can indicate new mail in a directory or file.
3226 See the documentation of the user option
3227 `display-time-mail-directory'.
3229 ** Rmail changes:
3232 *** Rmail now displays 5-digit message ids in its summary buffer.
3234 *** The new commands rmail-end-of-message and rmail-summary end-of-message,
3235 by default bound to `/', go to the end of the current mail message in
3236 Rmail and Rmail summary buffers.
3239 *** Support for `movemail' from GNU mailutils was added to Rmail.
3241 This version of `movemail' allows to read mail from a wide range of
3242 mailbox formats, including remote POP3 and IMAP4 mailboxes with or
3243 without TLS encryption.  If GNU mailutils is installed on the system
3244 and its version of `movemail' can be found in exec-path, it will be
3245 used instead of the native one.
3247 ** Gnus package
3250 *** Gnus now includes Sieve and PGG
3252 Sieve is a library for managing Sieve scripts.  PGG is a library to handle
3253 PGP/MIME.
3256 *** There are many news features, bug fixes and improvements.
3258 See the file GNUS-NEWS or the node "Oort Gnus" in the Gnus manual for details.
3261 ** MH-E changes.
3263 Upgraded to MH-E version 8.0.2.  There have been major changes since
3264 version 5.0.2; see MH-E-NEWS for details.
3266 ** Calendar changes:
3269 *** You can now use < and >, instead of C-x < and C-x >, to scroll
3270 the calendar left or right.  (The old key bindings still work too.)
3273 *** There is a new calendar package, icalendar.el, that can be used to
3274 convert Emacs diary entries to/from the iCalendar format.
3277 *** Diary sexp entries can have custom marking in the calendar.
3278 Diary sexp functions which only apply to certain days (such as
3279 `diary-block' or `diary-cyclic') now take an optional parameter MARK,
3280 which is the name of a face or a single-character string indicating
3281 how to highlight the day in the calendar display.  Specifying a
3282 single-character string as @var{mark} places the character next to the
3283 day in the calendar.  Specifying a face highlights the day with that
3284 face.  This lets you have different colors or markings for vacations,
3285 appointments, paydays or anything else using a sexp.
3288 *** The new function `calendar-goto-day-of-year' (g D) prompts for a
3289 year and day number, and moves to that date. Negative day numbers
3290 count backward from the end of the year.
3293 *** The new Calendar function `calendar-goto-iso-week' (g w)
3294 prompts for a year and a week number, and moves to the first
3295 day of that ISO week.
3298 *** The new variable `calendar-minimum-window-height' affects the
3299 window generated by the function `generate-calendar-window'.
3302 *** The functions `holiday-easter-etc' and `holiday-advent' now take
3303 optional arguments, in order to only report on the specified holiday
3304 rather than all. This makes customization of variables such as
3305 `christian-holidays' simpler.
3308 *** The function `simple-diary-display' now by default sets a header line.
3309 This can be controlled through the variables `diary-header-line-flag'
3310 and `diary-header-line-format'.
3313 *** The procedure for activating appointment reminders has changed:
3314 use the new function `appt-activate'.  The new variable
3315 `appt-display-format' controls how reminders are displayed, replacing
3316 `appt-issue-message', `appt-visible', and `appt-msg-window'.
3319 *** The new functions `diary-from-outlook', `diary-from-outlook-gnus',
3320 and `diary-from-outlook-rmail' can be used to import diary entries
3321 from Outlook-format appointments in mail messages.  The variable
3322 `diary-outlook-formats' can be customized to recognize additional
3323 formats.
3326 ** Speedbar changes:
3328 *** Speedbar items can now be selected by clicking mouse-1, based on
3329 the `mouse-1-click-follows-link' mechanism.
3331 *** SPC and DEL are no longer bound to scroll up/down in the speedbar
3332 keymap.
3334 *** The new command `speedbar-toggle-line-expansion', bound to SPC,
3335 contracts or expands the line under the cursor.
3337 *** New command `speedbar-create-directory', bound to `M'.
3339 *** The new commands `speedbar-expand-line-descendants' and
3340 `speedbar-contract-line-descendants', bound to `[' and `]'
3341 respectively, expand and contract the line under cursor with all of
3342 its descendents.
3344 *** The new user option `speedbar-query-confirmation-method' controls
3345 how querying is performed for file operations.  A value of 'always
3346 means to always query before file operations; 'none-but-delete means
3347 to not query before any file operations, except before a file
3348 deletion.
3350 *** The new user option `speedbar-select-frame-method' specifies how
3351 to select a frame for displaying a file opened with the speedbar.  A
3352 value of 'attached means to use the attached frame (the frame that
3353 speedbar was started from.)  A number such as 1 or -1 means to pass
3354 that number to `other-frame'.
3356 *** The new user option `speedbar-use-tool-tips-flag', if non-nil,
3357 means to display tool-tips for speedbar items.
3359 *** The frame management code in speedbar.el has been split into a new
3360 `dframe' library.  Emacs Lisp code that makes use of the speedbar
3361 should use `dframe-attached-frame' instead of
3362 `speedbar-attached-frame', `dframe-timer' instead of `speedbar-timer',
3363 `dframe-close-frame' instead of `speedbar-close-frame', and
3364 `dframe-activity-change-focus-flag' instead of
3365 `speedbar-activity-change-focus-flag'.  The variables
3366 `speedbar-update-speed' and `speedbar-navigating-speed' are also
3367 obsolete; use `dframe-update-speed' instead.
3370 ** sql changes.
3372 *** The variable `sql-product' controls the highlighting of different
3373 SQL dialects.  This variable can be set globally via Customize, on a
3374 buffer-specific basis via local variable settings, or for the current
3375 session using the new SQL->Product submenu.  (This menu replaces the
3376 SQL->Highlighting submenu.)
3378 The following values are supported:
3380     ansi        ANSI Standard (default)
3381     db2         DB2
3382     informix    Informix
3383     ingres      Ingres
3384     interbase   Interbase
3385     linter      Linter
3386     ms          Microsoft
3387     mysql       MySQL
3388     oracle      Oracle
3389     postgres    Postgres
3390     solid       Solid
3391     sqlite      SQLite
3392     sybase      Sybase
3394 The current product name will be shown on the mode line following the
3395 SQL mode indicator.
3397 The technique of setting `sql-mode-font-lock-defaults' directly in
3398 your `.emacs' will no longer establish the default highlighting -- Use
3399 `sql-product' to accomplish this.
3401 ANSI keywords are always highlighted.
3403 *** The function `sql-add-product-keywords' can be used to add
3404 font-lock rules to the product specific rules.  For example, to have
3405 all identifiers ending in `_t' under MS SQLServer treated as a type,
3406 you would use the following line in your .emacs file:
3408   (sql-add-product-keywords 'ms
3409              '(("\\<\\w+_t\\>" . font-lock-type-face)))
3411 *** Oracle support includes keyword highlighting for Oracle 9i.
3413 Most SQL and PL/SQL keywords are implemented.  SQL*Plus commands are
3414 highlighted in `font-lock-doc-face'.
3416 *** Microsoft SQLServer support has been significantly improved.
3418 Keyword highlighting for SqlServer 2000 is implemented.
3419 sql-interactive-mode defaults to use osql, rather than isql, because
3420 osql flushes its error stream more frequently.  Thus error messages
3421 are displayed when they occur rather than when the session is
3422 terminated.
3424 If the username and password are not provided to `sql-ms', osql is
3425 called with the `-E' command line argument to use the operating system
3426 credentials to authenticate the user.
3428 *** Postgres support is enhanced.
3429 Keyword highlighting of Postgres 7.3 is implemented.  Prompting for
3430 the username and the pgsql `-U' option is added.
3432 *** MySQL support is enhanced.
3433 Keyword highlighting of MySql 4.0 is implemented.
3435 *** Imenu support has been enhanced to locate tables, views, indexes,
3436 packages, procedures, functions, triggers, sequences, rules, and
3437 defaults.
3439 *** Added SQL->Start SQLi Session menu entry which calls the
3440 appropriate `sql-interactive-mode' wrapper for the current setting of
3441 `sql-product'.
3444 *** sql.el supports the SQLite interpreter--call 'sql-sqlite'.
3446 ** FFAP changes:
3449 *** New ffap commands and keybindings:
3451 C-x C-r (`ffap-read-only'),
3452 C-x C-v (`ffap-alternate-file'), C-x C-d (`ffap-list-directory'),
3453 C-x 4 r (`ffap-read-only-other-window'), C-x 4 d (`ffap-dired-other-window'),
3454 C-x 5 r (`ffap-read-only-other-frame'), C-x 5 d (`ffap-dired-other-frame').
3457 *** FFAP accepts wildcards in a file name by default.
3459 C-x C-f passes the file name to `find-file' with non-nil WILDCARDS
3460 argument, which visits multiple files, and C-x d passes it to `dired'.
3463 ** Changes in Skeleton
3465 *** In skeleton.el, `-' marks the `skeleton-point' without interregion interaction.
3467 `@' has reverted to only setting `skeleton-positions' and no longer
3468 sets `skeleton-point'.  Skeletons which used @ to mark
3469 `skeleton-point' independent of `_' should now use `-' instead.  The
3470 updated `skeleton-insert' docstring explains these new features along
3471 with other details of skeleton construction.
3473 *** The variables `skeleton-transformation', `skeleton-filter', and
3474 `skeleton-pair-filter' have been renamed to
3475 `skeleton-transformation-function', `skeleton-filter-function', and
3476 `skeleton-pair-filter-function'.  The old names are still available
3477 as aliases.
3480 ** Hideshow mode changes
3482 *** New variable `hs-set-up-overlay' allows customization of the overlay
3483 used to effect hiding for hideshow minor mode.  Integration with isearch
3484 handles the overlay property `display' specially, preserving it during
3485 temporary overlay showing in the course of an isearch operation.
3487 *** New variable `hs-allow-nesting' non-nil means that hiding a block does
3488 not discard the hidden state of any "internal" blocks; when the parent
3489 block is later shown, the internal blocks remain hidden.  Default is nil.
3492 ** `hide-ifdef-mode' now uses overlays rather than selective-display
3493 to hide its text.  This should be mostly transparent but slightly
3494 changes the behavior of motion commands like C-e and C-p.
3497 ** `partial-completion-mode' now handles partial completion on directory names.
3500 ** The type-break package now allows `type-break-file-name' to be nil
3501 and if so, doesn't store any data across sessions.  This is handy if
3502 you don't want the `.type-break' file in your home directory or are
3503 annoyed by the need for interaction when you kill Emacs.
3506 ** `ps-print' can now print characters from the mule-unicode charsets.
3508 Printing text with characters from the mule-unicode-* sets works with
3509 `ps-print', provided that you have installed the appropriate BDF
3510 fonts.  See the file INSTALL for URLs where you can find these fonts.
3513 ** New command `strokes-global-set-stroke-string'.
3514 This is like `strokes-global-set-stroke', but it allows you to bind
3515 the stroke directly to a string to insert.  This is convenient for
3516 using strokes as an input method.
3518 ** Emacs server changes:
3521 *** You can have several Emacs servers on the same machine.
3523         % emacs --eval '(setq server-name "foo")' -f server-start &
3524         % emacs --eval '(setq server-name "bar")' -f server-start &
3525         % emacsclient -s foo file1
3526         % emacsclient -s bar file2
3529 *** The `emacsclient' command understands the options `--eval' and
3530 `--display' which tell Emacs respectively to evaluate the given Lisp
3531 expression and to use the given display when visiting files.
3534 *** User option `server-mode' can be used to start a server process.
3537 ** LDAP support now defaults to ldapsearch from OpenLDAP version 2.
3540 ** You can now disable pc-selection-mode after enabling it.
3542 M-x pc-selection-mode behaves like a proper minor mode, and with no
3543 argument it toggles the mode.  Turning off PC-Selection mode restores
3544 the global key bindings that were replaced by turning on the mode.
3547 ** `uniquify-strip-common-suffix' tells uniquify to prefer
3548 `file|dir1' and `file|dir2' to `file|dir1/subdir' and `file|dir2/subdir'.
3551 ** Support for `magic cookie' standout modes has been removed.
3553 Emacs still works on terminals that require magic cookies in order to
3554 use standout mode, but they can no longer display mode-lines in
3555 inverse-video.
3558 ** The game `mpuz' is enhanced.
3560 `mpuz' now allows the 2nd factor not to have two identical digits.  By
3561 default, all trivial operations involving whole lines are performed
3562 automatically.  The game uses faces for better visual feedback.
3564 ** battery.el changes:
3567 *** display-battery-mode replaces display-battery.
3570 *** battery.el now works on recent versions of OS X.
3573 ** calculator.el now has radix grouping mode.
3575 To enable this, set `calculator-output-radix' non-nil.  In this mode a
3576 separator character is used every few digits, making it easier to see
3577 byte boundaries etc.  For more info, see the documentation of the
3578 variable `calculator-radix-grouping-mode'.
3581 ** fast-lock.el and lazy-lock.el are obsolete.  Use jit-lock.el instead.
3584 ** iso-acc.el is now obsolete.  Use one of the latin input methods instead.
3587 ** zone-mode.el is now obsolete.  Use dns-mode.el instead.
3590 ** cplus-md.el has been deleted.
3592 ** Ewoc changes
3594 *** The new function `ewoc-delete' deletes specified nodes.
3596 *** `ewoc-create' now takes optional arg NOSEP, which inhibits insertion of
3597 a newline after each pretty-printed entry and after the header and footer.
3598 This allows you to create multiple-entry ewocs on a single line and to
3599 effect "invisible" nodes by arranging for the pretty-printer to not print
3600 anything for those nodes.
3602 For example, these two sequences of expressions behave identically:
3604 ;; NOSEP nil
3605 (defun PP (data) (insert (format "%S" data)))
3606 (ewoc-create 'PP "start\n")
3608 ;; NOSEP t
3609 (defun PP (data) (insert (format "%S\n" data)))
3610 (ewoc-create 'PP "start\n\n" "\n" t)
3612 ** Locate changes
3615 *** By default, reverting the *Locate* buffer now just runs the last
3616 `locate' command back over again without offering to update the locate
3617 database (which normally only works if you have root privileges).  If
3618 you prefer the old behavior, set the new customizable option
3619 `locate-update-when-revert' to t.
3622 * Changes in Emacs 22.1 on non-free operating systems
3625 ** The HOME directory defaults to Application Data under the user profile.
3627 If you used a previous version of Emacs without setting the HOME
3628 environment variable and a `.emacs' was saved, then Emacs will continue
3629 using C:/ as the default HOME.  But if you are installing Emacs afresh,
3630 the default location will be the "Application Data" (or similar
3631 localized name) subdirectory of your user profile.  A typical location
3632 of this directory is "C:\Documents and Settings\USERNAME\Application Data",
3633 where USERNAME is your user name.
3635 This change means that users can now have their own `.emacs' files on
3636 shared computers, and the default HOME directory is less likely to be
3637 read-only on computers that are administered by someone else.
3640 ** Passing resources on the command line now works on MS Windows.
3642 You can use --xrm to pass resource settings to Emacs, overriding any
3643 existing values.  For example:
3645   emacs --xrm "Emacs.Background:red" --xrm "Emacs.Geometry:100x20"
3647 will start up Emacs on an initial frame of 100x20 with red background,
3648 irrespective of geometry or background setting on the Windows registry.
3651 ** On MS Windows, the "system caret" now follows the cursor.
3653 This enables Emacs to work better with programs that need to track
3654 the cursor, for example screen magnifiers and text to speech programs.
3657 ** Tooltips now work on MS Windows.
3659 See the Emacs 21.1 NEWS entry for tooltips for details.
3662 ** Images are now supported on MS Windows.
3664 PBM and XBM images are supported out of the box. Other image formats
3665 depend on external libraries.  All of these libraries have been ported
3666 to Windows, and can be found in both source and binary form at
3667 http://gnuwin32.sourceforge.net/.  Note that libpng also depends on
3668 zlib, and tiff depends on the version of jpeg that it was compiled
3669 against.  For additional information, see nt/INSTALL.
3672 ** Sound is now supported on MS Windows.
3674 WAV format is supported on all versions of Windows, other formats such
3675 as AU, AIFF and MP3 may be supported in the more recent versions of
3676 Windows, or when other software provides hooks into the system level
3677 sound support for those formats.
3680 ** Different shaped mouse pointers are supported on MS Windows.
3682 The mouse pointer changes shape depending on what is under the pointer.
3685 ** Pointing devices with more than 3 buttons are now supported on MS Windows.
3687 The new variable `w32-pass-extra-mouse-buttons-to-system' controls
3688 whether Emacs should handle the extra buttons itself (the default), or
3689 pass them to Windows to be handled with system-wide functions.
3692 ** Emacs takes note of colors defined in Control Panel on MS-Windows.
3694 The Control Panel defines some default colors for applications in much
3695 the same way as wildcard X Resources do on X.  Emacs now adds these
3696 colors to the colormap prefixed by System (eg SystemMenu for the
3697 default Menu background, SystemMenuText for the foreground), and uses
3698 some of them to initialize some of the default faces.
3699 `list-colors-display' shows the list of System color names, in case
3700 you wish to use them in other faces.
3703 ** On MS Windows NT/W2K/XP, Emacs uses Unicode for clipboard operations.
3705 Those systems use Unicode internally, so this allows Emacs to share
3706 multilingual text with other applications. On other versions of
3707 MS Windows, Emacs now uses the appropriate locale coding-system, so
3708 the clipboard should work correctly for your local language without
3709 any customizations.
3712 ** Running in a console window in Windows now uses the console size.
3714 Previous versions of Emacs erred on the side of having a usable Emacs
3715 through telnet, even though that was inconvenient if you use Emacs in
3716 a local console window with a scrollback buffer. The default value of
3717 w32-use-full-screen-buffer is now nil, which favors local console
3718 windows. Recent versions of Windows telnet also work well with this
3719 setting. If you are using an older telnet server then Emacs detects
3720 that the console window dimensions that are reported are not sane, and
3721 defaults to 80x25. If you use such a telnet server regularly at a size
3722 other than 80x25, you can still manually set
3723 w32-use-full-screen-buffer to t.
3726 ** On Mac OS, `keyboard-coding-system' changes based on the keyboard script.
3729 ** The variable `mac-keyboard-text-encoding' and the constants
3730 `kTextEncodingMacRoman', `kTextEncodingISOLatin1', and
3731 `kTextEncodingISOLatin2' are obsolete.
3733 ** The variable `mac-command-key-is-meta' is obsolete.  Use
3734 `mac-command-modifier' and `mac-option-modifier' instead.
3736 * Incompatible Lisp Changes in Emacs 22.1
3738 ** The function find-operation-coding-system may be called with a cons
3739 (FILENAME . BUFFER) in the second argument if the first argument
3740 OPERATION is `insert-file-contents', and thus a function registered in
3741 `file-coding-system-alist' is also called with such an argument.
3744 ** The variables post-command-idle-hook and post-command-idle-delay have
3745     been removed.  Use run-with-idle-timer instead.
3748 ** `suppress-keymap' now works by remapping `self-insert-command' to
3749 the command `undefined'.  (In earlier Emacs versions, it used
3750 `substitute-key-definition' to rebind self inserting characters to
3751 `undefined'.)
3754 ** Mode line display ignores text properties as well as the
3755 :propertize and :eval forms in the value of a variable whose
3756 `risky-local-variable' property is nil.
3759 The function `comint-send-input' now accepts 3 optional arguments:
3761   (comint-send-input &optional no-newline artificial)
3763 Callers sending input not from the user should use bind the 3rd
3764 argument `artificial' to a non-nil value, to prevent Emacs from
3765 deleting the part of subprocess output that matches the input.
3768 ** Support for Mocklisp has been removed.
3771 ** The variable `memory-full' now remains t until
3772 there is no longer a shortage of memory.
3774 ** When Emacs receives a USR1 or USR2 signal, this generates
3775 an input event: usr1-signal or usr2-signal.
3777 * Lisp Changes in Emacs 22.1
3779 ** General Lisp changes:
3781 *** The function `expt' handles negative exponents differently.
3782 The value for `(expt A B)', if both A and B are integers and B is
3783 negative, is now a float.  For example: (expt 2 -2) => 0.25.
3786 *** The function `eql' is now available without requiring the CL package.
3789 *** The new function `memql' is like `memq', but uses `eql' for comparison,
3790 that is, floats are compared by value and other elements with `eq'.
3793 *** `makehash' is now obsolete.  Use `make-hash-table' instead.
3796 *** `add-to-list' takes an optional third argument, APPEND.
3798 If APPEND is non-nil, the new element gets added at the end of the
3799 list instead of at the beginning.  This change actually occurred in
3800 Emacs 21.1, but was not documented then.
3803 *** New function `add-to-ordered-list' is like `add-to-list' but
3804 associates a numeric ordering of each element added to the list.
3807 *** New function `copy-tree' makes a copy of a tree.
3809 It recursively copies through both CARs and CDRs.
3812 *** New function `delete-dups' deletes `equal' duplicate elements from a list.
3814 It modifies the list destructively, like `delete'.  Of several `equal'
3815 occurrences of an element in the list, the one that's kept is the
3816 first one.
3819 *** New function `add-to-history' adds an element to a history list.
3821 Lisp packages should use this function to add elements to their
3822 history lists.
3824 If `history-delete-duplicates' is non-nil, it removes duplicates of
3825 the new element from the history list it updates.
3828 *** New function `rassq-delete-all'.
3830 (rassq-delete-all VALUE ALIST) deletes, from ALIST, each element whose
3831 CDR is `eq' to the specified value.
3834 *** The function `number-sequence' makes a list of equally-separated numbers.
3836 For instance, (number-sequence 4 9) returns (4 5 6 7 8 9).  By
3837 default, the separation is 1, but you can specify a different
3838 separation as the third argument.  (number-sequence 1.5 6 2) returns
3839 (1.5 3.5 5.5).
3842 *** New variables `most-positive-fixnum' and `most-negative-fixnum'.
3844 They hold the largest and smallest possible integer values.
3847 *** Minor change in the function `format'.
3849 Some flags that were accepted but not implemented (such as "*") are no
3850 longer accepted.
3853 *** Functions `get' and `plist-get' no longer give errors for bad plists.
3855 They return nil for a malformed property list or if the list is
3856 cyclic.
3859 *** New functions `lax-plist-get' and `lax-plist-put'.
3861 They are like `plist-get' and `plist-put', except that they compare
3862 the property name using `equal' rather than `eq'.
3865 *** New variable `print-continuous-numbering'.
3867 When this is non-nil, successive calls to print functions use a single
3868 numbering scheme for circular structure references.  This is only
3869 relevant when `print-circle' is non-nil.
3871 When you bind `print-continuous-numbering' to t, you should
3872 also bind `print-number-table' to nil.
3875 *** New function `macroexpand-all' expands all macros in a form.
3877 It is similar to the Common-Lisp function of the same name.
3878 One difference is that it guarantees to return the original argument
3879 if no expansion is done, which can be tested using `eq'.
3882 *** The function `atan' now accepts an optional second argument.
3884 When called with 2 arguments, as in `(atan Y X)', `atan' returns the
3885 angle in radians between the vector [X, Y] and the X axis.  (This is
3886 equivalent to the standard C library function `atan2'.)
3889 *** A function or macro's doc string can now specify the calling pattern.
3891 You put this info in the doc string's last line.  It should be
3892 formatted so as to match the regexp "\n\n(fn .*)\\'".  If you don't
3893 specify this explicitly, Emacs determines it from the actual argument
3894 names.  Usually that default is right, but not always.
3897 *** New macro `with-local-quit' temporarily allows quitting.
3899 A quit inside the body of `with-local-quit' is caught by the
3900 `with-local-quit' form itself, but another quit will happen later once
3901 the code that has inhibited quitting exits.
3903 This is for use around potentially blocking or long-running code
3904 inside timer functions and `post-command-hook' functions.
3907 *** New macro `define-obsolete-function-alias'.
3909 This combines `defalias' and `make-obsolete'.
3912 *** New function `unsafep' determines whether a Lisp form is safe.
3914 It returns nil if the given Lisp form can't possibly do anything
3915 dangerous; otherwise it returns a reason why the form might be unsafe
3916 (calls unknown function, alters global variable, etc.).
3919 *** New macro `eval-at-startup' specifies expressions to
3920 evaluate when Emacs starts up.  If this is done after startup,
3921 it evaluates those expressions immediately.
3923 This is useful in packages that can be preloaded.
3925 *** `list-faces-display' takes an optional argument, REGEXP.
3927 If it is non-nil, the function lists only faces matching this regexp.
3930 *** New functions `string-or-null-p' and `booleanp'.
3932 `string-or-null-p' returns non-nil iff OBJECT is a string or nil.
3933 `booleanp' returns non-nil iff OBJECT is a t or nil.
3936 *** New hook `command-error-function'.
3938 By setting this variable to a function, you can control
3939 how the editor command loop shows the user an error message.
3941 ** Lisp code indentation features:
3944 *** The `defmacro' form can contain indentation and edebug declarations.
3946 These declarations specify how to indent the macro calls in Lisp mode
3947 and how to debug them with Edebug.  You write them like this:
3949    (defmacro NAME LAMBDA-LIST [DOC-STRING] [DECLARATION ...] ...)
3951 DECLARATION is a list `(declare DECLARATION-SPECIFIER ...)'.  The
3952 possible declaration specifiers are:
3954 (indent INDENT)
3955         Set NAME's `lisp-indent-function' property to INDENT.
3957 (edebug DEBUG)
3958         Set NAME's `edebug-form-spec' property to DEBUG.  (This is
3959         equivalent to writing a `def-edebug-spec' for the macro,
3960         but this is cleaner.)
3963 *** cl-indent now allows customization of Indentation of backquoted forms.
3965 See the new user option `lisp-backquote-indentation'.
3968 *** cl-indent now handles indentation of simple and extended `loop' forms.
3970 The new user options `lisp-loop-keyword-indentation',
3971 `lisp-loop-forms-indentation', and `lisp-simple-loop-indentation' can
3972 be used to customize the indentation of keywords and forms in loop
3973 forms.
3976 ** Variable aliases:
3978 *** New function: defvaralias ALIAS-VAR BASE-VAR [DOCSTRING]
3980 This function defines the symbol ALIAS-VAR as a variable alias for
3981 symbol BASE-VAR.  This means that retrieving the value of ALIAS-VAR
3982 returns the value of BASE-VAR, and changing the value of ALIAS-VAR
3983 changes the value of BASE-VAR.
3985 DOCSTRING, if present, is the documentation for ALIAS-VAR; else it has
3986 the same documentation as BASE-VAR.
3988 *** New function: indirect-variable VARIABLE
3990 This function returns the variable at the end of the chain of aliases
3991 of VARIABLE.  If VARIABLE is not a symbol, or if VARIABLE is not
3992 defined as an alias, the function returns VARIABLE.
3994 It might be noteworthy that variables aliases work for all kinds of
3995 variables, including buffer-local and frame-local variables.
3998 *** The macro `define-obsolete-variable-alias' combines `defvaralias' and
3999 `make-obsolete-variable'.
4001 ** defcustom changes:
4004 *** The package-version keyword has been added to provide
4005 `customize-changed-options' functionality to packages in the future.
4006 Developers who make use of this keyword must also update the new
4007 variable `customize-package-emacs-version-alist'.
4010 *** The new customization type `float' requires a floating point number.
4012 ** String changes:
4015 *** The escape sequence \s is now interpreted as a SPACE character.
4017 Exception: In a character constant, if it is followed by a `-' in a
4018 character constant (e.g. ?\s-A), it is still interpreted as the super
4019 modifier.  In strings, \s is always interpreted as a space.
4022 *** A hex escape in a string constant forces the string to be multibyte.
4025 *** An octal escape in a string constant forces the string to be unibyte.
4028 *** `split-string' now includes null substrings in the returned list if
4029 the optional argument SEPARATORS is non-nil and there are matches for
4030 SEPARATORS at the beginning or end of the string.  If SEPARATORS is
4031 nil, or if the new optional third argument OMIT-NULLS is non-nil, all
4032 empty matches are omitted from the returned list.
4035 *** New function `string-to-multibyte' converts a unibyte string to a
4036 multibyte string with the same individual character codes.
4039 *** New function `substring-no-properties' returns a substring without
4040 text properties.
4043 *** The new function `assoc-string' replaces `assoc-ignore-case' and
4044 `assoc-ignore-representation', which are still available, but have
4045 been declared obsolete.
4048 *** New syntax: \uXXXX and \UXXXXXXXX specify Unicode code points in hex.
4049 Use "\u0428" to specify a string consisting of CYRILLIC CAPITAL LETTER SHA,
4050 or "\U0001D6E2" to specify one consisting of MATHEMATICAL ITALIC CAPITAL
4051 ALPHA (the latter is greater than #xFFFF and thus needs the longer
4052 syntax).  Also available for characters.
4055 ** Displaying warnings to the user.
4057 See the functions `warn' and `display-warning', or the Lisp Manual.
4058 If you want to be sure the warning will not be overlooked, this
4059 facility is much better than using `message', since it displays
4060 warnings in a separate window.
4063 ** Progress reporters.
4065 These provide a simple and uniform way for commands to present
4066 progress messages for the user.
4068 See the new functions `make-progress-reporter',
4069 `progress-reporter-update', `progress-reporter-force-update',
4070 `progress-reporter-done', and `dotimes-with-progress-reporter'.
4072 ** Buffer positions:
4075 *** Function `compute-motion' now calculates the usable window
4076 width if the WIDTH argument is nil.  If the TOPOS argument is nil,
4077 the usable window height and width is used.
4080 *** The `line-move', `scroll-up', and `scroll-down' functions will now
4081 modify the window vscroll to scroll through display rows that are
4082 taller that the height of the window, for example in the presence of
4083 large images.  To disable this feature, bind the new variable
4084 `auto-window-vscroll' to nil.
4087 *** The argument to `forward-word', `backward-word' is optional.
4089 It defaults to 1.
4092 *** Argument to `forward-to-indentation' and `backward-to-indentation' is optional.
4094 It defaults to 1.
4097 *** New function `mouse-on-link-p' tests if a position is in a clickable link.
4099 This is the function used by the new `mouse-1-click-follows-link'
4100 functionality.
4103 *** New function `line-number-at-pos' returns the line number of a position.
4105 It an optional buffer position argument that defaults to point.
4108 *** `field-beginning' and `field-end' take new optional argument, LIMIT.
4110 This argument tells them not to search beyond LIMIT.  Instead they
4111 give up and return LIMIT.
4114 *** Function `pos-visible-in-window-p' now returns the pixel coordinates
4115 and partial visibility state of the corresponding row, if the PARTIALLY
4116 arg is non-nil.
4119 *** New function `window-line-height' is an efficient way to get
4120 information about a specific text line in a window provided that the
4121 window's display is up-to-date.
4124 *** New functions `posn-at-point' and `posn-at-x-y' return
4125 click-event-style position information for a given visible buffer
4126 position or for a given window pixel coordinate.
4128 ** Text modification:
4131 *** The new function `buffer-chars-modified-tick' returns a buffer's
4132 tick counter for changes to characters.  Each time text in that buffer
4133 is inserted or deleted, the character-change counter is updated to the
4134 tick counter (`buffer-modified-tick').  Text property changes leave it
4135 unchanged.
4138 *** The new function `insert-for-yank' normally works like `insert', but
4139 removes the text properties in the `yank-excluded-properties' list
4140 and handles the `yank-handler' text property.
4143 *** The new function `insert-buffer-substring-as-yank' is like
4144 `insert-for-yank' except that it gets the text from another buffer as
4145 in `insert-buffer-substring'.
4148 *** The new function `insert-buffer-substring-no-properties' is like
4149 `insert-buffer-substring', but removes all text properties from the
4150 inserted substring.
4153 *** The new function `filter-buffer-substring' extracts a buffer
4154 substring, passes it through a set of filter functions, and returns
4155 the filtered substring.  Use it instead of `buffer-substring' or
4156 `delete-and-extract-region' when copying text into a user-accessible
4157 data structure, such as the kill-ring, X clipboard, or a register.
4159 The list of filter function is specified by the new variable
4160 `buffer-substring-filters'.  For example, Longlines mode adds to
4161 `buffer-substring-filters' to remove soft newlines from the copied
4162 text.
4165 *** Function `translate-region' accepts also a char-table as TABLE
4166 argument.
4169 *** The new translation table `translation-table-for-input'
4170 is used for customizing self-insertion.  The character to
4171 be inserted is translated through it.
4174 *** Text clones.
4176 The new function `text-clone-create'.  Text clones are chunks of text
4177 that are kept identical by transparently propagating changes from one
4178 clone to the other.
4181 *** The function `insert-string' is now obsolete.
4183 ** Filling changes.
4186 *** In determining an adaptive fill prefix, Emacs now tries the function in
4187 `adaptive-fill-function' _before_ matching the buffer line against
4188 `adaptive-fill-regexp' rather than _after_ it.
4191 ** Atomic change groups.
4193 To perform some changes in the current buffer "atomically" so that
4194 they either all succeed or are all undone, use `atomic-change-group'
4195 around the code that makes changes.  For instance:
4197   (atomic-change-group
4198     (insert foo)
4199     (delete-region x y))
4201 If an error (or other nonlocal exit) occurs inside the body of
4202 `atomic-change-group', it unmakes all the changes in that buffer that
4203 were during the execution of the body.  The change group has no effect
4204 on any other buffers--any such changes remain.
4206 If you need something more sophisticated, you can directly call the
4207 lower-level functions that `atomic-change-group' uses.  Here is how.
4209 To set up a change group for one buffer, call `prepare-change-group'.
4210 Specify the buffer as argument; it defaults to the current buffer.
4211 This function returns a "handle" for the change group.  You must save
4212 the handle to activate the change group and then finish it.
4214 Before you change the buffer again, you must activate the change
4215 group.  Pass the handle to `activate-change-group' afterward to
4216 do this.
4218 After you make the changes, you must finish the change group.  You can
4219 either accept the changes or cancel them all.  Call
4220 `accept-change-group' to accept the changes in the group as final;
4221 call `cancel-change-group' to undo them all.
4223 You should use `unwind-protect' to make sure the group is always
4224 finished.  The call to `activate-change-group' should be inside the
4225 `unwind-protect', in case the user types C-g just after it runs.
4226 (This is one reason why `prepare-change-group' and
4227 `activate-change-group' are separate functions.)  Once you finish the
4228 group, don't use the handle again--don't try to finish the same group
4229 twice.
4231 To make a multibuffer change group, call `prepare-change-group' once
4232 for each buffer you want to cover, then use `nconc' to combine the
4233 returned values, like this:
4235   (nconc (prepare-change-group buffer-1)
4236          (prepare-change-group buffer-2))
4238 You can then activate the multibuffer change group with a single call
4239 to `activate-change-group', and finish it with a single call to
4240 `accept-change-group' or `cancel-change-group'.
4242 Nested use of several change groups for the same buffer works as you
4243 would expect.  Non-nested use of change groups for the same buffer
4244 will lead to undesirable results, so don't let it happen; the first
4245 change group you start for any given buffer should be the last one
4246 finished.
4248 ** Buffer-related changes:
4251 *** `list-buffers-noselect' now takes an additional argument, BUFFER-LIST.
4253 If it is non-nil, it specifies which buffers to list.
4256 *** `kill-buffer-hook' is now a permanent local.
4259 *** The new function `buffer-local-value' returns the buffer-local
4260 binding of VARIABLE (a symbol) in buffer BUFFER.  If VARIABLE does not
4261 have a buffer-local binding in buffer BUFFER, it returns the default
4262 value of VARIABLE instead.
4264 *** The function `frame-or-buffer-changed-p' now lets you maintain
4265 various status records in parallel.
4267 It takes a variable (a symbol) as argument.  If the variable is non-nil,
4268 then its value should be a vector installed previously by
4269 `frame-or-buffer-changed-p'.  If the frame names, buffer names, buffer
4270 order, or their read-only or modified flags have changed, since the
4271 time the vector's contents were recorded by a previous call to
4272 `frame-or-buffer-changed-p', then the function returns t.  Otherwise
4273 it returns nil.
4275 On the first call to `frame-or-buffer-changed-p', the variable's
4276 value should be nil.  `frame-or-buffer-changed-p' stores a suitable
4277 vector into the variable and returns t.
4279 If the variable is itself nil, then `frame-or-buffer-changed-p' uses,
4280 for compatibility, an internal variable which exists only for this
4281 purpose.
4284 *** The function `read-buffer' follows the convention for reading from
4285 the minibuffer with a default value: if DEF is non-nil, the minibuffer
4286 prompt provided in PROMPT is edited to show the default value provided
4287 in DEF before the terminal colon and space.
4289 ** Searching and matching changes:
4292 *** New function `looking-back' checks whether a regular expression matches
4293 the text before point.  Specifying the LIMIT argument bounds how far
4294 back the match can start; this is a way to keep it from taking too long.
4297 *** The new variable `search-spaces-regexp' controls how to search
4298 for spaces in a regular expression.  If it is non-nil, it should be a
4299 regular expression, and any series of spaces stands for that regular
4300 expression.  If it is nil, spaces stand for themselves.
4302 Spaces inside of constructs such as `[..]' and inside loops such as
4303 `*', `+', and `?' are never replaced with `search-spaces-regexp'.
4306 *** New regular expression operators, `\_<' and `\_>'.
4308 These match the beginning and end of a symbol.  A symbol is a
4309 non-empty sequence of either word or symbol constituent characters, as
4310 specified by the syntax table.
4313 *** rx.el has new corresponding `symbol-end' and `symbol-start' elements.
4316 *** `skip-chars-forward' and `skip-chars-backward' now handle
4317 character classes such as `[:alpha:]', along with individual
4318 characters and ranges.
4321 *** In `replace-match', the replacement text no longer inherits
4322 properties from surrounding text.
4325 *** The list returned by `(match-data t)' now has the buffer as a final
4326 element, if the last match was on a buffer.  `set-match-data'
4327 accepts such a list for restoring the match state.
4330 *** Functions `match-data' and `set-match-data' now have an optional
4331 argument `reseat'.  When non-nil, all markers in the match data list
4332 passed to these functions will be reseated to point to nowhere.
4335 *** The default value of `sentence-end' is now defined using the new
4336 variable `sentence-end-without-space', which contains such characters
4337 that end a sentence without following spaces.
4339 The function `sentence-end' should be used to obtain the value of the
4340 variable `sentence-end'.  If the variable `sentence-end' is nil, then
4341 this function returns the regexp constructed from the variables
4342 `sentence-end-without-period', `sentence-end-double-space' and
4343 `sentence-end-without-space'.
4345 ** Undo changes:
4348 *** `buffer-undo-list' can allows programmable elements.
4350 These elements have the form (apply FUNNAME . ARGS), where FUNNAME is
4351 a symbol other than t or nil.  That stands for a high-level change
4352 that should be undone by evaluating (apply FUNNAME ARGS).
4354 These entries can also have the form (apply DELTA BEG END FUNNAME . ARGS)
4355 which indicates that the change which took place was limited to the
4356 range BEG...END and increased the buffer size by DELTA.
4359 *** If the buffer's undo list for the current command gets longer than
4360 `undo-outer-limit', garbage collection empties it.  This is to prevent
4361 it from using up the available memory and choking Emacs.
4364 ** New `yank-handler' text property can be used to control how
4365 previously killed text on the kill ring is reinserted.
4367 The value of the `yank-handler' property must be a list with one to four
4368 elements with the following format:
4369   (FUNCTION PARAM NOEXCLUDE UNDO).
4371 The `insert-for-yank' function looks for a yank-handler property on
4372 the first character on its string argument (typically the first
4373 element on the kill-ring).  If a `yank-handler' property is found,
4374 the normal behavior of `insert-for-yank' is modified in various ways:
4376   When FUNCTION is present and non-nil, it is called instead of `insert'
4377 to insert the string.  FUNCTION takes one argument--the object to insert.
4378   If PARAM is present and non-nil, it replaces STRING as the object
4379 passed to FUNCTION (or `insert'); for example, if FUNCTION is
4380 `yank-rectangle', PARAM should be a list of strings to insert as a
4381 rectangle.
4382   If NOEXCLUDE is present and non-nil, the normal removal of the
4383 `yank-excluded-properties' is not performed; instead FUNCTION is
4384 responsible for removing those properties.  This may be necessary
4385 if FUNCTION adjusts point before or after inserting the object.
4386   If UNDO is present and non-nil, it is a function that will be called
4387 by `yank-pop' to undo the insertion of the current object.  It is
4388 called with two arguments, the start and end of the current region.
4389 FUNCTION can set `yank-undo-function' to override the UNDO value.
4391 *** The functions `kill-new', `kill-append', and `kill-region' now have an
4392 optional argument to specify the `yank-handler' text property to put on
4393 the killed text.
4395 *** The function `yank-pop' will now use a non-nil value of the variable
4396 `yank-undo-function' (instead of `delete-region') to undo the previous
4397 `yank' or `yank-pop' command (or a call to `insert-for-yank').  The function
4398 `insert-for-yank' automatically sets that variable according to the UNDO
4399 element of the string argument's `yank-handler' text property if present.
4401 *** The function `insert-for-yank' now supports strings where the
4402 `yank-handler' property does not span the first character of the
4403 string.  The old behavior is available if you call
4404 `insert-for-yank-1' instead.
4406 ** Syntax table changes:
4409 *** The macro `with-syntax-table' no longer copies the syntax table.
4412 *** The new function `syntax-after' returns the syntax code
4413 of the character after a specified buffer position, taking account
4414 of text properties as well as the character code.
4417 *** `syntax-class' extracts the class of a syntax code (as returned
4418 by `syntax-after').
4421 *** The new function `syntax-ppss' provides an efficient way to find the
4422 current syntactic context at point.
4424 ** File operation changes:
4427 *** New vars `exec-suffixes' and `load-suffixes' used when
4428 searching for an executable or an Emacs Lisp file.
4431 *** The new primitive `set-file-times' sets a file's access and
4432 modification times.  Magic file name handlers can handle this
4433 operation.
4436 *** The new function `file-remote-p' tests a file name and returns
4437 non-nil if it specifies a remote file (one that Emacs accesses using
4438 its own special methods and not directly through the file system).
4439 The value in that case is an identifier for the remote file system.
4442 *** `buffer-auto-save-file-format' is the new name for what was
4443 formerly called `auto-save-file-format'.  It is now a permanent local.
4446 *** Functions `file-name-sans-extension' and `file-name-extension' now
4447 ignore the leading dots in file names, so that file names such as
4448 `.emacs' are treated as extensionless.
4451 *** `visited-file-modtime' and `calendar-time-from-absolute' now return
4452 a list of two integers, instead of a cons.
4455 *** `file-chase-links' now takes an optional second argument LIMIT which
4456 specifies the maximum number of links to chase through.  If after that
4457 many iterations the file name obtained is still a symbolic link,
4458 `file-chase-links' returns it anyway.
4461 *** The new hook `before-save-hook' is invoked by `basic-save-buffer'
4462 before saving buffers.  This allows packages to perform various final
4463 tasks.  For example, it can be used by the copyright package to make
4464 sure saved files have the current year in any copyright headers.
4467 *** If `buffer-save-without-query' is non-nil in some buffer,
4468 `save-some-buffers' will always save that buffer without asking (if
4469 it's modified).
4472 *** New function `locate-file' searches for a file in a list of directories.
4473 `locate-file' accepts a name of a file to search (a string), and two
4474 lists: a list of directories to search in and a list of suffixes to
4475 try; typical usage might use `exec-path' and `load-path' for the list
4476 of directories, and `exec-suffixes' and `load-suffixes' for the list
4477 of suffixes.  The function also accepts a predicate argument to
4478 further filter candidate files.
4480 One advantage of using this function is that the list of suffixes in
4481 `exec-suffixes' is OS-dependant, so this function will find
4482 executables without polluting Lisp code with OS dependencies.
4485 *** The precedence of file name handlers has been changed.
4487 Instead of choosing the first handler that matches,
4488 `find-file-name-handler' now gives precedence to a file name handler
4489 that matches nearest the end of the file name.  More precisely, the
4490 handler whose (match-beginning 0) is the largest is chosen.  In case
4491 of ties, the old "first matched" rule applies.
4494 *** A file name handler can declare which operations it handles.
4496 You do this by putting an `operation' property on the handler name
4497 symbol.  The property value should be a list of the operations that
4498 the handler really handles.  It won't be called for any other
4499 operations.
4501 This is useful for autoloaded handlers, to prevent them from being
4502 autoloaded when not really necessary.
4505 *** The function `make-auto-save-file-name' is now handled by file
4506 name handlers.  This will be exploited for remote files mainly.
4508 ** Input changes:
4511 *** The functions `read-event', `read-char', and `read-char-exclusive'
4512 have a new optional argument SECONDS.  If non-nil, this specifies a
4513 maximum time to wait for input, in seconds.  If no input arrives after
4514 this time elapses, the functions stop waiting and return nil.
4517 *** An interactive specification can now use the code letter 'U' to get
4518 the up-event that was discarded in case the last key sequence read for a
4519 previous `k' or `K' argument was a down-event; otherwise nil is used.
4522 *** The new interactive-specification `G' reads a file name
4523 much like `F', but if the input is a directory name (even defaulted),
4524 it returns just the directory name.
4527 *** Functions `y-or-n-p', `read-char', `read-key-sequence' and the like, that
4528 display a prompt but don't use the minibuffer, now display the prompt
4529 using the text properties (esp. the face) of the prompt string.
4532 *** (while-no-input BODY...) runs BODY, but only so long as no input
4533 arrives.  If the user types or clicks anything, BODY stops as if a
4534 quit had occurred.  `while-no-input' returns the value of BODY, if BODY
4535 finishes.  It returns nil if BODY was aborted by a quit, and t if
4536 BODY was aborted by arrival of input.
4538 ** Minibuffer changes:
4541 *** The new function `minibufferp' returns non-nil if its optional
4542 buffer argument is a minibuffer.  If the argument is omitted, it
4543 defaults to the current buffer.
4546 *** New function `minibuffer-selected-window' returns the window which
4547 was selected when entering the minibuffer.
4550 *** The `read-file-name' function now takes an additional argument which
4551 specifies a predicate which the file name read must satisfy.  The
4552 new variable `read-file-name-predicate' contains the predicate argument
4553 while reading the file name from the minibuffer; the predicate in this
4554 variable is used by read-file-name-internal to filter the completion list.
4557 *** The new variable `read-file-name-function' can be used by Lisp code
4558 to override the built-in `read-file-name' function.
4561 *** The new variable `read-file-name-completion-ignore-case' specifies
4562 whether completion ignores case when reading a file name with the
4563 `read-file-name' function.
4566 *** The new function `read-directory-name' is for reading a directory name.
4568 It is like `read-file-name' except that the defaulting works better
4569 for directories, and completion inside it shows only directories.
4572 *** The new variable `history-add-new-input' specifies whether to add new
4573 elements in history.  If set to nil, minibuffer reading functions don't
4574 add new elements to the history list, so it is possible to do this
4575 afterwards by calling `add-to-history' explicitly.
4577 ** Completion changes:
4580 *** The new function `minibuffer-completion-contents' returns the contents
4581 of the minibuffer just before point.  That is what completion commands
4582 operate on.
4585 *** The functions `all-completions' and `try-completion' now accept lists
4586 of strings as well as hash-tables additionally to alists, obarrays
4587 and functions.  Furthermore, the function `test-completion' is now
4588 exported to Lisp.  The keys in alists and hash tables can be either
4589 strings or symbols, which are automatically converted with to strings.
4592 *** The new macro `dynamic-completion-table' supports using functions
4593 as a dynamic completion table.
4595   (dynamic-completion-table FUN)
4597 FUN is called with one argument, the string for which completion is required,
4598 and it should return an alist containing all the intended possible
4599 completions.  This alist can be a full list of possible completions so that FUN
4600 can ignore the value of its argument.  If completion is performed in the
4601 minibuffer, FUN will be called in the buffer from which the minibuffer was
4602 entered.  `dynamic-completion-table' then computes the completion.
4605 *** The new macro `lazy-completion-table' initializes a variable
4606 as a lazy completion table.
4608   (lazy-completion-table VAR FUN)
4610 If the completion table VAR is used for the first time (e.g., by passing VAR
4611 as an argument to `try-completion'), the function FUN is called with no
4612 arguments.  FUN must return the completion table that will be stored in VAR.
4613 If completion is requested in the minibuffer, FUN will be called in the buffer
4614 from which the minibuffer was entered.  The return value of
4615 `lazy-completion-table' must be used to initialize the value of VAR.
4618 ** Enhancements to keymaps.
4620 *** New keymaps for typing file names
4622 Two new keymaps, `minibuffer-local-filename-completion-map'  and
4623 `minibuffer-local-must-match-filename-map', apply whenever
4624 Emacs reads a file name in the minibuffer.  These key maps override
4625 the usual binding of SPC to `minibuffer-complete-word' (so that file
4626 names with embedded spaces could be typed without the need to quote
4627 the spaces).
4629 *** Cleaner way to enter key sequences.
4631 You can enter a constant key sequence in a more natural format, the
4632 same one used for saving keyboard macros, using the macro `kbd'.  For
4633 example,
4635 (kbd "C-x C-f") => "\^x\^f"
4637 Actually, this format has existed since Emacs 20.1.
4639 *** Interactive commands can be remapped through keymaps.
4641 This is an alternative to using `defadvice' or `substitute-key-definition'
4642 to modify the behavior of a key binding using the normal keymap
4643 binding and lookup functionality.
4645 When a key sequence is bound to a command, and that command is
4646 remapped to another command, that command is run instead of the
4647 original command.
4649 Example:
4650 Suppose that minor mode `my-mode' has defined the commands
4651 `my-kill-line' and `my-kill-word', and it wants C-k (and any other key
4652 bound to `kill-line') to run the command `my-kill-line' instead of
4653 `kill-line', and likewise it wants to run `my-kill-word' instead of
4654 `kill-word'.
4656 Instead of rebinding C-k and the other keys in the minor mode map,
4657 command remapping allows you to directly map `kill-line' into
4658 `my-kill-line' and `kill-word' into `my-kill-word' using `define-key':
4660    (define-key my-mode-map [remap kill-line] 'my-kill-line)
4661    (define-key my-mode-map [remap kill-word] 'my-kill-word)
4663 When `my-mode' is enabled, its minor mode keymap is enabled too.  So
4664 when the user types C-k, that runs the command `my-kill-line'.
4666 Only one level of remapping is supported.  In the above example, this
4667 means that if `my-kill-line' is remapped to `other-kill', then C-k still
4668 runs `my-kill-line'.
4670 The following changes have been made to provide command remapping:
4672 - Command remappings are defined using `define-key' with a prefix-key
4673   `remap', i.e. `(define-key MAP [remap CMD] DEF)' remaps command CMD
4674   to definition DEF in keymap MAP.  The definition is not limited to
4675   another command; it can be anything accepted for a normal binding.
4677 - The new function `command-remapping' returns the binding for a
4678   remapped command in the current keymaps, or nil if not remapped.
4680 - `key-binding' now remaps interactive commands unless the optional
4681   third argument NO-REMAP is non-nil.
4683 - `where-is-internal' now returns nil for a remapped command (e.g.
4684   `kill-line', when `my-mode' is enabled), and the actual key binding for
4685   the command it is remapped to (e.g. C-k for my-kill-line).
4686   It also has a new optional fifth argument, NO-REMAP, which inhibits
4687   remapping if non-nil (e.g. it returns "C-k" for `kill-line', and
4688   "<kill-line>" for `my-kill-line').
4690 - The new variable `this-original-command' contains the original
4691   command before remapping.  It is equal to `this-command' when the
4692   command was not remapped.
4694 *** If text has a `keymap' property, that keymap takes precedence
4695 over minor mode keymaps.
4697 *** The `keymap' property now also works at the ends of overlays and
4698 text properties, according to their stickiness.  This also means that it
4699 works with empty overlays.  The same hold for the `local-map' property.
4701 *** `key-binding' will now look up mouse-specific bindings.  The
4702 keymaps consulted by `key-binding' will get adapted if the key
4703 sequence is started with a mouse event.  Instead of letting the click
4704 position be determined from the key sequence itself, it is also
4705 possible to specify it with an optional argument explicitly.
4707 *** Dense keymaps now handle inheritance correctly.
4709 Previously a dense keymap would hide all of the simple-char key
4710 bindings of the parent keymap.
4712 *** `define-key-after' now accepts keys longer than 1.
4714 *** New function `current-active-maps' returns a list of currently
4715 active keymaps.
4717 *** New function `describe-buffer-bindings' inserts the list of all
4718 defined keys and their definitions.
4720 *** New function `keymap-prompt' returns the prompt string of a keymap.
4722 *** (map-keymap FUNCTION KEYMAP) applies the function to each binding
4723 in the keymap.
4725 *** New variable `emulation-mode-map-alists'.
4727 Lisp packages using many minor mode keymaps can now maintain their own
4728 keymap alist separate from `minor-mode-map-alist' by adding their
4729 keymap alist to this list.
4731 *** The definition of a key-binding passed to define-key can use XEmacs-style
4732 key-sequences, such as [(control a)].
4734 ** Abbrev changes:
4737 *** The new function `copy-abbrev-table' copies an abbrev table.
4739 It returns a new abbrev table that is a copy of a given abbrev table.
4742 *** `define-abbrev' now accepts an optional argument SYSTEM-FLAG.
4744 If non-nil, this marks the abbrev as a "system" abbrev, which means
4745 that it won't be stored in the user's abbrevs file if he saves the
4746 abbrevs.  Major modes that predefine some abbrevs should always
4747 specify this flag.
4750 ** Enhancements to process support
4752 *** Function `list-processes' now has an optional argument; if non-nil,
4753 it lists only the processes whose query-on-exit flag is set.
4755 *** New fns `set-process-query-on-exit-flag' and `process-query-on-exit-flag'.
4757 These replace the old function `process-kill-without-query'.  That
4758 function is still supported, but new code should use the new
4759 functions.
4761 *** Function `signal-process' now accepts a process object or process
4762 name in addition to a process id to identify the signaled process.
4764 *** Processes now have an associated property list where programs can
4765 maintain process state and other per-process related information.
4767 Use the new functions `process-get' and `process-put' to access, add,
4768 and modify elements on this property list.  Use the new functions
4769 `process-plist' and `set-process-plist' to access and replace the
4770 entire property list of a process.
4772 *** Function `accept-process-output' has a new optional fourth arg
4773 JUST-THIS-ONE.  If non-nil, only output from the specified process
4774 is handled, suspending output from other processes.  If value is an
4775 integer, also inhibit running timers.  This feature is generally not
4776 recommended, but may be necessary for specific applications, such as
4777 speech synthesis.
4779 *** Adaptive read buffering of subprocess output.
4781 On some systems, when emacs reads the output from a subprocess, the
4782 output data is read in very small blocks, potentially resulting in
4783 very poor performance.  This behavior can be remedied to some extent
4784 by setting the new variable `process-adaptive-read-buffering' to a
4785 non-nil value (the default), as it will automatically delay reading
4786 from such processes, allowing them to produce more output before
4787 emacs tries to read it.
4789 *** The new function `call-process-shell-command'.
4791 This executes a shell command synchronously in a separate process.
4793 *** The new function `process-file' is similar to `call-process', but
4794 obeys file handlers.  The file handler is chosen based on
4795 `default-directory'.
4797 *** A process filter function gets the output as multibyte string
4798 if the process specifies t for its filter's multibyteness.
4800 That multibyteness is decided by the value of
4801 `default-enable-multibyte-characters' when the process is created, and
4802 you can change it later with `set-process-filter-multibyte'.
4804 *** The new function `set-process-filter-multibyte' sets the
4805 multibyteness of the strings passed to the process's filter.
4807 *** The new function `process-filter-multibyte-p' returns the
4808 multibyteness of the strings passed to the process's filter.
4810 *** If a process's coding system is `raw-text' or `no-conversion' and its
4811 buffer is multibyte, the output of the process is at first converted
4812 to multibyte by `string-to-multibyte' then inserted in the buffer.
4813 Previously, it was converted to multibyte by `string-as-multibyte',
4814 which was not compatible with the behavior of file reading.
4817 ** Enhanced networking support.
4819 *** The new `make-network-process' function makes network connections.
4820 It allows opening of stream and datagram connections to a server, as well as
4821 create a stream or datagram server inside emacs.
4823 - A server is started using :server t arg.
4824 - Datagram connection is selected using :type 'datagram arg.
4825 - A server can open on a random port using :service t arg.
4826 - Local sockets are supported using :family 'local arg.
4827 - IPv6 is supported (when available).  You may explicitly select IPv6
4828   using :family 'ipv6 arg.
4829 - Non-blocking connect is supported using :nowait t arg.
4830 - The process' property list can be initialized using :plist PLIST arg;
4831   a copy of the server process' property list is automatically inherited
4832   by new client processes created to handle incoming connections.
4834 To test for the availability of a given feature, use featurep like this:
4835   (featurep 'make-network-process '(:type datagram))
4836   (featurep 'make-network-process '(:family ipv6))
4838 *** The old `open-network-stream' now uses `make-network-process'.
4840 *** New functions `process-datagram-address', `set-process-datagram-address'.
4842 These functions are used with datagram-based network processes to get
4843 and set the current address of the remote partner.
4845 *** New function `format-network-address'.
4847 This function reformats the Lisp representation of a network address
4848 to a printable string.  For example, an IP address A.B.C.D and port
4849 number P is represented as a five element vector [A B C D P], and the
4850 printable string returned for this vector is "A.B.C.D:P".  See the doc
4851 string for other formatting options.
4853 *** `process-contact' has an optional KEY argument.
4855 Depending on this argument, you can get the complete list of network
4856 process properties or a specific property.  Using :local or :remote as
4857 the KEY, you get the address of the local or remote end-point.
4859 An Inet address is represented as a 5 element vector, where the first
4860 4 elements contain the IP address and the fifth is the port number.
4862 *** New functions `stop-process' and `continue-process'.
4864 These functions stop and restart communication through a network
4865 connection.  For a server process, no connections are accepted in the
4866 stopped state.  For a client process, no input is received in the
4867 stopped state.
4869 *** New function `network-interface-list'.
4871 This function returns a list of network interface names and their
4872 current network addresses.
4874 *** New function `network-interface-info'.
4876 This function returns the network address, hardware address, current
4877 status, and other information about a specific network interface.
4879 *** Deleting a network process with `delete-process' calls the sentinel.
4881 The status message passed to the sentinel for a deleted network
4882 process is "deleted".  The message passed to the sentinel when the
4883 connection is closed by the remote peer has been changed to
4884 "connection broken by remote peer".
4886 ** Using window objects:
4889 *** New function `window-body-height'.
4891 This is like `window-height' but does not count the mode line or the
4892 header line.
4895 *** You can now make a window as short as one line.
4897 A window that is just one line tall does not display either a mode
4898 line or a header line, even if the variables `mode-line-format' and
4899 `header-line-format' call for them.  A window that is two lines tall
4900 cannot display both a mode line and a header line at once; if the
4901 variables call for both, only the mode line actually appears.
4904 *** The new function `window-inside-edges' returns the edges of the
4905 actual text portion of the window, not including the scroll bar or
4906 divider line, the fringes, the display margins, the header line and
4907 the mode line.
4910 *** The new functions `window-pixel-edges' and `window-inside-pixel-edges'
4911 return window edges in units of pixels, rather than columns and lines.
4914 *** The new macro `with-selected-window' temporarily switches the
4915 selected window without impacting the order of `buffer-list'.
4916 It saves and restores the current buffer, too.
4919 *** `select-window' takes an optional second argument NORECORD.
4921 This is like `switch-to-buffer'.
4924 *** `save-selected-window' now saves and restores the selected window
4925 of every frame.  This way, it restores everything that can be changed
4926 by calling `select-window'.  It also saves and restores the current
4927 buffer.
4930 *** `set-window-buffer' has an optional argument KEEP-MARGINS.
4932 If non-nil, that says to preserve the window's current margin, fringe,
4933 and scroll-bar settings.
4936 *** The new function `window-tree' returns a frame's window tree.
4939 *** The functions `get-lru-window' and `get-largest-window' take an optional
4940 argument `dedicated'.  If non-nil, those functions do not ignore
4941 dedicated windows.
4944 *** The new function `adjust-window-trailing-edge' moves the right
4945 or bottom edge of a window.  It does not move other window edges.
4948 ** Customizable fringe bitmaps
4950 *** New buffer-local variables `fringe-indicator-alist' and
4951 `fringe-cursor-alist' maps between logical (internal) fringe indicator
4952 and cursor symbols and the actual fringe bitmaps to be displayed.
4953 This decouples the logical meaning of the fringe indicators from the
4954 physical appearance, as well as allowing different fringe bitmaps to
4955 be used in different windows showing different buffers.
4957 *** New function `define-fringe-bitmap' can now be used to create new
4958 fringe bitmaps, as well as change the built-in fringe bitmaps.
4960 *** New function `destroy-fringe-bitmap' deletes a fringe bitmap
4961 or restores a built-in one to its default value.
4963 *** New function `set-fringe-bitmap-face' specifies the face to be
4964 used for a specific fringe bitmap.  The face is automatically merged
4965 with the `fringe' face, so normally, the face should only specify the
4966 foreground color of the bitmap.
4968 *** There are new display properties, `left-fringe' and `right-fringe',
4969 that can be used to show a specific bitmap in the left or right fringe
4970 bitmap of the display line.
4972 Format is `display (left-fringe BITMAP [FACE])', where BITMAP is a
4973 symbol identifying a fringe bitmap, either built-in or defined with
4974 `define-fringe-bitmap', and FACE is an optional face name to be used
4975 for displaying the bitmap instead of the default `fringe' face.
4976 When specified, FACE is automatically merged with the `fringe' face.
4978 *** New function `fringe-bitmaps-at-pos' returns the current fringe
4979 bitmaps in the display line at a given buffer position.
4981 ** Other window fringe features:
4984 *** Controlling the default left and right fringe widths.
4986 The default left and right fringe widths for all windows of a frame
4987 can now be controlled by setting the `left-fringe' and `right-fringe'
4988 frame parameters to an integer value specifying the width in pixels.
4989 Setting the width to 0 effectively removes the corresponding fringe.
4991 The actual default fringe widths for the frame may deviate from the
4992 specified widths, since the combined fringe widths must match an
4993 integral number of columns.  The extra width is distributed evenly
4994 between the left and right fringe.  To force a specific fringe width,
4995 specify the width as a negative integer (if both widths are negative,
4996 only the left fringe gets the specified width).
4998 Setting the width to nil (the default), restores the default fringe
4999 width which is the minimum number of pixels necessary to display any
5000 of the currently defined fringe bitmaps.  The width of the built-in
5001 fringe bitmaps is 8 pixels.
5004 *** Per-window fringe and scrollbar settings
5006 **** Windows can now have their own individual fringe widths and
5007 position settings.
5009 To control the fringe widths of a window, either set the buffer-local
5010 variables `left-fringe-width', `right-fringe-width', or call
5011 `set-window-fringes'.
5013 To control the fringe position in a window, that is, whether fringes
5014 are positioned between the display margins and the window's text area,
5015 or at the edges of the window, either set the buffer-local variable
5016 `fringes-outside-margins' or call `set-window-fringes'.
5018 The function `window-fringes' can be used to obtain the current
5019 settings.  To make `left-fringe-width', `right-fringe-width', and
5020 `fringes-outside-margins' take effect, you must set them before
5021 displaying the buffer in a window, or use `set-window-buffer' to force
5022 an update of the display margins.
5024 **** Windows can now have their own individual scroll-bar settings
5025 controlling the width and position of scroll-bars.
5027 To control the scroll-bar of a window, either set the buffer-local
5028 variables `scroll-bar-mode' and `scroll-bar-width', or call
5029 `set-window-scroll-bars'.  The function `window-scroll-bars' can be
5030 used to obtain the current settings.  To make `scroll-bar-mode' and
5031 `scroll-bar-width' take effect, you must set them before displaying
5032 the buffer in a window, or use `set-window-buffer' to force an update
5033 of the display margins.
5035 ** Redisplay features:
5038 *** `sit-for' can now be called with args (SECONDS &optional NODISP).
5041 *** Iconifying or deiconifying a frame no longer makes sit-for return.
5044 *** New function `redisplay' causes an immediate redisplay if no input is
5045 available, equivalent to (sit-for 0).  The call (redisplay t) forces
5046 an immediate redisplay even if input is pending.
5049 *** New function `force-window-update' can initiate a full redisplay of
5050 one or all windows.  Normally, this is not needed as changes in window
5051 contents are detected automatically.  However, certain implicit
5052 changes to mode lines, header lines, or display properties may require
5053 forcing an explicit window update.
5056 *** (char-displayable-p CHAR) returns non-nil if Emacs ought to be able
5057 to display CHAR.  More precisely, if the selected frame's fontset has
5058 a font to display the character set that CHAR belongs to.
5060 Fontsets can specify a font on a per-character basis; when the fontset
5061 does that, this value cannot be accurate.
5064 *** You can define multiple overlay arrows via the new
5065 variable `overlay-arrow-variable-list'.
5067 It contains a list of variables which contain overlay arrow position
5068 markers, including the original `overlay-arrow-position' variable.
5070 Each variable on this list can have individual `overlay-arrow-string'
5071 and `overlay-arrow-bitmap' properties that specify an overlay arrow
5072 string (for non-window terminals) or fringe bitmap (for window
5073 systems) to display at the corresponding overlay arrow position.
5074 If either property is not set, the default `overlay-arrow-string' or
5075 'overlay-arrow-fringe-bitmap' will be used.
5078 *** New `line-height' and `line-spacing' properties for newline characters
5080 A newline can now have `line-height' and `line-spacing' text or overlay
5081 properties that control the height of the corresponding display row.
5083 If the `line-height' property value is t, the newline does not
5084 contribute to the height of the display row; instead the height of the
5085 newline glyph is reduced.  Also, a `line-spacing' property on this
5086 newline is ignored.  This can be used to tile small images or image
5087 slices without adding blank areas between the images.
5089 If the `line-height' property value is a positive integer, the value
5090 specifies the minimum line height in pixels.  If necessary, the line
5091 height it increased by increasing the line's ascent.
5093 If the `line-height' property value is a float, the minimum line
5094 height is calculated by multiplying the default frame line height by
5095 the given value.
5097 If the `line-height' property value is a cons (FACE . RATIO), the
5098 minimum line height is calculated as RATIO * height of named FACE.
5099 RATIO is int or float.  If FACE is t, it specifies the current face.
5101 If the `line-height' property value is a cons (nil . RATIO), the line
5102 height is calculated as RATIO * actual height of the line's contents.
5104 If the `line-height' value is a cons (HEIGHT . TOTAL), HEIGHT specifies
5105 the line height as described above, while TOTAL is any of the forms
5106 described above and specifies the total height of the line, causing a
5107 varying number of pixels to be inserted after the line to make it line
5108 exactly that many pixels high.
5110 If the `line-spacing' property value is an positive integer, the value
5111 is used as additional pixels to insert after the display line; this
5112 overrides the default frame `line-spacing' and any buffer local value of
5113 the `line-spacing' variable.
5115 If the `line-spacing' property is a float or cons, the line spacing
5116 is calculated as specified above for the `line-height' property.
5119 *** The buffer local `line-spacing' variable can now have a float value,
5120 which is used as a height relative to the default frame line height.
5123 *** Enhancements to stretch display properties
5125 The display property stretch specification form `(space PROPS)', where
5126 PROPS is a property list, now allows pixel based width and height
5127 specifications, as well as enhanced horizontal text alignment.
5129 The value of these properties can now be a (primitive) expression
5130 which is evaluated during redisplay.  The following expressions
5131 are supported:
5133 EXPR ::= NUM | (NUM) | UNIT | ELEM | POS | IMAGE | FORM
5134 NUM  ::= INTEGER | FLOAT | SYMBOL
5135 UNIT ::= in | mm | cm | width | height
5136 ELEM ::= left-fringe | right-fringe | left-margin | right-margin
5137       |  scroll-bar | text
5138 POS  ::= left | center | right
5139 FORM ::= (NUM . EXPR) | (OP EXPR ...)
5140 OP   ::= + | -
5142 The form `NUM' specifies a fractional width or height of the default
5143 frame font size.  The form `(NUM)' specifies an absolute number of
5144 pixels.  If a symbol is specified, its buffer-local variable binding
5145 is used.  The `in', `mm', and `cm' units specifies the number of
5146 pixels per inch, milli-meter, and centi-meter, resp.  The `width' and
5147 `height' units correspond to the width and height of the current face
5148 font.  An image specification corresponds to the width or height of
5149 the image.
5151 The `left-fringe', `right-fringe', `left-margin', `right-margin',
5152 `scroll-bar', and `text' elements specify to the width of the
5153 corresponding area of the window.
5155 The `left', `center', and `right' positions can be used with :align-to
5156 to specify a position relative to the left edge, center, or right edge
5157 of the text area.  One of the above window elements (except `text')
5158 can also be used with :align-to to specify that the position is
5159 relative to the left edge of the given area.  Once the base offset for
5160 a relative position has been set (by the first occurrence of one of
5161 these symbols), further occurrences of these symbols are interpreted as
5162 the width of the area.
5164 For example, to align to the center of the left-margin, use
5165     :align-to (+ left-margin (0.5 . left-margin))
5167 If no specific base offset is set for alignment, it is always relative
5168 to the left edge of the text area.  For example, :align-to 0 in a
5169 header line aligns with the first text column in the text area.
5171 The value of the form `(NUM . EXPR)' is the value of NUM multiplied by
5172 the value of the expression EXPR.  For example, (2 . in) specifies a
5173 width of 2 inches, while (0.5 . IMAGE) specifies half the width (or
5174 height) of the specified image.
5176 The form `(+ EXPR ...)' adds up the value of the expressions.
5177 The form `(- EXPR ...)' negates or subtracts the value of the expressions.
5180 *** Normally, the cursor is displayed at the end of any overlay and
5181 text property string that may be present at the current window
5182 position.  The cursor can now be placed on any character of such
5183 strings by giving that character a non-nil `cursor' text property.
5186 *** The display space :width and :align-to text properties are now
5187 supported on text terminals.
5190 *** Support for displaying image slices
5192 **** New display property (slice X Y WIDTH HEIGHT) can be used with
5193 an image property to display only a specific slice of the image.
5195 **** Function `insert-image' has new optional fourth arg to
5196 specify image slice (X Y WIDTH HEIGHT).
5198 **** New function `insert-sliced-image' inserts a given image as a
5199 specified number of evenly sized slices (rows x columns).
5202 *** Images can now have an associated image map via the :map property.
5204 An image map is an alist where each element has the format (AREA ID PLIST).
5205 An AREA is specified as either a rectangle, a circle, or a polygon:
5206 A rectangle is a cons (rect . ((X0 . Y0) . (X1 . Y1))) specifying the
5207 pixel coordinates of the upper left and bottom right corners.
5208 A circle is a cons (circle . ((X0 . Y0) . R)) specifying the center
5209 and the radius of the circle; R can be a float or integer.
5210 A polygon is a cons (poly . [X0 Y0 X1 Y1 ...]) where each pair in the
5211 vector describes one corner in the polygon.
5213 When the mouse pointer is above a hot-spot area of an image, the
5214 PLIST of that hot-spot is consulted; if it contains a `help-echo'
5215 property it defines a tool-tip for the hot-spot, and if it contains
5216 a `pointer' property, it defines the shape of the mouse cursor when
5217 it is over the hot-spot.  See the variable `void-area-text-pointer'
5218 for possible pointer shapes.
5220 When you click the mouse when the mouse pointer is over a hot-spot,
5221 an event is composed by combining the ID of the hot-spot with the
5222 mouse event, e.g. [area4 mouse-1] if the hot-spot's ID is `area4'.
5225 *** The function `find-image' now searches in etc/images/ and etc/.
5226 The new variable `image-load-path' is a list of locations in which to
5227 search for image files.  The default is to search in etc/images, then
5228 in etc/, and finally in the directories specified by `load-path'.
5229 Subdirectories of etc/ and etc/images are not recursively searched; if
5230 you put an image file in a subdirectory, you have to specify it
5231 explicitly; for example, if an image is put in etc/images/foo/bar.xpm:
5233   (defimage foo-image '((:type xpm :file "foo/bar.xpm")))
5235 Note that all images formerly located in the lisp directory have been
5236 moved to etc/images.
5239 *** New function `image-load-path-for-library' returns a suitable
5240 search path for images relative to library. This function is useful in
5241 external packages to save users from having to update
5242 `image-load-path'.
5245 *** The new variable `max-image-size' defines the maximum size of
5246 images that Emacs will load and display.
5249 *** The new variable `display-mm-dimensions-alist' can be used to
5250 override incorrect graphical display dimensions returned by functions
5251 `display-mm-height' and `display-mm-width'.
5253 ** Mouse pointer features:
5255 +++ (lispref)
5256 ??? (man)
5257 *** The mouse pointer shape in void text areas (i.e. after the end of a
5258 line or below the last line in the buffer) of the text window is now
5259 controlled by the new variable `void-text-area-pointer'.  The default
5260 is to use the `arrow' (non-text) pointer.  Other choices are `text'
5261 (or nil), `hand', `vdrag', `hdrag', `modeline', and `hourglass'.
5264 *** The mouse pointer shape over an image can now be controlled by the
5265 :pointer image property.
5268 *** The mouse pointer shape over ordinary text or images can now be
5269 controlled/overridden via the `pointer' text property.
5271 ** Mouse event enhancements:
5274 *** Mouse events for clicks on window fringes now specify `left-fringe'
5275 or `right-fringe' as the area.
5278 *** All mouse events now include a buffer position regardless of where
5279 you clicked.  For mouse clicks in window margins and fringes, this is
5280 a sensible buffer position corresponding to the surrounding text.
5283 *** `posn-point' now returns buffer position for non-text area events.
5286 *** Function `mouse-set-point' now works for events outside text area.
5289 *** New function `posn-area' returns window area clicked on (nil means
5290 text area).
5293 *** Mouse events include actual glyph column and row for all event types
5294 and all areas.
5297 *** New function `posn-actual-col-row' returns the actual glyph coordinates
5298 of the mouse event position.
5301 *** Mouse events can now indicate an image object clicked on.
5304 *** Mouse events include relative X and Y pixel coordinates relative to
5305 the top left corner of the object (image or character) clicked on.
5308 *** Mouse events include the pixel width and height of the object
5309 (image or character) clicked on.
5312 *** New functions 'posn-object', 'posn-object-x-y', 'posn-object-width-height'.
5314 These return the image or string object of a mouse click, the X and Y
5315 pixel coordinates relative to the top left corner of that object, and
5316 the total width and height of that object.
5318 ** Text property and overlay changes:
5321 *** Arguments for `remove-overlays' are now optional, so that you can
5322 remove all overlays in the buffer with just (remove-overlays).
5325 *** New variable `char-property-alias-alist'.
5327 This variable allows you to create alternative names for text
5328 properties.  It works at the same level as `default-text-properties',
5329 although it applies to overlays as well.  This variable was introduced
5330 to implement the `font-lock-face' property.
5333 *** New function `get-char-property-and-overlay' accepts the same
5334 arguments as `get-char-property' and returns a cons whose car is the
5335 return value of `get-char-property' called with those arguments and
5336 whose cdr is the overlay in which the property was found, or nil if
5337 it was found as a text property or not found at all.
5340 *** The new function `remove-list-of-text-properties'.
5342 It is like `remove-text-properties' except that it takes a list of
5343 property names as argument rather than a property list.
5345 ** Face changes
5348 *** The variable `facemenu-unlisted-faces' has been removed.
5349 Emacs has a lot more faces than in the past, and nearly all of them
5350 needed to be excluded.  The new variable `facemenu-listed-faces' lists
5351 the faces to include in the face menu.
5354 *** The new face attribute condition `min-colors' can be used to tailor
5355 the face color to the number of colors supported by a display, and
5356 define the foreground and background colors accordingly so that they
5357 look best on a terminal that supports at least this many colors.  This
5358 is now the preferred method for defining default faces in a way that
5359 makes a good use of the capabilities of the display.
5362 *** New function `display-supports-face-attributes-p' can be used to test
5363 whether a given set of face attributes is actually displayable.
5365 A new predicate `supports' has also been added to the `defface' face
5366 specification language, which can be used to do this test for faces
5367 defined with `defface'.
5370 *** The special treatment of faces whose names are of the form `fg:COLOR'
5371 or `bg:COLOR' has been removed.  Lisp programs should use the
5372 `defface' facility for defining faces with specific colors, or use
5373 the feature of specifying the face attributes :foreground and :background
5374 directly in the `face' property instead of using a named face.
5377 *** The first face specification element in a defface can specify
5378 `default' instead of frame classification.  Then its attributes act as
5379 defaults that apply to all the subsequent cases (and can be overridden
5380 by them).
5383 *** The variable `face-font-rescale-alist' specifies how much larger
5384 (or smaller) font we should use.  For instance, if the value is
5385 '((SOME-FONTNAME-PATTERN . 1.3)) and a face requests a font of 10
5386 point, we actually use a font of 13 point if the font matches
5387 SOME-FONTNAME-PATTERN.
5390 *** The function `face-differs-from-default-p' now truly checks
5391 whether the given face displays differently from the default face or
5392 not (previously it did only a very cursory check).
5395 *** `face-attribute', `face-foreground', `face-background', `face-stipple'.
5397 These now accept a new optional argument, INHERIT, which controls how
5398 face inheritance is used when determining the value of a face
5399 attribute.
5402 *** New functions `face-attribute-relative-p' and `merge-face-attribute'
5403 help with handling relative face attributes.
5406 *** The priority of faces in an :inherit attribute face list is reversed.
5408 If a face contains an :inherit attribute with a list of faces, earlier
5409 faces in the list override later faces in the list; in previous
5410 releases of Emacs, the order was the opposite.  This change was made
5411 so that :inherit face lists operate identically to face lists in text
5412 `face' properties.
5415 *** On terminals, faces with the :inverse-video attribute are displayed
5416 with swapped foreground and background colors even when one of them is
5417 not specified.  In previous releases of Emacs, if either foreground
5418 or background color was unspecified, colors were not swapped.  This
5419 was inconsistent with the face behavior under X.
5422 *** `set-fontset-font', `fontset-info', `fontset-font' now operate on
5423 the default fontset if the argument NAME is nil..
5425 ** Font-Lock changes:
5428 *** New special text property `font-lock-face'.
5430 This property acts like the `face' property, but it is controlled by
5431 M-x font-lock-mode.  It is not, strictly speaking, a builtin text
5432 property.  Instead, it is implemented inside font-core.el, using the
5433 new variable `char-property-alias-alist'.
5436 *** font-lock can manage arbitrary text-properties beside `face'.
5438 **** the FACENAME returned in `font-lock-keywords' can be a list of the
5439 form (face FACE PROP1 VAL1 PROP2 VAL2 ...) so you can set other
5440 properties than `face'.
5442 **** `font-lock-extra-managed-props' can be set to make sure those
5443 extra properties are automatically cleaned up by font-lock.
5446 *** jit-lock obeys a new text-property `jit-lock-defer-multiline'.
5448 If a piece of text with that property gets contextually refontified
5449 (see `jit-lock-defer-contextually'), then all of that text will
5450 be refontified.  This is useful when the syntax of a textual element
5451 depends on text several lines further down (and when `font-lock-multiline'
5452 is not appropriate to solve that problem).  For example in Perl:
5454         s{
5455                 foo
5456         }{
5457                 bar
5458         }e
5460 Adding/removing the last `e' changes the `bar' from being a piece of
5461 text to being a piece of code, so you'd put a `jit-lock-defer-multiline'
5462 property over the second half of the command to force (deferred)
5463 refontification of `bar' whenever the `e' is added/removed.
5465 *** `font-lock-extend-region-functions' makes it possible to alter the way
5466 the fontification region is chosen.  This can be used to prevent rounding
5467 up to whole lines, or to extend the region to include all related lines
5468 of multiline constructs so that such constructs get properly recognized.
5470 ** Major mode mechanism changes:
5473 *** `set-auto-mode' now gives the interpreter magic line (if present)
5474 precedence over the file name.  Likewise an `<?xml' or `<!DOCTYPE'
5475 declaration will give the buffer XML or SGML mode, based on the new
5476 variable `magic-mode-alist'.
5479 *** Use the new function `run-mode-hooks' to run the major mode's mode hook.
5482 *** All major mode functions should now run the new normal hook
5483 `after-change-major-mode-hook', at their very end, after the mode
5484 hooks.  `run-mode-hooks' does this automatically.
5487 *** If a major mode function has a non-nil `no-clone-indirect'
5488 property, `clone-indirect-buffer' signals an error if you use
5489 it in that buffer.
5492 *** Major modes can define `eldoc-documentation-function'
5493 locally to provide Eldoc functionality by some method appropriate to
5494 the language.
5497 *** `define-derived-mode' by default creates a new empty abbrev table.
5498 It does not copy abbrevs from the parent mode's abbrev table.
5501 *** The new function `run-mode-hooks' and the new macro `delay-mode-hooks'
5502 are used by `define-derived-mode' to make sure the mode hook for the
5503 parent mode is run at the end of the child mode.
5505 ** Minor mode changes:
5508 *** `define-minor-mode' now accepts arbitrary additional keyword arguments
5509 and simply passes them to `defcustom', if applicable.
5512 *** `minor-mode-list' now holds a list of minor mode commands.
5515 *** `define-global-minor-mode'.
5517 This is a new name for what was formerly called
5518 `easy-mmode-define-global-mode'.  The old name remains as an alias.
5520 ** Command loop changes:
5523 *** The new function `called-interactively-p' does what many people
5524 have mistakenly believed `interactive-p' to do: it returns t if the
5525 calling function was called through `call-interactively'.
5527 Only use this when you cannot solve the problem by adding a new
5528 INTERACTIVE argument to the command.
5531 *** The function `commandp' takes an additional optional argument.
5533 If it is non-nil, then `commandp' checks for a function that could be
5534 called with `call-interactively', and does not return t for keyboard
5535 macros.
5538 *** When a command returns, the command loop moves point out from
5539 within invisible text, in the same way it moves out from within text
5540 covered by an image or composition property.
5542 This makes it generally unnecessary to mark invisible text as intangible.
5543 This is particularly good because the intangible property often has
5544 unexpected side-effects since the property applies to everything
5545 (including `goto-char', ...) whereas this new code is only run after
5546 `post-command-hook' and thus does not care about intermediate states.
5549 *** If a command sets `transient-mark-mode' to `only', that
5550 enables Transient Mark mode for the following command only.
5551 During that following command, the value of `transient-mark-mode'
5552 is `identity'.  If it is still `identity' at the end of the command,
5553 the next return to the command loop changes to nil.
5556 *** Both the variable and the function `disabled-command-hook' have
5557 been renamed to `disabled-command-function'.  The variable
5558 `disabled-command-hook' has been kept as an obsolete alias.
5561 *** `emacsserver' now runs `pre-command-hook' and `post-command-hook'
5562 when it receives a request from emacsclient.
5565 *** `current-idle-time' reports how long Emacs has been idle.
5567 ** Lisp file loading changes:
5570 *** `load-history' can now have elements of the form (t . FUNNAME),
5571 which means FUNNAME was previously defined as an autoload (before the
5572 current file redefined it).
5575 *** `load-history' now records (defun . FUNNAME) when a function is
5576 defined.  For a variable, it records just the variable name.
5579 *** The function `symbol-file' can now search specifically for function,
5580 variable or face definitions.
5583 *** `provide' and `featurep' now accept an optional second argument
5584 to test/provide subfeatures.  Also `provide' now checks `after-load-alist'
5585 and runs any code associated with the provided feature.
5588 *** The variable `recursive-load-depth-limit' has been deleted.
5589 Emacs now signals an error if the same file is loaded with more
5590 than 3 levels of nesting.
5593 ** Byte compiler changes:
5595 *** The byte compiler now displays the actual line and character
5596 position of errors, where possible.  Additionally, the form of its
5597 warning and error messages have been brought into line with GNU standards
5598 for these.  As a result, you can use next-error and friends on the
5599 compilation output buffer.
5601 *** The new macro `with-no-warnings' suppresses all compiler warnings
5602 inside its body.  In terms of execution, it is equivalent to `progn'.
5604 *** You can avoid warnings for possibly-undefined symbols with a
5605 simple convention that the compiler understands.  (This is mostly
5606 useful in code meant to be portable to different Emacs versions.)
5607 Write forms like the following, or code that macroexpands into such
5608 forms:
5610   (if (fboundp 'foo) <then> <else>)
5611   (if (boundp 'foo) <then> <else)
5613 In the first case, using `foo' as a function inside the <then> form
5614 won't produce a warning if it's not defined as a function, and in the
5615 second case, using `foo' as a variable won't produce a warning if it's
5616 unbound.  The test must be in exactly one of the above forms (after
5617 macro expansion), but such tests can be nested.  Note that `when' and
5618 `unless' expand to `if', but `cond' doesn't.
5620 *** `(featurep 'xemacs)' is treated by the compiler as nil.  This
5621 helps to avoid noisy compiler warnings in code meant to run under both
5622 Emacs and XEmacs and can sometimes make the result significantly more
5623 efficient.  Since byte code from recent versions of XEmacs won't
5624 generally run in Emacs and vice versa, this optimization doesn't lose
5625 you anything.
5627 *** The local variable `no-byte-compile' in Lisp files is now obeyed.
5630 *** When a Lisp file uses CL functions at run-time, compiling the file
5631 now issues warnings about these calls, unless the file performs
5632 (require 'cl) when loaded.
5634 ** Frame operations:
5637 *** New functions `frame-current-scroll-bars' and `window-current-scroll-bars'.
5639 These functions return the current locations of the vertical and
5640 horizontal scroll bars in a frame or window.
5643 *** The new function `modify-all-frames-parameters' modifies parameters
5644 for all (existing and future) frames.
5647 *** The new frame parameter `tty-color-mode' specifies the mode to use
5648 for color support on character terminal frames.  Its value can be a
5649 number of colors to support, or a symbol.  See the Emacs Lisp
5650 Reference manual for more detailed documentation.
5653 *** When using non-toolkit scroll bars with the default width,
5654 the `scroll-bar-width' frame parameter value is nil.
5656 ** Mule changes:
5659 *** Already true in Emacs 21.1, but not emphasized clearly enough:
5661 Multibyte buffers can now faithfully record all 256 character codes
5662 from 0 to 255.  As a result, most of the past reasons to use unibyte
5663 buffers no longer exist.  We only know of three reasons to use them
5664 now:
5666 1. If you prefer to use unibyte text all of the time.
5668 2. For reading files into temporary buffers, when you want to avoid
5669 the time it takes to convert the format.
5671 3. For binary files where format conversion would be pointless and
5672 wasteful.
5675 *** `set-buffer-file-coding-system' now takes an additional argument,
5676 NOMODIFY.  If it is non-nil, it means don't mark the buffer modified.
5679 *** The new variable `auto-coding-functions' lets you specify functions
5680 to examine a file being visited and deduce the proper coding system
5681 for it.  (If the coding system is detected incorrectly for a specific
5682 file, you can put a `coding:' tags to override it.)
5685 *** The new function `merge-coding-systems' fills in unspecified aspects
5686 of one coding system from another coding system.
5689 *** New coding system property `mime-text-unsuitable' indicates that
5690 the coding system's `mime-charset' is not suitable for MIME text
5691 parts, e.g. utf-16.
5694 *** New function `decode-coding-inserted-region' decodes a region as if
5695 it is read from a file without decoding.
5698 *** New CCL functions `lookup-character' and `lookup-integer' access
5699 hash tables defined by the Lisp function `define-translation-hash-table'.
5702 *** New function `quail-find-key' returns a list of keys to type in the
5703 current input method to input a character.
5705 ** Mode line changes:
5708 *** New function `format-mode-line'.
5710 This returns the mode line or header line of the selected (or a
5711 specified) window as a string with or without text properties.
5714 *** The new mode-line construct `(:propertize ELT PROPS...)' can be
5715 used to add text properties to mode-line elements.
5718 *** The new `%i' and `%I' constructs for `mode-line-format' can be used
5719 to display the size of the accessible part of the buffer on the mode
5720 line.
5723 *** Mouse-face on mode-line (and header-line) is now supported.
5725 ** Menu manipulation changes:
5728 *** To manipulate the File menu using easy-menu, you must specify the
5729 proper name "file".  In previous Emacs versions, you had to specify
5730 "files", even though the menu item itself was changed to say "File"
5731 several versions ago.
5734 *** The dummy function keys made by easy-menu are now always lower case.
5735 If you specify the menu item name "Ada", for instance, it uses `ada'
5736 as the "key" bound by that key binding.
5738 This is relevant only if Lisp code looks for the bindings that were
5739 made with easy-menu.
5742 *** `easy-menu-define' now allows you to use nil for the symbol name
5743 if you don't need to give the menu a name.  If you install the menu
5744 into other keymaps right away (MAPS is non-nil), it usually doesn't
5745 need to have a name.
5747 ** Operating system access:
5750 *** The new primitive `get-internal-run-time' returns the processor
5751 run time used by Emacs since start-up.
5754 *** Functions `user-uid' and `user-real-uid' now return floats if the
5755 user UID doesn't fit in a Lisp integer.  Function `user-full-name'
5756 accepts a float as UID parameter.
5759 *** New function `locale-info' accesses locale information.
5762 *** On MS Windows, locale-coding-system is used to interact with the OS.
5763 The Windows specific variable w32-system-coding-system, which was
5764 formerly used for that purpose is now an alias for locale-coding-system.
5767 *** New function `redirect-debugging-output' can be used to redirect
5768 debugging output on the stderr file handle to a file.
5770 ** Miscellaneous:
5773 *** A number of hooks have been renamed to better follow the conventions:
5775 `find-file-hooks' to `find-file-hook',
5776 `find-file-not-found-hooks' to `find-file-not-found-functions',
5777 `write-file-hooks' to `write-file-functions',
5778 `write-contents-hooks' to `write-contents-functions',
5779 `x-lost-selection-hooks' to `x-lost-selection-functions',
5780 `x-sent-selection-hooks' to `x-sent-selection-functions',
5781 `delete-frame-hook' to `delete-frame-functions'.
5783 In each case the old name remains as an alias for the moment.
5786 *** Variable `local-write-file-hooks' is marked obsolete.
5788 Use the LOCAL arg of `add-hook'.
5791 *** New function `x-send-client-message' sends a client message when
5792 running under X.
5794 ** GC changes:
5797 *** New variable `gc-cons-percentage' automatically grows the GC cons threshold
5798 as the heap size increases.
5801 *** New variables `gc-elapsed' and `gcs-done' provide extra information
5802 on garbage collection.
5805 *** The normal hook `post-gc-hook' is run at the end of garbage collection.
5807 The hook is run with GC inhibited, so use it with care.
5809 * New Packages for Lisp Programming in Emacs 22.1
5812 ** The new library button.el implements simple and fast `clickable
5813 buttons' in emacs buffers.  Buttons are much lighter-weight than the
5814 `widgets' implemented by widget.el, and can be used by lisp code that
5815 doesn't require the full power of widgets.  Emacs uses buttons for
5816 such things as help and apropos buffers.
5819 ** The new library tree-widget.el provides a widget to display a set
5820 of hierarchical data as an outline.  For example, the tree-widget is
5821 well suited to display a hierarchy of directories and files.
5824 ** The new library bindat.el provides functions to unpack and pack
5825 binary data structures, such as network packets, to and from Lisp
5826 data structures.
5829 ** master-mode.el implements a minor mode for scrolling a slave
5830 buffer without leaving your current buffer, the master buffer.
5832 It can be used by sql.el, for example: the SQL buffer is the master
5833 and its SQLi buffer is the slave.  This allows you to scroll the SQLi
5834 buffer containing the output from the SQL buffer containing the
5835 commands.
5837 This is how to use sql.el and master.el together: the variable
5838 sql-buffer contains the slave buffer.  It is a local variable in the
5839 SQL buffer.
5841 (add-hook 'sql-mode-hook
5842    (function (lambda ()
5843                (master-mode t)
5844                (master-set-slave sql-buffer))))
5845 (add-hook 'sql-set-sqli-hook
5846    (function (lambda ()
5847                (master-set-slave sql-buffer))))
5850 ** The new library benchmark.el does timing measurements on Lisp code.
5852 This includes measuring garbage collection time.
5855 ** The new library testcover.el does test coverage checking.
5857 This is so you can tell whether you've tested all paths in your Lisp
5858 code.  It works with edebug.
5860 The function `testcover-start' instruments all functions in a given
5861 file.  Then test your code.  The function `testcover-mark-all' adds
5862 overlay "splotches" to the Lisp file's buffer to show where coverage
5863 is lacking.  The command `testcover-next-mark' (bind it to a key!)
5864 will move point forward to the next spot that has a splotch.
5866 Normally, a red splotch indicates the form was never completely
5867 evaluated; a brown splotch means it always evaluated to the same
5868 value.  The red splotches are skipped for forms that can't possibly
5869 complete their evaluation, such as `error'.  The brown splotches are
5870 skipped for forms that are expected to always evaluate to the same
5871 value, such as (setq x 14).
5873 For difficult cases, you can add do-nothing macros to your code to
5874 help out the test coverage tool.  The macro `noreturn' suppresses a
5875 red splotch.  It is an error if the argument to `noreturn' does
5876 return.  The macro `1value' suppresses a brown splotch for its argument.
5877 This macro is a no-op except during test-coverage -- then it signals
5878 an error if the argument actually returns differing values.
5882 ----------------------------------------------------------------------
5883 Copyright information:
5885 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006
5886           Free Software Foundation, Inc.
5888    Permission is granted to anyone to make or distribute verbatim copies
5889    of this document as received, in any medium, provided that the
5890    copyright notice and this permission notice are preserved,
5891    thus giving the recipient permission to redistribute in turn.
5893    Permission is granted to distribute modified versions
5894    of this document, or of portions of it,
5895    under the above conditions, provided also that they
5896    carry prominent notices stating who last changed them.
5898 Local variables:
5899 mode: outline
5900 paragraph-separate: "[  \f]*$"
5901 end:
5903 arch-tag: 1aca9dfa-2ac4-4d14-bebf-0007cee12793