(pong): Doc fix.
[emacs.git] / etc / NEWS
blobfd888b1cdff3ee7b48cd38d26c7a8ec79dd8c38d
1 GNU Emacs NEWS -- history of user-visible changes.  2000-08-14
2 Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
3 See the end for copying conditions.
5 Please send Emacs bug reports to bug-gnu-emacs@gnu.org.
6 For older news, see the file NEWS.1.
8 \f
9 * Installation Changes in Emacs 21.1
11 ** Support for GNU/Linux on IA64 machines has been added.
13 ** `movemail' defaults to supporting POP.  You can turn this off using
14 the --without-pop configure option, should that be necessary.
16 ** There are new configure options associated with the support for
17 images and toolkit scrollbars.  Use the --help option in `configure'
18 to list them.
20 ** There is a new configure option `--without-xim' that instructs
21 Emacs to not use X Input Methods (XIM), if these are available.
23 ** There is a new configure option `--disable-largefile' to omit
24 Unix-98-style support for large files if that is available.
26 ** You can build a 64-bit Emacs for SPARC/Solaris systems which
27 support 64-bit executables.  See etc/MACHINES for instructions.
30 * Changes in Emacs 21.1
32 ** The new variable `auto-mode-interpreter-regexp' contains a regular
33 expression matching interpreters, for file mode determination.
35 This regular expression is matched against the first line of a file to
36 determine the file's mode in `set-auto-mode' when Emacs can't deduce a
37 mode from the file's name.  If it matches, the file is assumed to be
38 interpreted by the interpreter matched by the second group of the
39 regular expression.  The mode is then determined as the mode
40 associated with that interpreter in `interpreter-mode-alist'.
42 ** C-down-mouse-3 is bound differently.  Now if the menu bar is not
43 displayed it pops up a menu containing the items which would be on the
44 menu bar.  If the menu bar is displayed, it pops up the major mode
45 menu or the Edit menu if there is no major mode menu.
47 ** Variable `load-path' is no longer customizable because it contains
48 a version-dependent component.
50 ** The <delete> function key is now bound to `delete-char' by default.
51 Note that this takes effect only on window systems.  On TTYs, Emacs
52 will receive ASCII 127 when the DEL key is pressed.  This
53 character is still bound as before.
55 ** Item Save Options on the Options menu allows saving options set
56 using that menu.
58 ** New function executable-make-buffer-file-executable-if-script-p is
59 suitable as an after-save-hook as an alternative to executable-chmod.
61 ** The most preferred coding-system is now used to save a buffer if
62 buffer-file-coding-system is `undecided' and it is safe for the buffer
63 contents.  (The most preferred is set by set-language-environment or
64 by M-x prefer-coding-system.)  Thus if you visit an ASCII file and
65 insert a non-ASCII character from your current language environment,
66 the file will be saved silently with the appropriate coding.
67 Previously you would be prompted for a safe coding system.
69 ** New variable `inhibit-iso-escape-detection' determines if Emacs'
70 coding system detection algorithm should pay attention to ISO2022's
71 escape sequences.  If this variable is non-nil, the algorithm ignores
72 such escape sequences.  The default value is nil, and it is
73 recommended not to change it except for the special case that you
74 always want to read any escape code verbatim.  If you just want to
75 read a specific file without decoding escape codes, use C-x RET c
76 (`universal-coding-system-argument').  For instance, C-x RET c latin-1
77 RET C-x C-f filename RET.
79 ** Variable `default-korean-keyboard' is initialized properly from the
80 environment variable `HANGUL_KEYBOARD_TYPE'.
82 ** C-u C-x = provides detailed information about the character at
83 point in a pop-up window.
85 ** New command M-x list-charset-chars reads a character set name and
86 displays all characters in that character set.
88 ** M-x set-terminal-coding-system (C-x RET t) now allows CCL-based
89 coding systems such as cpXXX and cyrillic-koi8.
91 ** M-; now calls comment-dwim which tries to do something clever based
92 on the context.
94 ** The function `getenv' is now callable interactively.
96 ** The many obsolete language `setup-...-environment' commands have
97 been removed -- use `set-language-environment'.
99 ** New user options `display-time-mail-face' and
100 `display-time-use-mail-icon' control the appearance of mode-line mail
101 indicator used by the display-time package.  On a suitable display the
102 indicator can be an icon and is mouse-sensitive.
104 ** Emacs' auto-save list files are now by default stored in a
105 sub-directory `.emacs.d/auto-save-list/' of the user's home directory.
106 (On MS-DOS, this subdirectory's name is `_emacs.d/auto-save.list/'.)
107 You can customize `auto-save-list-prefix' to change this location.
109 ** On window-systems, additional space can be put between text lines
110 on the display using several methods
112 - By setting frame parameter `line-spacing' to PIXELS.  PIXELS must be
113 a positive integer, and specifies that PIXELS number of pixels should
114 be put below text lines on the affected frame or frames.
116 - By setting X resource `lineSpacing', class `LineSpacing'.  This is
117 equivalent ot specifying the frame parameter.
119 - By specifying `--line-spacing=N' or `-lsp N' on the command line.
121 - By setting buffer-local variable `line-spacing'.  The meaning is
122 the same, but applies to the a particular buffer only.
124 ** The new command `clone-indirect-buffer' can be used to create
125 an indirect buffer that is a twin copy of the current buffer.  The
126 command `clone-indirect-buffer-other-window', bound to C-x 4 c,
127 does the same but displays the indirect buffer in another window.
129 ** New user options `backup-directory-alist' and
130 `make-backup-file-name-function' control the placement of backups,
131 typically in a single directory or in an invisible sub-directory.
133 ** New commands iso-iso2sgml and iso-sgml2iso convert between Latin-1
134 characters and the corresponding SGML (HTML) entities.
136 ** Emacs now refuses to load compiled Lisp files which weren't
137 compiled with Emacs.  Set `load-dangerous-libraries' to t to change
138 this behavior.
140 The reason for this change is an incompatible change in XEmacs' byte
141 compiler.  Files compiled with XEmacs can contain byte codes that let
142 Emacs dump core.
144 ** New X resources recognized
146 *** The X resource `synchronous', class `Synchronous', specifies
147 whether Emacs should run in synchronous mode.  Synchronous mode
148 is useful for debugging X problems.
150 Example:
152   emacs.synchronous: true
154 *** The X resource `visualClass, class `VisualClass', specifies the
155 visual Emacs should use.  The resource's value should be a string of
156 the form `CLASS-DEPTH', where CLASS is the name of the visual class,
157 and DEPTH is the requested color depth as a decimal number.  Valid
158 visual class names are
160   TrueColor
161   PseudoColor
162   DirectColor
163   StaticColor
164   GrayScale
165   StaticGray
167 Visual class names specified as X resource are case-insensitive, i.e.
168 `pseudocolor', `Pseudocolor' and `PseudoColor' all have the same
169 meaning.
171 The program `xdpyinfo' can be used to list the visual classes
172 supported on your display, and which depths they have.  If
173 `visualClass' is not specified, Emacs uses the display's default
174 visual.
176 Example:
178   emacs.visualClass: TrueColor-8
180 *** The X resource `privateColormap', class `PrivateColormap',
181 specifies that Emacs should use a private colormap if it is using the
182 default visual, and that visual is of class PseudoColor.  Recognized
183 resource values are `true' or `on'.
185 Example:
187   emacs.privateColormap: true
189 ** The menu bar configuration has changed.  The new configuration is
190 more CUA-compliant.  The most significant change is that Options is
191 now a separate menu-bar item, with Mule and Customize as its submenus.
193 ** User-option `show-cursor-in-non-selected-windows' controls how to
194 display the cursor in non-selected windows.  If nil, no cursor is
195 shown, if non-nil a hollow box cursor is shown.  This option can
196 be customized.
198 ** The variable `echo-keystrokes' may now have a floating point value.
200 ** C-x 5 1 runs the new command delete-other-frames which deletes
201 all frames except the selected one.
203 ** If your init file is compiled (.emacs.elc), `user-init-file' is set
204 to the source name (.emacs.el), if that exists, after loading it.
206 ** The help string specified for a menu-item whose definition contains
207 the property `:help HELP' is now displayed under X, on MS-Windows, and
208 MS-DOS, either in the echo area or with tooltips.  Many standard menus
209 displayed by Emacs now have help strings.
211 ** Highlighting of mouse-sensitive regions is now supported in the
212 MS-DOS version of Emacs.
214 ** New user option `read-mail-command' specifies a command to use to
215 read mail from the menu etc.
217 ** Hexl contains a new command `hexl-insert-hex-string' which inserts
218 a string of hexadecimal numbers read from the mini-buffer.
220 ** Changes in Texinfo mode.
222 ** A couple of new key bindings have been added for inserting Texinfo
223 macros
225   Key binding   Macro
226   -------------------------
227   C-c C-c C-s   @strong
228   C-c C-c C-e   @emph
229   C-c C-c u     @url
230   C-c C-c q     @quotation
231   C-c C-c m     @email
233 ** Changes in Outline mode.
235 There is now support for Imenu to index headings.  A new command
236 `outline-headers-as-kill' copies the visible headings in the region to
237 the kill ring, e.g. to produce a table of contents.
239 ** Changes to Show Paren mode.
241 *** Overlays used by Show Paren mode now use a priority property.
242 The new user option show-paren-priority specifies the priority to
243 use.  Default is 1000.
245 ** New command M-x check-parens can be used to find unbalanced paren
246 groups and strings in buffers in Lisp mode (or other modes).
248 ** You can now easily create new *Info* buffers using either M-x clone-buffer
249 or C-u m <entry> RET.  M-x clone-buffer can also be used on *Help* and
250 several other special buffers.
252 ** Emacs can now support 'wheeled' mice (such as the MS IntelliMouse)
253 under XFree86.  To enable this, simply put (mwheel-install) in your
254 .emacs file.
256 The variables `mwheel-follow-mouse' and `mwheel-scroll-amount'
257 determine where and by how much buffers are scrolled.
259 ** Listing buffers with M-x list-buffers (C-x C-b) now shows
260 abbreviated file names.  Abbreviations can be customized by changing
261 `directory-abbrev-alist'.
263 ** Reading from the mini-buffer now reads from standard input if Emacs
264 is running in batch mode.  For example,
266   (message "%s" (read t))
268 will read a Lisp expression from standard input and print the result
269 to standard output.
271 ** Faces and frame parameters.
273 There are four new faces `scroll-bar', `border', `cursor' and `mouse'.
274 Setting the frame parameters `scroll-bar-foreground' and
275 `scroll-bar-background' sets foreground and background color of face
276 `scroll-bar' and vice versa.  Setting frame parameter `border-color'
277 sets the background color of face `border' and vice versa.  Likewise
278 for frame parameters `cursor-color' and face `cursor', and frame
279 parameter `mouse-color' and face `mouse'.
281 Changing frame parameter `font' sets font-related attributes of the
282 `default' face and vice versa.  Setting frame parameters
283 `foreground-color' or `background-color' sets the colors of the
284 `default' face and vice versa.
286 ** New face `menu'.
288 The face `menu' can be used to change colors and font of Emacs' menus.
289 Setting the font of LessTif/Motif menus is currently not supported;
290 attempts to set the font are ignored in this case.
292 ** New frame parameter `screen-gamma' for gamma correction.
294 The new frame parameter `screen-gamma' specifies gamma-correction for
295 colors.  Its value may be nil, the default, in which case no gamma
296 correction occurs, or a number > 0, usually a float, that specifies
297 the screen gamma of a frame's display.
299 PC monitors usually have a screen gamma of 2.2.  smaller values result
300 in darker colors.  You might want to try a screen gamma of 1.5 for LCD
301 color displays.  The viewing gamma Emacs uses is 0.4545. (1/2.2).
303 The X resource name of this parameter is `screenGamma', class
304 `ScreenGamma'.
306 ** Emacs has a new redisplay engine.
308 The new redisplay handles characters of variable width and height.
309 Italic text can be used without redisplay problems.  Fonts containing
310 oversized characters, i.e. characters larger than the logical height
311 of a font can be used.  Images of various formats can be displayed in
312 the text.
314 ** Emacs has a new face implementation.
316 The new faces no longer fundamentally use X font names to specify the
317 font.  Instead, each face has several independent attributes--family,
318 height, width, weight and slant--that it may or may not specify.
319 These attributes can be merged from various faces, and then together
320 specify a font.
322 Faces are supported on terminals that can display color or fonts.
323 These terminal capabilities are auto-detected.  Details can be found
324 under Lisp changes, below.
326 ** New default font is Courier 12pt.
328 ** When using a windowing terminal, Emacs window now has a cursor of
329 its own.  When the window is selected, the cursor is solid; otherwise,
330 it is hollow.
332 ** Bitmap areas to the left and right of windows are used to display
333 truncation marks, continuation marks, overlay arrows and alike.  The
334 foreground, background, and stipple of these areas can be changed by
335 customizing face `fringe'.
337 ** The mode line under X is now drawn with shadows by default.  You
338 can change its appearance by modifying the face `modeline'.
340 ** LessTif support.
342 Emacs now runs with LessTif (see <http://www.lesstif.org>).  You will
343 need a version 0.88.1 or later.
345 ** Toolkit scroll bars.
347 Emacs now uses toolkit scrollbars if available.  When configured for
348 LessTif/Motif, it will use that toolkit's scrollbar.  Otherwise, when
349 configured for Lucid and Athena widgets, it will use the Xaw3d scroll
350 bar if Xaw3d is available.  You can turn off the use of toolkit scroll
351 bars by specifying `--with-toolkit-scroll-bars=no' when configuring
352 Emacs.
354 When you encounter problems with the Xaw3d scroll bar, watch out how
355 Xaw3d is compiled on your system.  If the Makefile generated from
356 Xaw3d's Imakefile contains a `-DNARROWPROTO' compiler option, and your
357 Emacs system configuration file `s/your-system.h' does not contain a
358 define for NARROWPROTO, you might consider adding it.  Take
359 `s/freebsd.h' as an example.
361 Alternatively, if you don't have access to the Xaw3d source code, take
362 a look at your system's imake configuration file, for example in the
363 directory `/usr/X11R6/lib/X11/config' (paths are different on
364 different systems).  You will find files `*.cf' there.  If your
365 system's cf-file contains a line like `#define NeedWidePrototypes NO',
366 add a `#define NARROWPROTO' to your Emacs system configuration file.
368 The reason for this is that one Xaw3d function uses `double' or
369 `float' function parameters depending on the setting of NARROWPROTO.
370 This is not a problem when Imakefiles are used because each system's
371 image configuration file contains the necessary information.  Since
372 Emacs doesn't use imake, this has do be done manually.
374 ** Toggle buttons and radio buttons in menus.
376 When compiled with LessTif (or Motif) support, Emacs uses toolkit
377 widgets for radio and toggle buttons in menus.  When configured for
378 Lucid, Emacs draws radio buttons and toggle buttons similar to Motif.
380 ** Highlighting of trailing whitespace.
382 When `show-trailing-whitespace' is non-nil, Emacs displays trailing
383 whitespace in the face `trailing-whitespace'.  Trailing whitespace is
384 defined as spaces or tabs at the end of a line.  To avoid busy
385 highlighting when entering new text, trailing whitespace is not
386 displayed if point is at the end of the line containing the
387 whitespace.
389 ** Busy-cursor.
391 Emacs can optionally display a busy-cursor under X.  You can turn the
392 display on or off by customizing group `cursor'.
394 ** Blinking cursor
396 M-x blink-cursor-mode toggles a blinking cursor under X and on
397 terminals having terminal capabilities `vi', `vs', and `ve'.  Blinking
398 and related parameters like frequency and delay can be customized in
399 the group `cursor'.
401 ** New font-lock support mode `jit-lock-mode'.
403 This support mode is roughly equivalent to `lazy-lock' but is
404 generally faster.  It supports stealth and deferred fontification.
405 See the documentation of the function `jit-lock-mode' for more
406 details.
408 Font-lock uses jit-lock-mode as default support mode, so you don't
409 have to do anything to activate it.
411 ** Tabs and variable-width text.
413 Tabs are now displayed with stretch properties; the width of a tab is
414 defined as a multiple of the normal character width of a frame, and is
415 independent of the fonts used in the text where the tab appears.
416 Thus, tabs can be used to line up text in different fonts.
418 ** Enhancements of the Lucid menu bar
420 *** The Lucid menu bar now supports the resource "margin".
422         emacs.pane.menubar.margin: 5
424 The default margin is 4 which makes the menu bar appear like the
425 LessTif/Motif one.
427 *** Arrows that indicate sub-menus are now drawn with shadows, as in
428 LessTif and Motif.
430 ** Hscrolling in C code.
432 Horizontal scrolling now happens automatically if
433 `automatic-hscrolling' is set (the default).  This setting can be
434 customized.
436 ** Tool bar support.
438 Emacs supports a tool bar at the top of a frame under X.  For details
439 how to define a tool bar, see the page describing Lisp-level changes.
441 ** Mouse-sensitive mode line.
443 Different parts of the mode line under X have been made
444 mouse-sensitive.  Moving the mouse to a mouse-sensitive part in the mode
445 line changes the appearance of the mouse pointer to an arrow, and help
446 about available mouse actions is displayed either in the echo area, or
447 in the tooltip window if you have enabled one.
449 Currently, the following actions have been defined:
451 - Mouse-1 on the buffer name in the mode line switches between two
452 buffers.
454 - Mouse-2 on the buffer-name switches to the next buffer, and
455 M-mouse-2 switches to the previous buffer in the buffer list.
457 - Mouse-3 on the buffer-name displays a buffer menu.
459 - Mouse-2 on the read-only status in the mode line (`%' or `*')
460 toggles the read-only status.
462 - Mouse-3 on the mode name display a minor-mode menu.
464 ** LessTif/Motif file selection dialog.
466 When Emacs is configured to use LessTif or Motif, reading a file name
467 from a menu will pop up a file selection dialog if `use-dialog-box' is
468 non-nil.
470 ** Emacs can display faces on TTY frames.
472 Emacs automatically detects terminals that are able to display colors.
473 Faces with a weight greater than normal are displayed extra-bright, if
474 the terminal supports it.  Faces with a weight less than normal and
475 italic faces are displayed dimmed, if the terminal supports it.
476 Underlined faces are displayed underlined if possible.  Other face
477 attributes such as `overline', `strike-through', and `box' are ignored
478 on terminals.
480 ** Sound support
482 Emacs supports playing sound files on GNU/Linux and FreeBSD (Voxware
483 driver and native BSD driver, a.k.a. Luigi's driver).  Currently
484 supported file formats are RIFF-WAVE (*.wav) and Sun Audio (*.au).
486 ** A new variable, backup-by-copying-when-privileged-mismatch, gives
487 the highest file uid for which backup-by-copying-when-mismatch will be
488 forced on.  The assumption is that uids less than or equal to this
489 value are special uids (root, bin, daemon, etc.--not real system
490 users) and that files owned by these users should not change ownership,
491 even if your system policy allows users other than root to edit them.
493 The default is 200; set the variable to nil to disable the feature.
495 ** A block cursor can be drawn as wide as the glyph under it under X.
497 As an example: if a block cursor is over a tab character, it will be
498 drawn as wide as that tab on the display.  To do this, set
499 `x-stretch-cursor' to a non-nil value.
501 ** Empty display lines at the end of a buffer may be marked with a
502 bitmap (this is similar to the tilde displayed by vi).
504 This behavior is activated by setting the buffer-local variable
505 `indicate-empty-lines' to a non-nil value.  The default value of this
506 variable is found in `default-indicate-empty-lines'.
508 ** There is a new "aggressive" scrolling method.
510 When scrolling up because point is above the window start, if the
511 value of the buffer-local variable `scroll-up-aggessively' is a
512 number, Emacs chooses a new window start so that point ends up that
513 fraction of the window's height from the bottom of the window.
515 When scrolling down because point is below the window end, if the
516 value of the buffer-local variable `scroll-down-aggessively' is a
517 number, Emacs chooses a new window start so that point ends up that
518 fraction of the window's height from the top of the window.
520 ** The rectangle commands now avoid inserting undesirable spaces,
521 notably at the end of lines.
523 All these functions have been rewritten to avoid inserting unwanted
524 spaces, and an optional prefix now allows them to behave the old way.
526 There is a new command M-x replace-rectangle.
528 ** The new command M-x query-replace-regexp-eval acts like
529 query-replace-regexp, but takes a Lisp expression which is evaluated
530 after each match to get the replacement text.
532 ** M-x query-replace recognizes a new command `e' (or `E') that lets
533 you edit the replacement string.
535 ** The new command mail-abbrev-complete-alias, bound to `M-TAB', let's
536 you complete mail aliases in the text, analogous to
537 lisp-complete-symbol.
539 ** Emacs now resizes mini-windows if appropriate.
541 If a message is longer than one line, or minibuffer contents are
542 longer than one line, Emacs now resizes the minibuffer window unless
543 it is on a frame of its own.  You can control the maximum minibuffer
544 window size by setting the following variable:
546 - User option: max-mini-window-height
548 Maximum height for resizing mini-windows.  If a float, it specifies a
549 fraction of the mini-window frame's height.  If an integer, it
550 specifies a number of lines.  If nil, don't resize.
552 Default is 0.25.
554 ** The command `Info-search' now uses a search history.
556 ** Changes to hideshow.el
558 Hideshow is now at version 5.x.  It uses a new algorithms for block
559 selection and traversal and includes more isearch support.
561 *** Generalized block selection and traversal
563 A block is now recognized by three things: its start and end regexps
564 (both strings), and a match-data selector (an integer) specifying
565 which sub-expression in the start regexp serves as the place where a
566 `forward-sexp'-like function can operate.  Hideshow always adjusts
567 point to this sub-expression before calling `hs-forward-sexp-func'
568 (which for most modes evaluates to `forward-sexp').
570 If the match-data selector is not specified, it defaults to zero,
571 i.e., the entire start regexp is valid, w/ no prefix.  This is
572 backwards compatible with previous versions of hideshow.  Please see
573 the docstring for variable `hs-special-modes-alist' for details.
575 *** Isearch support for updating mode line
577 During incremental search, if Hideshow minor mode is active, hidden
578 blocks are temporarily shown.  The variable `hs-headline' records the
579 line at the beginning of the opened block (preceding the hidden
580 portion of the buffer), and the mode line is refreshed.  When a block
581 is re-hidden, the variable is set to nil.
583 To show `hs-headline' in the mode line, you may wish to include
584 something like this in your .emacs.
586         (add-hook 'hs-minor-mode-hook
587           (lambda ()
588             (add-to-list 'mode-line-format 'hs-headline)))
590 ** Changes to Change Log mode and Add-Log functions
592 If you invoke `add-change-log-entry' from a backup file, it makes an
593 entry appropriate for the file's parent.  This is useful for making
594 log entries by comparing a version with deleted functions.
596 New command M-x change-log-merge merges another log into the current
597 buffer, fixing old-style date formats if necessary.
599 Change Log mode now adds a file's version number to change log entries
600 if user-option `change-log-version-info-enabled' is non-nil.
602 The search for a file's version number is performed based on regular
603 expressions from `change-log-version-number-regexp-list' which can be
604 cutomized.  Version numbers are only found in the first 10 percent of
605 a file.
607 ** Changes in Font Lock
609 *** The new function `font-lock-remove-keywords' can be used to remove
610 font-lock keywords from the current buffer or from a specific major
611 mode.
613 ** Comint (subshell) changes
615 By default, comint no longer uses the variable `comint-prompt-regexp' to
616 distiguish prompts from user-input.  Instead, it notices which parts of
617 the text were output by the process, and which entered by the user, and
618 attaches `field' properties to allow emacs commands to use this information.
619 Common movement commands, notably beginning-of-line, respect field
620 boundaries in a fairly natural manner.
621 To disable this feature, and use the old behavior, set the variable
622 `comint-use-prompt-regexp-instead-of-fields' to a non-nil value.
624 Comint now includes new features to send commands to running processes
625 and redirect the output to a designated buffer or buffers.
627 The command M-x comint-redirect-send-command reads a command and
628 buffer name from the mini-buffer.  The command is sent to the current
629 buffer's process, and its output is inserted into the specified buffer.
631 The command M-x comint-redirect-send-command-to-process acts like
632 M-x comint-redirect-send-command but additionally reads the name of
633 the buffer whose process should be used from the mini-buffer.
635 Packages based on comint.el like shell-mode, and scheme-interaction-mode
636 now highlight user input and program prompts, and support choosing
637 previous input with mouse-2.  To control these feature, see the
638 user-options `comint-highlight-input' and `comint-highlight-prompt'.
640 ** Changes to Rmail mode
642 *** The new user-option rmail-rmail-user-mail-address-regexp can be
643 set to fine tune the identification of of the correspondent when
644 receiving new mail.  If it matches the address of the sender, the
645 recipient is taken as correspondent of a mail.  If nil, the default,
646 `user-login-name' and `user-mail-address' are used to exclude yourself
647 as correspondent.
649 Usually you don't have to set this variable, except if you collect
650 mails sent by you under different user names.  Then it should be a
651 regexp matching your mail addresses.
653 *** The new user-option rmail-confirm-expunge controls whether and how
654 to ask for confirmation before expunging deleted messages from an
655 Rmail file.  You can choose between no confirmation, confirmation
656 with y-or-n-p, or confirmation with yes-or-no-p.  Default is to ask
657 for confirmation with yes-or-no-p.
659 *** RET is now bound in the Rmail summary to rmail-summary-goto-msg,
660 like `j'.
662 *** There is a new user option `rmail-digest-end-regexps' that
663 specifies the regular expressions to detect the line that ends a
664 digest message.
666 *** The new user option `rmail-automatic-folder-directives' specifies
667 in which folder to put messages automatically.
669 ** Changes to TeX mode
671 The default mode has been changed from `plain-tex-mode' to
672 `latex-mode'.
674 ** Changes to RefTeX mode
676 *** RefTeX has new support for index generation.  Index entries can be
677     created with `C-c <', with completion available on index keys.
678     Pressing `C-c /' indexes the word at the cursor with a default
679     macro.  `C-c >' compiles all index entries into an alphabetically
680     sorted *Index* buffer which looks like the final index.  Entries
681     can be edited from that buffer.
683 *** Label and citation key selection now allow to select several
684     items and reference them together (use `m' to mark items, `a' or
685     `A' to use all marked entries).
687 *** reftex.el has been split into a number of smaller files to reduce
688     memory use when only a part of RefTeX is being used.
690 *** a new command `reftex-view-crossref-from-bibtex' (bound to `C-c &'
691     in BibTeX-mode) can be called in a BibTeX database buffer in order
692     to show locations in LaTeX documents where a particular entry has
693     been cited.
695 ** Emacs Lisp mode now allows multiple levels of outline headings.
696 The level of a heading is determined from the number of leading
697 semicolons in a heading line.  Toplevel forms starting with a `('
698 in column 1 are always made leaves.
700 ** The M-x time-stamp command (most commonly used on write-file-hooks)
701 has the following new features:
703 *** The patterns for finding the time stamp and for updating a pattern
704 may match text spanning multiple lines.  For example, some people like
705 to have the filename and date on separate lines.  The new variable
706 time-stamp-inserts-lines controls the matching for multi-line patterns.
708 *** More than one time stamp can be updated in the same file.  This
709 feature is useful if you need separate time stamps in a program source
710 file to both include in formatted documentation and insert in the
711 compiled binary.  The same time-stamp will be written at each matching
712 pattern.  The variable time-stamp-count enables this new feature; it
713 defaults to 1.
715 ** Partial Completion mode now completes environment variables in
716 file names.
718 ** Tooltips.
720 Tooltips are small X windows displaying a help string at the current
721 mouse position.  To use them, use the Lisp package `tooltip' which you
722 can access via the user option `tooltip-mode'.
724 Tooltips also provides support for GUD debugging.  If activated,
725 variable values can be displayed in tooltips by pointing at them with
726 the mouse in source buffers.  You can customize various aspects of the
727 tooltip display in the group `tooltip'.
729 ** Customize changes
731 *** Customize now supports comments about customized items.  Use the
732 `State' menu to add comments.  Note that customization comments will
733 cause the customizations to fail in earlier versions of Emacs.
735 *** The new option `custom-buffer-done-function' says whether to kill
736 Custom buffers when you've done with them or just bury them (the
737 default).
739 *** The keyword :set-after in defcustom allows to specify dependencies
740 between custom options.  Example:
742   (defcustom default-input-method nil
743     "*Default input method for multilingual text (a string).
744   This is the input method activated automatically by the command
745   `toggle-input-method' (\\[toggle-input-method])."
746     :group 'mule
747     :type '(choice (const nil) string)
748     :set-after '(current-language-environment))
750 This specifies that default-input-method should be set after
751 current-language-environment even if default-input-method appears
752 first in a custom-set-variables statement.
754 ** New features in evaluation commands
756 *** The commands to evaluate Lisp expressions, such as C-M-x in Lisp
757 modes, C-j in Lisp Interaction mode, and M-:, now bind the variables
758 print-level, print-length, and debug-on-error based on the
759 customizable variables eval-expression-print-level,
760 eval-expression-print-length, and eval-expression-debug-on-error.
762 *** The function `eval-defun' (M-C-x) now loads Edebug and instruments
763 code when called with a prefix argument.
765 ** Ispell changes
767 *** The command `ispell' now spell-checks a region if
768 transient-mark-mode is on, and the mark is active.  Otherwise it
769 spell-checks the current buffer.
771 ** Dired changes
773 *** New variable `dired-recursive-deletes' determines if the delete
774 command will delete non-empty directories recursively.  The default
775 is, delete only empty directories.
777 *** New variable `dired-recursive-copies' determines if the copy
778 command will copy directories recursively.  The default is, do not
779 copy directories recursively.
781 *** In command `dired-do-shell-command' (usually bound to `!') a `?'
782 in the shell command has a special meaning similar to `*', but with
783 the difference that the command will be run on each file individually.
785 *** The new command `dired-find-alternate-file' (usually bound to `a')
786 replaces the Dired buffer with the buffer for an alternate file or
787 directory.
789 *** The new command `dired-show-file-type' (usually bound to `w') shows
790 a message in the echo area describing what type of file the point is on.
791 This command invokes the external program `file' do its work, and so
792 will only work on systems with that program, and will be only as
793 accurate or inaccurate as it is.
795 *** Dired now properly handles undo changes of adding/removing `-R'
796 from ls switches.
798 ** The variable mail-specify-envelope-from controls whether to
799 use the -f option when sending mail.
801 ** CC mode changes.
803 Note: This release contains changes that might not be compatible with
804 current user setups (although it's believed that these
805 incompatibilities will only show in very uncommon circumstances).
806 However, since the impact is uncertain, these changes may be rolled
807 back depending on user feedback.  Therefore there's no forward
808 compatibility guarantee wrt the new features introduced in this
809 release.
811 *** c-style-variables-are-local-p now defaults to t.
812 This is an incompatible change that has been made to make the behavior
813 of the style system wrt global variable settings less confusing for
814 non-advanced users.  If you know what this variable does you might
815 want to set it to nil in your .emacs, otherwise you probably don't
816 have to bother.
818 Defaulting c-style-variables-are-local-p to t avoids the confusing
819 situation that occurs when a user sets some style variables globally
820 and edits both a Java and a non-Java file in the same Emacs session.
821 If the style variables aren't buffer local in this case, loading of
822 the second file will cause the default style (either "gnu" or "java"
823 by default) to override the global settings made by the user.
825 *** New initialization procedure for the style system.
826 When the initial style for a buffer is determined by CC Mode (from the
827 variable c-default-style), the global values of style variables now
828 take precedence over the values specified by the chosen style.  This
829 is different than the old behavior: previously, the style-specific
830 settings would override the global settings.  This change makes it
831 possible to do simple configuration in the intuitive way with
832 Customize or with setq lines in one's .emacs file.
834 By default, the global value of every style variable is the new
835 special symbol set-from-style, which causes the value to be taken from
836 the style system.  This means that in effect, only an explicit setting
837 of a style variable will cause the "overriding" behavior described
838 above.
840 Also note that global settings override style-specific settings *only*
841 when the initial style of a buffer is chosen by a CC Mode major mode
842 function.  When a style is chosen in other ways --- for example, by a
843 call like (c-set-style "gnu") in a hook, or via M-x c-set-style ---
844 then the style-specific values take precedence over any global style
845 values.  In Lisp terms, global values override style-specific values
846 only when the new second argument to c-set-style is non-nil; see the
847 function documentation for more info.
849 The purpose of these changes is to make it easier for users,
850 especially novice users, to do simple customizations with Customize or
851 with setq in their .emacs files.  On the other hand, the new system is
852 intended to be compatible with advanced users' customizations as well,
853 such as those that choose styles in hooks or whatnot.  This new system
854 is believed to be almost entirely compatible with current
855 configurations, in spite of the changed precedence between style and
856 global variable settings when a buffer's default style is set.
858 (Thanks to Eric Eide for clarifying this explanation a bit.)
860 **** c-offsets-alist is now a customizable variable.
861 This became possible as a result of the new initialization behavior.
863 This variable is treated slightly differently from the other style
864 variables; instead of using the symbol set-from-style, it will be
865 completed with the syntactic symbols it doesn't already contain when
866 the style is first initialized.  This means it now defaults to the
867 empty list to make all syntactic elements get their values from the
868 style system.
870 **** Compatibility variable to restore the old behavior.
871 In case your configuration doesn't work with this change, you can set
872 c-old-style-variable-behavior to non-nil to get the old behavior back
873 as far as possible.
875 *** Improvements to line breaking and text filling.
876 CC Mode now handles this more intelligently and seamlessly wrt the
877 surrounding code, especially inside comments.  For details see the new
878 chapter about this in the manual.
880 **** New variable to recognize comment line prefix decorations.
881 The variable c-comment-prefix-regexp has been added to properly
882 recognize the line prefix in both block and line comments.  It's
883 primarily used to initialize the various paragraph recognition and
884 adaptive filling variables that the text handling functions uses.
886 **** New variable c-block-comment-prefix.
887 This is a generalization of the now obsolete variable
888 c-comment-continuation-stars to handle arbitrary strings.
890 **** CC Mode now uses adaptive fill mode.
891 This to make it adapt better to the paragraph style inside comments.
893 It's also possible to use other adaptive filling packages inside CC
894 Mode, notably Kyle E. Jones' Filladapt mode (http://wonderworks.com/).
895 A new convenience function c-setup-filladapt sets up Filladapt for use
896 inside CC Mode.
898 Note though that the 2.12 version of Filladapt lacks a feature that
899 causes it to work suboptimally when c-comment-prefix-regexp can match
900 the empty string (which it commonly does).  A patch for that is
901 available from the CC Mode web site (http://www.python.org/emacs/
902 cc-mode/).
904 **** It's now possible to selectively turn off auto filling.
905 The variable c-ignore-auto-fill is used to ignore auto fill mode in
906 specific contexts, e.g. in preprocessor directives and in string
907 literals.
909 **** New context sensitive line break function c-context-line-break.
910 It works like newline-and-indent in normal code, and adapts the line
911 prefix according to the comment style when used inside comments.  If
912 you're normally using newline-and-indent, you might want to switch to
913 this function.
915 *** Fixes to IDL mode.
916 It now does a better job in recognizing only the constructs relevant
917 to IDL.  E.g. it no longer matches "class" as the beginning of a
918 struct block, but it does match the CORBA 2.3 "valuetype" keyword.
919 Thanks to Eric Eide.
921 *** Improvements to the Whitesmith style.
922 It now keeps the style consistently on all levels and both when
923 opening braces hangs and when they don't.
925 **** New lineup function c-lineup-whitesmith-in-block.
927 *** New lineup functions c-lineup-template-args and c-indent-multi-line-block.
928 See their docstrings for details.  c-lineup-template-args does a
929 better job of tracking the brackets used as parens in C++ templates,
930 and is used by default to line up continued template arguments.
932 *** c-lineup-comment now preserves alignment with a comment on the
933 previous line.  It used to instead preserve comments that started in
934 the column specified by comment-column.
936 *** c-lineup-C-comments handles "free form" text comments.
937 In comments with a long delimiter line at the start, the indentation
938 is kept unchanged for lines that start with an empty comment line
939 prefix.  This is intended for the type of large block comments that
940 contain documentation with its own formatting.  In these you normally
941 don't want CC Mode to change the indentation.
943 *** The `c' syntactic symbol is now relative to the comment start
944 instead of the previous line, to make integers usable as lineup
945 arguments.
947 *** All lineup functions have gotten docstrings.
949 *** More preprocessor directive movement functions.
950 c-down-conditional does the reverse of c-up-conditional.
951 c-up-conditional-with-else and c-down-conditional-with-else are
952 variants of these that also stops at "#else" lines (suggested by Don
953 Provan).
955 *** Minor improvements to many movement functions in tricky situations.
957 ** Makefile mode changes
959 *** The mode now uses the abbrev table `makefile-mode-abbrev-table'.
961 *** Conditionals and include statements are now highlighted when
962 Fontlock mode is active.
964 ** Isearch changes
966 *** Isearch now puts a call to `isearch-resume' in the command history,
967 so that searches can be resumed.
969 *** In Isearch mode, M-C-s and M-C-r are now bound like C-s and C-r,
970 respectively, i.e. you can repeat a regexp isearch with the same keys
971 that started the search.
973 *** In Isearch mode, mouse-2 in the echo area now yanks the current
974 selection into the search string rather than giving an error.
976 *** There is a new lazy highlighting feature in incremental search.
978 Lazy highlighting is switched on/off by customizing variable
979 `isearch-lazy-highlight'.  When active, all matches for the current
980 search string are highlighted.  The current match is highlighted as
981 before using face `isearch' or `region'.  All other matches are
982 highlighted using face `isearch-lazy-highlight-face' which defaults to
983 `secondary-selection'.
985 The extra highlighting makes it easier to anticipate where the cursor
986 will end up each time you press C-s or C-r to repeat a pending search.
987 Highlighting of these additional matches happens in a deferred fashion
988 using "idle timers," so the cycles needed do not rob isearch of its
989 usual snappy response.
991 If `isearch-lazy-highlight-cleanup' is set to t, highlights for
992 matches are automatically cleared when you end the search.  If it is
993 set to nil, you can remove the highlights manually with `M-x
994 isearch-lazy-highlight-cleanup'.
996 ** Changes in sort.el
998 The function sort-numeric-fields interprets numbers starting with `0'
999 as octal and numbers starting with `0x' or `0X' as hexadecimal.  The
1000 new user-option sort-numberic-base can be used to specify a default
1001 numeric base.
1003 ** Changes to Ange-ftp
1005 *** Ange-ftp allows you to specify of a port number in remote file
1006 names cleanly.  It is appended to the host name, separated by a hash
1007 sign, e.g. `/foo@bar.org#666:mumble'.  (This syntax comes from EFS.)
1009 *** If the new user-option `ange-ftp-try-passive-mode' is set, passive
1010 ftp mode will be used if the ftp client supports that.
1012 *** Ange-ftp handles the output of the w32-style clients which
1013 output ^M at the end of lines.
1015 ** Shell script mode changes.
1017 Shell script mode (sh-script) can now indent scripts for shells
1018 derived from sh and rc.  The indentation style is customizeable, and
1019 sh-script can attempt to "learn" the current buffer's style.
1021 ** Etags changes.
1023 *** In DOS, etags looks for file.cgz if it cannot find file.c.
1025 *** New option --ignore-case-regex is an alternative to --regex.  It is now
1026 possible to bind a regexp to a language, by prepending the regexp with
1027 {lang}, where lang is one of the languages that `etags --help' prints out.
1028 This feature is useful especially for regex files, where each line contains
1029 a regular expression.  The manual contains details.
1031 *** In C and derived languages, etags creates tags for function
1032 declarations when given the --declarations option.
1034 *** In C++, tags are created for "operator".  The tags have the form
1035 "operator+", without spaces between the keyword and the operator.
1037 *** New language Ada: tags are functions, procedures, packages, tasks, and
1038 types.
1040 *** In Fortran, `procedure' is not tagged.
1042 *** In Java, tags are created for "interface".
1044 *** In Lisp, "(defstruct (foo", "(defun (operator" and similar constructs
1045 are now tagged.
1047 *** In Perl, the --globals option tags global variables.  my and local
1048 variables are tagged.
1050 *** New language Python: def and class at the beginning of a line are tags.
1052 *** .ss files are Scheme files, .pdb is Postscript with C syntax, .psw is
1053 for PSWrap.
1055 ** Changes in etags.el
1057 *** The new user-option tags-case-fold-search can be used to make
1058 tags operations case-sensitive or case-insensitive.  The default
1059 is to use the same setting as case-fold-search.
1061 *** You can display additional output with M-x tags-apropos by setting
1062 the new variable tags-apropos-additional-actions.
1064 If non-nil, the variable's value should be a list of triples (TITLE
1065 FUNCTION TO-SEARCH).  For each triple, M-x tags-apropos processes
1066 TO-SEARCH and lists tags from it.  TO-SEARCH should be an alist,
1067 obarray, or symbol.  If it is a symbol, the symbol's value is used.
1069 TITLE is a string to use to label the list of tags from TO-SEARCH.
1071 FUNCTION is a function to call when an entry is selected in the Tags
1072 List buffer.  It is called with one argument, the selected symbol.
1074 A useful example value for this variable might be something like:
1076   '(("Emacs Lisp" Info-goto-emacs-command-node obarray)
1077     ("Common Lisp" common-lisp-hyperspec common-lisp-hyperspec-obarray)
1078     ("SCWM" scwm-documentation scwm-obarray))
1080 *** The face tags-tag-face can be used to customize the appearance
1081 of tags in the output of M-x tags-apropos.
1083 *** Setting tags-apropos-verbose to a non-nil value displays the
1084 names of tags files in the *Tags List* buffer.
1086 ** Emacs now attempts to determine the initial language environment
1087 and preferred and locale coding systems systematically from the
1088 LC_ALL, LC_CTYPE, and LANG environment variables during startup.
1090 ** New language environments `Polish', `Latin-8' and `Latin-9'.
1091 Latin-8 and Latin-9 correspond respectively to the ISO character sets
1092 8859-14 (Celtic) and 8859-15 (updated Latin-1, with the Euro sign).
1093 There is currently no specific input method support for them.
1095 ** Fortran mode has a new command `fortran-strip-sequence-nos' to
1096 remove text past column 72.  The syntax class of `\' in Fortran is now
1097 appropriate for C-style escape sequences in strings.
1099 ** SGML mode's default `sgml-validate-command' is now `nsgmls'.
1101 ** A new command `view-emacs-problems' (C-h P) displays the PROBLEMS file.
1103 ** The Dabbrev package has a new user-option `dabbrev-ignore-regexps'
1104 containing a list of regular expressions.  Buffers matching a regular
1105 expression from that list, are not checked.
1107 ** Emacs can now figure out modification times of remote files.
1108 When you do C-x C-f /user@host:/path/file RET and edit the file,
1109 and someone else modifies the file, you will be prompted to revert
1110 the buffer, just like for the local files.
1112 ** The buffer menu (C-x C-b) no longer lists the *Buffer List* buffer.
1114 ** New modes and packages
1116 *** The new package timeclock.el is a mode is for keeping track of time
1117 intervals.  You can use it for whatever purpose you like, but the
1118 typical scenario is to keep track of how much time you spend working
1119 on certain projects.
1121 *** The new package hi-lock.el, text matching interactively entered
1122 regexp's can be highlighted.  For example,
1124   M-x highlight-regexp RET clearly RET RET
1126 will highlight all occurrences of `clearly' using a yellow background
1127 face.  New occurrences of `clearly' will be highlighted as they are
1128 typed.  `M-x unhighlight-regexp RET' will remove the highlighting.
1129 Any existing face can be used for highlighting and a set of
1130 appropriate faces is provided.  The regexps can be written into the
1131 current buffer in a form that will be recognized the next time the
1132 corresponding file is read.
1134 *** The new package zone.el plays games with Emacs' display when
1135 Emacs is idle.
1137 *** The new package xml.el provides a simple but generic XML
1138 parser. It doesn't parse the DTDs however.
1140 *** The comment operations are now provided by the newcomment.el
1141 package which allows different styles of comment-region and should
1142 be more robust while offering the same functionality.
1144 *** The Ebrowse package implements a C++ class browser and tags
1145 facilities tailored for use with C++.  It is documented in a
1146 separate Texinfo file.
1148 *** The PCL-CVS package available by either running M-x cvs-examine
1149 or by visiting a CVS administrative directory (with a prefix argument)
1150 provides an alternative interface to VC-dired for CVS.
1151 It comes with log-view-mode to view RCS and SCCS logs and log-edit-mode
1152 used to enter checkin log messages.
1154 *** The new package called `woman' allows to browse Unix man pages
1155 without invoking external programs.
1157 The command `M-x woman' formats manual pages entirely in Emacs Lisp
1158 and then displays them, like `M-x manual-entry' does.  Unlike
1159 `manual-entry', `woman' does not invoke any external programs, so it
1160 is useful on systems such as MS-DOS/MS-Windows where the `man' and
1161 Groff or `troff' commands are not readily available.
1163 The command `M-x woman-find-file' asks for the file name of a man
1164 page, then formats and displays it like `M-x woman' does.
1166 *** The new command M-x re-builder offers a convenient interface for
1167 authoring regular expressions with immediate visual feedback.
1169 The buffer from which the command was called becomes the target for
1170 the regexp editor popping up in a separate window.  Matching text in
1171 the target buffer is immediately color marked during the editing.
1172 Each sub-expression of the regexp will show up in a different face so
1173 even complex regexps can be edited and verified on target data in a
1174 single step.
1176 On displays not supporting faces the matches instead blink like
1177 matching parens to make them stand out.  On such a setup you will
1178 probably also want to use the sub-expression mode when the regexp
1179 contains such to get feedback about their respective limits.
1181 *** glasses-mode is a minor mode that makes
1182 unreadableIdentifiersLikeThis readable.  It works as glasses, without
1183 actually modifying content of a buffer.
1185 *** The package ebnf2ps translates an EBNF to a syntactic chart in
1186 PostScript.
1188 Currently accepts ad-hoc EBNF, ISO EBNF and Bison/Yacc.
1190 The ad-hoc default EBNF syntax has the following elements:
1192     ;           comment (until end of line)
1193     A           non-terminal
1194     "C"         terminal
1195     ?C?         special
1196     $A          default non-terminal
1197     $"C"        default terminal
1198     $?C?        default special
1199     A = B.      production (A is the header and B the body)
1200     C D         sequence (C occurs before D)
1201     C | D       alternative (C or D occurs)
1202     A - B       exception (A excluding B, B without any non-terminal)
1203     n * A       repetition (A repeats n (integer) times)
1204     (C)         group (expression C is grouped together)
1205     [C]         optional (C may or not occurs)
1206     C+          one or more occurrences of C
1207     {C}+        one or more occurrences of C
1208     {C}*        zero or more occurrences of C
1209     {C}         zero or more occurrences of C
1210     C / D       equivalent to: C {D C}*
1211     {C || D}+   equivalent to: C {D C}*
1212     {C || D}*   equivalent to: [C {D C}*]
1213     {C || D}    equivalent to: [C {D C}*]
1215 Please, see ebnf2ps documentation for EBNF syntax and how to use it.
1217 *** The package align.el will align columns within a region, using M-x
1218 align.  Its mode-specific rules, based on regular expressions,
1219 determine where the columns should be split.  In C and C++, for
1220 example, it will align variable names in declaration lists, or the
1221 equal signs of assignments.
1223 *** `paragraph-indent-minor-mode' is a new minor mode supporting
1224 paragraphs in the same style as `paragraph-indent-text-mode'.
1226 *** bs.el is a new package for buffer selection similar to
1227 list-buffers or electric-buffer-list.  Use M-x bs-show to display a
1228 buffer menu with this package.  You can use M-x bs-customize to
1229 customize the package.
1231 *** find-lisp.el is a package emulating the Unix find command in Lisp.
1233 *** calculator.el is a small calculator package that is intended to
1234 replace desktop calculators such as xcalc and calc.exe.  Actually, it
1235 is not too small - it has more features than most desktop calculators,
1236 and can be customized easily to get many more functions.  It should
1237 not be confused with "calc" which is a much bigger mathematical tool
1238 which answers different needs.
1240 *** The minor modes cwarn-mode and global-cwarn-mode highlights
1241 suspicious C and C++ constructions.  Currently, assignments inside
1242 expressions, semicolon following `if', `for' and `while' (except, of
1243 course, after a `do .. while' statement), and C++ functions with
1244 reference parameters are recognized.  The modes require font-lock mode
1245 to be enabled.
1247 *** smerge-mode.el provides `smerge-mode', a simple minor-mode for files
1248 containing diff3-style conflict markers, such as generated by RCS.
1250 *** 5x5.el is a simple puzzle game.
1252 *** hl-line.el provides a minor mode to highlight the current line.
1254 *** ansi-color.el translates ANSI terminal escapes into text-properties.
1256 *** delphi.el provides a major mode for editing the Delphi (Object
1257 Pascal) language.
1259 *** quickurl.el provides a simple method of inserting a URL based on
1260 the text at point.
1262 *** sql.el provides an interface to SQL data bases.
1264 *** fortune.el uses the fortune program to create mail/news signatures.
1266 *** whitespace.el ???
1268 *** PostScript mode (ps-mode) is a new major mode for editing PostScript
1269 files. It offers: interaction with a PostScript interpreter, including
1270 (very basic) error handling; fontification, easily customizable for
1271 interpreter messages; auto-indentation; insertion of EPSF templates and
1272 often used code snippets; viewing of BoundingBox; commenting out /
1273 uncommenting regions; conversion of 8bit characters to PostScript octal
1274 codes. All functionality is accessible through a menu.
1276 *** delim-col helps to prettify columns in a text region or rectangle.
1278 Here is an example of columns:
1280 horse   apple   bus
1281 dog     pineapple       car     EXTRA
1282 porcupine       strawberry      airplane
1284 Doing the following settings:
1286    (setq delimit-columns-str-before "[ ")
1287    (setq delimit-columns-str-after " ]")
1288    (setq delimit-columns-str-separator ", ")
1289    (setq delimit-columns-separator "\t")
1292 Selecting the lines above and typing:
1294    M-x delimit-columns-region
1296 It results:
1298 [ horse    , apple     , bus     ,       ]
1299 [ dog      , pineapple , car     , EXTRA ]
1300 [ porcupine, strawberry, airplane,       ]
1302 delim-col has the following options:
1304    delimit-columns-str-before           Specify a string to be inserted
1305                                         before all columns.
1307    delimit-columns-str-separator        Specify a string to be inserted
1308                                         between each column.
1310    delimit-columns-str-after            Specify a string to be inserted
1311                                         after all columns.
1313    delimit-columns-separator            Specify a regexp which separates
1314                                         each column.
1316 delim-col has the following commands:
1318    delimit-columns-region       Prettify all columns in a text region.
1319    delimit-columns-rectangle    Prettify all columns in a text rectangle.
1321 *** The package recentf.el maintains a menu for visiting files that
1322 were operated on recently.
1324 M-x recentf-mode RET toggles recentf mode.
1326 M-x customize-variable RET recentf-mode RET can be used to enable
1327 recentf at Emacs startup.
1329 M-x customize-variable RET recentf-menu-filter RET to specify a menu
1330 filter function to change the menu appearance. For example, the recent
1331 file list can be displayed:
1333 - organized by major modes, directories or user defined rules.
1334 - sorted by file pathes, file names, ascending or descending.
1335 - showing pathes relative to the current default-directory
1337 The `recentf-filter-changer' menu filter function allows to
1338 dynamically change the menu appearance.
1340 *** elide-head.el provides a mechanism for eliding boilerplate header
1341 text.
1343 *** footnote.el provides `footnote-mode', a minor mode supporting use
1344 of footnotes.  It is intended for use with Message mode, but isn't
1345 specific to Message mode.
1347 *** diff-mode.el provides `diff-mode', a major mode for
1348 viewing/editing context diffs (patches).  It is selected for files
1349 with extension `.diff', `.diffs', `.patch' and `.rej'.
1351 *** EUDC, the Emacs Unified Directory Client, provides a common user
1352 interface to access directory servers using different directory
1353 protocols.  It has a separate manual.
1355 *** autoconf.el provides a major mode for editing configure.in files
1356 for Autoconf, selected automatically.
1358 *** windmove.el provides moving between windows.
1360 *** crm.el provides a facility to read multiple strings from the
1361 minibuffer with completion.
1363 *** todo-mode.el provides management of TODO lists and integration
1364 with the diary features.
1366 *** autoarg.el provides a feature reported from Twenex Emacs whereby
1367 numeric keys supply prefix args rather than self inserting.
1369 *** The function `turn-off-auto-fill' unconditionally turns off Auto
1370 Fill mode.
1372 ** Withdrawn packages
1374 *** mldrag.el has been removed.  mouse.el provides the same
1375 functionality with aliases for the mldrag functions.
1377 *** eval-reg.el has been obsoleted by changes to edebug.el and removed.
1379 *** ph.el has been obsoleted by EUDC and removed.
1382 * Lisp changes made after edition 2.6 of the Emacs Lisp Manual,
1383 (Display-related features are described in a page of their own below.)
1385 ** If `display-buffer-reuse-frames' is set, function `display-buffer'
1386 will raise frames displaying a buffer, instead of creating a new
1387 frame or window.
1389 ** Two new functions for removing elements from lists/sequences
1390 were added
1392 - Function: remove ELT SEQ
1394 Return a copy of SEQ with all occurences of ELT removed.  SEQ must be
1395 a list, vector, or string.  The comparison is done with `equal'.
1397 - Function: remq ELT LIST
1399 Return a copy of LIST with all occurences of ELT removed.  The
1400 comparison is done with `eq'.
1402 ** The function `delete' now also works with vectors and strings.
1404 ** The meaning of the `:weakness WEAK' argument of make-hash-table
1405 has been changed.
1407 ** Function `aset' stores any multibyte character in any string
1408 without signaling "Attempt to change char length of a string".  It may
1409 convert a unibyte string to multibyte if necessary.
1411 ** The value of the `help-echo' text property is called as a function
1412 or evaluated, if it is not a string already, to obtain a help string.
1414 ** Function `make-obsolete' now has an optional arg to say when the
1415 function was declared obsolete.
1417 ** Function `plist-member' is renamed from `widget-plist-member' (which is
1418 retained as an alias).
1420 ** Easy-menu's :filter now works as in XEmacs.
1421 It takes the unconverted (i.e. XEmacs) form of the menu and the result
1422 is automatically converted to Emacs' form.
1424 ** The new function `window-list' has been defined
1426 - Function: window-list &optional WINDOW MINIBUF ALL-FRAMES
1428 Return a list of windows in canonical order.  The parameters WINDOW,
1429 MINIBUF and ALL-FRAMES are defined like for `next-window'.
1431 ** There's a new function `some-window' defined as follows
1433 - Function: some-window PREDICATE &optional MINIBUF ALL-FRAMES DEFAULT
1435 Return a window satisfying PREDICATE.
1437 This function cycles through all visible windows using `walk-windows',
1438 calling PREDICATE on each one.  PREDICATE is called with a window as
1439 argument.  The first window for which PREDICATE returns a non-nil
1440 value is returned.  If no window satisfies PREDICATE, DEFAULT is
1441 returned.
1443 Optional second arg MINIBUF t means count the minibuffer window even
1444 if not active.  MINIBUF nil or omitted means count the minibuffer iff
1445 it is active.  MINIBUF neither t nor nil means not to count the
1446 minibuffer even if it is active.
1448 Several frames may share a single minibuffer; if the minibuffer
1449 counts, all windows on all frames that share that minibuffer count
1450 too.  Therefore, if you are using a separate minibuffer frame
1451 and the minibuffer is active and MINIBUF says it counts,
1452 `walk-windows' includes the windows in the frame from which you
1453 entered the minibuffer, as well as the minibuffer window.
1455 ALL-FRAMES is the optional third argument.
1456 ALL-FRAMES nil or omitted means cycle within the frames as specified above.
1457 ALL-FRAMES = `visible' means include windows on all visible frames.
1458 ALL-FRAMES = 0 means include windows on all visible and iconified frames.
1459 ALL-FRAMES = t means include windows on all frames including invisible frames.
1460 If ALL-FRAMES is a frame, it means include windows on that frame.
1461 Anything else means restrict to the selected frame.
1463 ** The function `single-key-description' now encloses function key and
1464 event names in angle brackets.  When called with a second optional
1465 argument non-nil, angle brackets won't be printed.
1467 ** If the variable `message-truncate-lines' is bound to t around a
1468 call to `message', the echo area will not be resized to display that
1469 message; it will be truncated instead, as it was done in 20.x.
1470 Default value is nil.
1472 ** The user option `line-number-display-limit' can now be set to nil,
1473 meaning no limit.
1475 ** `select-safe-coding-system' now also checks the most preferred
1476 coding-system if buffer-file-coding-system is `undecided' and
1477 DEFAULT-CODING-SYSTEM is not specified,
1479 ** The function `subr-arity' provides information on the argument list
1480 of a primitive.
1482 ** The text property `keymap' specifies a key map which overrides the
1483 buffer's local map and the map specified by the `local-map' property.
1484 This is probably what most current uses of `local-map' want, rather
1485 than replacing the local map.
1487 ** The obsolete variables before-change-function and
1488 after-change-function are no longer acted upon and have been removed.
1490 ** The function `apropos-mode' runs the hook `apropos-mode-hook'.
1492 ** `concat' no longer accepts individual integer arguments, as
1493 promised long ago.
1495 ** The new function `float-time' returns the current time as a float.
1497 * Lisp changes in Emacs 21.1 (see following page for display-related features)
1499 Note that +++ before an item means the Lisp manual has been updated.
1500 --- means that I have decided it does not need to be in the Lisp manual.
1501 When you add a new item, please add it without either +++ or ---
1502 so I will know I still need to look at it -- rms.
1504 *** The functions `find-charset-region' and `find-charset-string' include
1505 `eight-bit-control' and/or `eight-bit-graphic' in the returned list
1506 when it finds 8-bit characters.  Previously, it included `ascii' in a
1507 multibyte buffer and `unknown' in a unibyte buffer.
1509 *** The functions `set-buffer-modified', `string-as-multibyte' and
1510 `string-as-unibyte' change the byte sequence of a buffer if it
1511 contains a character from the `eight-bit-control' character set.
1513 *** The handling of multibyte sequences in a multibyte buffer is
1514 changed.  Previously, a byte sequence matching the pattern
1515 [\200-\237][\240-\377]+ was interpreted as a single character
1516 regardless of the length of the trailing bytes [\240-\377]+.  Thus, if
1517 the sequence was longer than what the leading byte indicated, the
1518 extra trailing bytes were ignored by Lisp functions.  Now such extra
1519 bytes are independent 8-bit characters belonging to the charset
1520 eight-bit-graphic.
1522 ** Fontsets are now implemented using char-tables.
1524 A fontset can now be specified for for each independent character, for
1525 a group of characters or for a character set rather than just for a
1526 character set as previously.
1528 *** The arguments of the function `set-fontset-font' are changed.
1529 They are NAME, CHARACTER, FONTNAME, and optional FRAME.  The function
1530 modifies fontset NAME to use FONTNAME for CHARACTER.
1532 CHARACTER may be a cons (FROM . TO), where FROM and TO are non-generic
1533 characters.  In that case FONTNAME is used for all characters in the
1534 range FROM and TO (inclusive).  CHARACTER may be a charset.  In that
1535 case FONTNAME is used for all character in the charset.
1537 FONTNAME may be a cons (FAMILY . REGISTRY), where FAMILY is the family
1538 name of a font and REGSITRY is a registry name of a font.
1540 *** Variable x-charset-registry has been deleted.  The default charset
1541 registries of character sets are set in the default fontset
1542 "fontset-default".
1544 *** The function `create-fontset-from-fontset-spec' ignores the second
1545 argument STYLE-VARIANT.  It never creates style-variant fontsets.
1547 ** The method of composing characters is changed.  Now character
1548 composition is done by a special text property `composition' in
1549 buffers and strings.
1551 *** Charset composition is deleted.  Emacs never creates a `composite
1552 character' which is an independent character with a unique character
1553 code.  Thus the following functions handling `composite characters'
1554 have been deleted: composite-char-component,
1555 composite-char-component-count, composite-char-composition-rule,
1556 composite-char-composition-rule and decompose-composite-char delete.
1557 The variables leading-code-composition and min-composite-char have
1558 also been deleted.
1560 *** Three more glyph reference points are added.  They can be used to
1561 specify a composition rule.  See the documentation of the variable
1562 `reference-point-alist' for more detail.
1564 *** The function `compose-region' takes new arguments COMPONENTS and
1565 MODIFICATION-FUNC.  With COMPONENTS, you can specify not only a
1566 composition rule but also characters to be composed.  Such characters
1567 may differ between buffer and string text.
1569 *** The function `compose-string' takes new arguments START, END,
1570 COMPONENTS, and MODIFICATION-FUNC.
1572 *** The function `compose-string' puts text property `composition'
1573 directly on the argument STRING instead of returning a new string.
1574 Likewise, the function `decompose-string' just removes text property
1575 `composition' from STRING.
1577 *** The new function `find-composition' returns information about
1578 a composition at a specified position in a buffer or a string.
1580 *** The function `decompose-composite-char' is now labeled as
1581 obsolete.
1583 ** The new character set `mule-unicode-0100-24ff' is introduced for
1584 Unicode characters of the range U+0100..U+24FF.  Currently, this
1585 character set is not used.
1587 ** The new character sets `japanese-jisx0213-1' and
1588 `japanese-jisx0213-2' are introduced for the new Japanese standard JIS
1589 X 0213 Plane 1 and Plane 2.
1592 ** The new character sets `eight-bit-control' and `eight-bit-graphic'
1593 are introduced for 8-bit characters in the ranges 0x80..0x9F and
1594 0xA0..0xFF respectively.
1597 ** If the APPEND argument of `write-region' is an integer, it seeks to
1598 that offset in the file before writing.
1600 ** The function `add-minor-mode' has been added for convenience and
1601 compatibility with XEmacs (and is used internally by define-minor-mode).
1603 ** The function `shell-command' now sets the default directory of the
1604 `*Shell Command Output*' buffer to the default directory of the buffer
1605 from which the command was issued.
1607 ** The functions `query-replace', `query-replace-regexp',
1608 `query-replace-regexp-eval' `map-query-replace-regexp',
1609 `replace-string', `replace-regexp', and `perform-replace' take two
1610 additional optional arguments START and END that specify the region to
1611 operate on.
1613 ** The new function `count-screen-lines' is a more flexible alternative
1614 to `window-buffer-height'.
1616 - Function: count-screen-lines &optional BEG END COUNT-FINAL-NEWLINE WINDOW
1618 Return the number of screen lines in the region between BEG and END.
1619 The number of screen lines may be different from the number of actual
1620 lines, due to line breaking, display table, etc.
1622 Optional arguments BEG and END default to `point-min' and `point-max'
1623 respectively.
1625 If region ends with a newline, ignore it unless optinal third argument
1626 COUNT-FINAL-NEWLINE is non-nil.
1628 The optional fourth argument WINDOW specifies the window used for
1629 obtaining parameters such as width, horizontal scrolling, and so
1630 on. The default is to use the selected window's parameters.
1632 Like `vertical-motion', `count-screen-lines' always uses the current
1633 buffer, regardless of which buffer is displayed in WINDOW. This makes
1634 possible to use `count-screen-lines' in any buffer, whether or not it
1635 is currently displayed in some window.
1637 ** The new function `mapc' is like `mapcar' but doesn't collect the
1638 argument function's results.
1640 ** The functions base64-decode-region and base64-decode-string now
1641 signal an error instead of returning nil if decoding fails.
1643 ** The function sendmail-user-agent-compose now recognizes a `body'
1644 header is the list of headers passed to it.
1646 ** The new function member-ignore-case works like `member', but
1647 ignores differences in case and text representation.
1649 ** The buffer-local variable cursor-type can be used to specify the
1650 cursor to use in windows displaying a buffer.  Values are interpreted
1651 as follows:
1653   t             use the cursor specified for the frame (default)
1654   nil           don't display a cursor
1655   `bar'         display a bar cursor with default width
1656   (bar . WIDTH) display a bar cursor with width WIDTH
1657   others        display a box cursor.
1659 ** The variable open-paren-in-column-0-is-defun-start controls whether
1660 an open parenthesis in column 0 is considered to be the start of a
1661 defun.  If set, the default, it is considered a defun start.  If not
1662 set, an open parenthesis in column 0 has no special meaning.
1664 ** The new function `string-to-syntax' can be used to translate syntax
1665 specifications in string form as accepted by `modify-syntax-entry' to
1666 the cons-cell form that is used for the values of the `syntax-table'
1667 text property, and in `font-lock-syntactic-keywords'.
1669 Example:
1671   (string-to-syntax "()")
1672     => (4 . 41)
1674 ** Emacs' reader supports CL read syntax for integers in bases
1675 other than 10.
1677 *** `#BINTEGER' or `#bINTEGER' reads INTEGER in binary (radix 2).
1678 INTEGER optionally contains a sign.
1680   #b1111
1681     => 15
1682   #b-1111
1683     => -15
1685 *** `#OINTEGER' or `#oINTEGER' reads INTEGER in octal (radix 8).
1687   #o666
1688     => 438
1690 *** `#XINTEGER' or `#xINTEGER' reads INTEGER in hexadecimal (radix 16).
1692   #xbeef
1693     => 48815
1695 *** `#RADIXrINTEGER' reads INTEGER in radix RADIX, 2 <= RADIX <= 36.
1697   #2R-111
1698     => -7
1699   #25rah
1700     => 267
1702 ** The function `documentation-property' now evaluates the value of
1703 the given property to obtain a string if it doesn't refer to etc/DOC
1704 and isn't a string.
1706 ** If called for a symbol, the function `documentation' now looks for
1707 a `function-documentation' property of that symbol.  If it has a non-nil
1708 value, the documentation is taken from that value.  If the value is
1709 not a string, it is evaluated to obtain a string.
1712 ** The last argument of `define-key-after' defaults to t for convenience.
1714 ** The new function `replace-regexp-in-string' replaces all matches
1715 for a regexp in a string.
1717 ** `mouse-position' now runs the abnormal hook
1718 `mouse-position-function'.
1720 ** The function string-to-number now returns a float for numbers
1721 that don't fit into a Lisp integer.
1723 ** The variable keyword-symbols-constants-flag has been removed.
1724 Keywords are now always considered constants.
1727 ** The new function `delete-and-extract-region' deletes text and
1728 returns it.
1730 ** The function `clear-this-command-keys' now also clears the vector
1731 returned by function `recent-keys'.
1734 ** Variables `beginning-of-defun-function' and `end-of-defun-function'
1735 can be used to define handlers for the functions that find defuns.
1736 Major modes can define these locally instead of rebinding M-C-a
1737 etc. if the normal conventions for defuns are not appropriate for the
1738 mode.
1741 ** easy-mmode-define-minor-mode now takes an additional BODY argument
1742 and is renamed `define-minor-mode'.
1745 ** If an abbrev has a hook function which is a symbol, and that symbol
1746 has a non-nil `no-self-insert' property, the return value of the hook
1747 function specifies whether an expansion has been done or not.  If it
1748 returns nil, abbrev-expand also returns nil, meaning "no expansion has
1749 been performed."
1751 When abbrev expansion is done by typing a self-inserting character,
1752 and the abbrev has a hook with the `no-self-insert' property, and the
1753 hook function returns non-nil meaning expansion has been done,
1754 then the self-inserting character is not inserted.
1757 ** The function `intern-soft' now accepts a symbol as first argument.
1758 In this case, that exact symbol is looked up in the specified obarray,
1759 and the function's value is nil if it is not found.
1762 ** The new macro `with-syntax-table' can be used to evaluate forms
1763 with the syntax table of the current buffer temporarily set to a
1764 specified table.
1766   (with-syntax-table TABLE &rest BODY)
1768 Evaluate BODY with syntax table of current buffer set to a copy of
1769 TABLE.  The current syntax table is saved, BODY is evaluated, and the
1770 saved table is restored, even in case of an abnormal exit.  Value is
1771 what BODY returns.
1774 ** Regular expressions now support intervals \{n,m\} as well as
1775 Perl's shy-groups \(?:...\) and non-greedy *? +? and ?? operators.
1778 ** The optional argument BUFFER of function file-local-copy has been
1779 removed since it wasn't used by anything.
1782 ** The file name argument of function `file-locked-p' is now required
1783 instead of being optional.
1786 ** The new built-in error `text-read-only' is signaled when trying to
1787 modify read-only text.
1790 ** New functions and variables for locales.
1792 The new variable `locale-coding-system' specifies how to encode and
1793 decode strings passed to low-level message functions like strerror and
1794 time functions like strftime.  The new variables
1795 `system-messages-locale' and `system-time-locale' give the system
1796 locales to be used when invoking these two types of functions.
1798 The new function `set-locale-environment' sets the language
1799 environment, preferred coding system, and locale coding system from
1800 the system locale as specified by the LC_ALL, LC_CTYPE, and LANG
1801 environment variables.  Normally, it is invoked during startup and need
1802 not be invoked thereafter.  It uses the new variables
1803 `locale-language-names', `locale-charset-language-names', and
1804 `locale-preferred-coding-systems' to make its decisions.
1807 ** syntax tables now understand nested comments.
1808 To declare a comment syntax as allowing nesting, just add an `n'
1809 modifier to either of the characters of the comment end and the comment
1810 start sequences.
1813 ** The function `pixmap-spec-p' has been renamed `bitmap-spec-p'
1814 because `bitmap' is more in line with the usual X terminology.
1817 ** New function `propertize'
1819 The new function `propertize' can be used to conveniently construct
1820 strings with text properties.
1822 - Function: propertize STRING &rest PROPERTIES
1824 Value is a copy of STRING with text properties assigned as specified
1825 by PROPERTIES.  PROPERTIES is a sequence of pairs PROPERTY VALUE, with
1826 PROPERTY being the name of a text property and VALUE being the
1827 specified value of that property.  Example:
1829   (propertize "foo" 'face 'bold 'read-only t)
1832 ** push and pop macros.
1834 Simple versions of the push and pop macros of Common Lisp
1835 are now defined in Emacs Lisp.  These macros allow only symbols
1836 as the place that holds the list to be changed.
1838 (push NEWELT LISTNAME)  add NEWELT to the front of LISTNAME's value.
1839 (pop LISTNAME)          return first elt of LISTNAME, and remove it
1840                         (thus altering the value of LISTNAME).
1842 ** New dolist and dotimes macros.
1844 Simple versions of the dolist and dotimes macros of Common Lisp
1845 are now defined in Emacs Lisp.
1847 (dolist (VAR LIST [RESULT]) BODY...)
1848       Execute body once for each element of LIST,
1849       using the variable VAR to hold the current element.
1850       Then return the value of RESULT, or nil if RESULT is omitted.
1852 (dotimes (VAR COUNT [RESULT]) BODY...)
1853       Execute BODY with VAR bound to successive integers running from 0,
1854       inclusive, to COUNT, exclusive.
1855       Then return the value of RESULT, or nil if RESULT is omitted.
1858 ** Regular expressions now support Posix character classes such
1859 as [:alpha:], [:space:] and so on.
1861 [:digit:]  matches 0 through 9
1862 [:cntrl:]  matches ASCII control characters
1863 [:xdigit:]  matches 0 through 9, a through f and A through F.
1864 [:blank:]  matches space and tab only
1865 [:graph:]  matches graphic characters--everything except ASCII control chars,
1866            space, and DEL.
1867 [:print:]  matches printing characters--everything except ASCII control chars
1868            and DEL.
1869 [:alnum:]  matches letters and digits.
1870            (But at present, for multibyte characters,
1871             it matches anything that has word syntax.)
1872 [:alpha:]  matches letters.
1873            (But at present, for multibyte characters,
1874             it matches anything that has word syntax.)
1875 [:ascii:]  matches ASCII (unibyte) characters.
1876 [:nonascii:]  matches non-ASCII (multibyte) characters.
1877 [:lower:]  matches anything lower-case.
1878 [:punct:]  matches punctuation.
1879            (But at present, for multibyte characters,
1880             it matches anything that has non-word syntax.)
1881 [:space:]  matches anything that has whitespace syntax.
1882 [:upper:]  matches anything upper-case.
1883 [:word:]   matches anything that has word syntax.
1886 ** Emacs now has built-in hash tables.
1888 The following functions are defined for hash tables:
1890 - Function: make-hash-table ARGS
1892 The argument list ARGS consists of keyword/argument pairs.  All arguments
1893 are optional.  The following arguments are defined:
1895 :test TEST
1897 TEST must be a symbol specifying how to compare keys.  Default is `eql'.
1898 Predefined are `eq', `eql' and `equal'.  If TEST is not predefined,
1899 it must have been defined with `define-hash-table-test'.
1901 :size SIZE
1903 SIZE must be an integer > 0 giving a hint to the implementation how
1904 many elements will be put in the hash table.  Default size is 65.
1906 :rehash-size REHASH-SIZE
1908 REHASH-SIZE specifies by how much to grow a hash table once it becomes
1909 full.  If REHASH-SIZE is an integer, add that to the hash table's old
1910 size to get the new size.  Otherwise, REHASH-SIZE must be a float >
1911 1.0, and the new size is computed by multiplying REHASH-SIZE with the
1912 old size.  Default rehash size is 1.5.
1914 :rehash-threshold THRESHOLD
1916 THRESHOLD must be a float > 0 and <= 1.0 specifying when to resize the
1917 hash table.  It is resized when the ratio of (number of entries) /
1918 (size of hash table) is >= THRESHOLD.  Default threshold is 0.8.
1920 :weakness WEAK
1922 WEAK must be either nil, one of the symbols `key, `value',
1923 `key-or-value', `key-and-value', or t, meaning the same as
1924 `key-and-value'.  Entries are removed from weak tables during garbage
1925 collection if their key and/or value are not referenced elsewhere
1926 outside of the hash table.  Default are non-weak hash tables.
1928 - Function: makehash &optional TEST
1930 Similar to make-hash-table, but only TEST can be specified.
1932 - Function: hash-table-p TABLE
1934 Returns non-nil if TABLE is a hash table object.
1936 - Function: copy-hash-table TABLE
1938 Returns a copy of TABLE.  Only the table itself is copied, keys and
1939 values are shared.
1941 - Function: hash-table-count TABLE
1943 Returns the number of entries in TABLE.
1945 - Function: hash-table-rehash-size TABLE
1947 Returns the rehash size of TABLE.
1949 - Function: hash-table-rehash-threshold TABLE
1951 Returns the rehash threshold of TABLE.
1953 - Function: hash-table-rehash-size TABLE
1955 Returns the size of TABLE.
1957 - Function: hash-table-test TABLE
1959 Returns the test TABLE uses to compare keys.
1961 - Function: hash-table-weakness TABLE
1963 Returns the weakness specified for TABLE.
1965 - Function: clrhash TABLE
1967 Clear TABLE.
1969 - Function: gethash KEY TABLE &optional DEFAULT
1971 Look up KEY in TABLE and return its associated VALUE or DEFAULT if
1972 not found.
1974 - Function: puthash KEY VALUE TABLE
1976 Associate KEY with VALUE in TABLE.  If KEY is already associated with
1977 another value, replace the old value with VALUE.
1979 - Function: remhash KEY TABLE
1981 Remove KEY from TABLE if it is there.
1983 - Function: maphash FUNCTION TABLE
1985 Call FUNCTION for all elements in TABLE.  FUNCTION must take two
1986 arguments KEY and VALUE.
1988 - Function: sxhash OBJ
1990 Return a hash code for Lisp object OBJ.
1992 - Function: define-hash-table-test NAME TEST-FN HASH-FN
1994 Define a new hash table test named NAME.  If NAME is specified as
1995 a test in `make-hash-table', the table created will use TEST-FN for
1996 comparing keys, and HASH-FN to compute hash codes for keys.  Test
1997 and hash function are stored as symbol property `hash-table-test'
1998 of NAME with a value of (TEST-FN HASH-FN).
2000 TEST-FN must take two arguments and return non-nil if they are the same.
2002 HASH-FN must take one argument and return an integer that is the hash
2003 code of the argument.  The function should use the whole range of
2004 integer values for hash code computation, including negative integers.
2006 Example: The following creates a hash table whose keys are supposed to
2007 be strings that are compared case-insensitively.
2009   (defun case-fold-string= (a b)
2010     (compare-strings a nil nil b nil nil t))
2012   (defun case-fold-string-hash (a)
2013     (sxhash (upcase a)))
2015   (define-hash-table-test 'case-fold 'case-fold-string=
2016                           'case-fold-string-hash))
2018   (make-hash-table :test 'case-fold)
2021 ** The Lisp reader handles circular structure.
2023 It now works to use the #N= and #N# constructs to represent
2024 circular structures.  For example, #1=(a . #1#) represents
2025 a cons cell which is its own cdr.
2028 ** The Lisp printer handles circular structure.
2030 If you bind print-circle to a non-nil value, the Lisp printer outputs
2031 #N= and #N# constructs to represent circular and shared structure.
2034 ** If the second argument to `move-to-column' is anything but nil or
2035 t, that means replace a tab with spaces if necessary to reach the
2036 specified column, but do not add spaces at the end of the line if it
2037 is too short to reach that column.
2040 ** perform-replace has a new feature:  the REPLACEMENTS argument may
2041 now be a cons cell (FUNCTION . DATA).  This means to call FUNCTION
2042 after each match to get the replacement text.  FUNCTION is called with
2043 two arguments: DATA, and the number of replacements already made.
2045 If the FROM-STRING contains any upper-case letters,
2046 perform-replace also turns off `case-fold-search' temporarily
2047 and inserts the replacement text without altering case in it.
2050 ** The function buffer-size now accepts an optional argument
2051 to specify which buffer to return the size of.
2054 ** The calendar motion commands now run the normal hook
2055 calendar-move-hook after moving point.
2058 ** The new variable small-temporary-file-directory specifies a
2059 directory to use for creating temporary files that are likely to be
2060 small.  (Certain Emacs features use this directory.)  If
2061 small-temporary-file-directory is nil, they use
2062 temporary-file-directory instead.
2065 ** The variable `inhibit-modification-hooks', if non-nil, inhibits all
2066 the hooks that track changes in the buffer.  This affects
2067 `before-change-functions' and `after-change-functions', as well as
2068 hooks attached to text properties and overlay properties.
2071 ** assoc-delete-all is a new function that deletes all the
2072 elements of an alist which have a particular value as the car.
2075 ** make-temp-file provides a more reliable way to create a temporary file.
2077 make-temp-file is used like make-temp-name, except that it actually
2078 creates the file before it returns.  This prevents a timing error,
2079 ensuring that no other job can use the same name for a temporary file.
2082 ** New exclusive-open feature in `write-region'
2084 The optional seventh arg is now called MUSTBENEW.  If non-nil, it insists
2085 on a check for an existing file with the same name.  If MUSTBENEW
2086 is `excl', that means to get an error if the file already exists;
2087 never overwrite. If MUSTBENEW is neither nil nor `excl', that means
2088 ask for confirmation before overwriting, but do go ahead and
2089 overwrite the file if the user gives confirmation.
2091 If the MUSTBENEW argument in `write-region' is `excl',
2092 that means to use a special feature in the `open' system call
2093 to get an error if the file exists at that time.
2094 The error reported is `file-already-exists'.
2097 ** Function `format' now handles text properties.
2099 Text properties of the format string are applied to the result string.
2100 If the result string is longer than the format string, text properties
2101 ending at the end of the format string are extended to the end of the
2102 result string.
2104 Text properties from string arguments are applied to the result
2105 string where arguments appear in the result string.
2107 Example:
2109   (let ((s1 "hello, %s")
2110         (s2 "world"))
2111      (put-text-property 0 (length s1) 'face 'bold s1)
2112      (put-text-property 0 (length s2) 'face 'italic s2)
2113      (format s1 s2))
2115 results in a bold-face string with an italic `world' at the end.
2118 ** Messages can now be displayed with text properties.
2120 Text properties are handled as described above for function `format'.
2121 The following example displays a bold-face message with an italic
2122 argument in it.
2124   (let ((msg "hello, %s!")
2125         (arg "world"))
2126      (put-text-property 0 (length msg) 'face 'bold msg)
2127      (put-text-property 0 (length arg) 'face 'italic arg)
2128      (message msg arg))
2131 ** Sound support
2133 Emacs supports playing sound files on GNU/Linux and the free BSDs
2134 (Voxware driver and native BSD driver, aka as Luigi's driver).
2136 Currently supported file formats are RIFF-WAVE (*.wav) and Sun Audio
2137 (*.au).  You must configure Emacs with the option `--with-sound=yes'
2138 to enable sound support.
2140 Sound files can be played by calling (play-sound SOUND).  SOUND is a
2141 list of the form `(sound PROPERTY...)'.  The function is only defined
2142 when sound support is present for the system on which Emacs runs.  The
2143 functions runs `play-sound-functions' with one argument which is the
2144 sound to play, before playing the sound.
2146 The following sound properties are supported:
2148 - `:file FILE'
2150 FILE is a file name.  If FILE isn't an absolute name, it will be
2151 searched relative to `data-directory'.
2153 - `:data DATA'
2155 DATA is a string containing sound data.  Either :file or :data
2156 may be present, but not both.
2158 - `:volume VOLUME'
2160 VOLUME must be an integer in the range 0..100 or a float in the range
2161 0..1.  This property is optional.
2163 Other properties are ignored.
2165 ** `multimedia' is a new Finder keyword and Custom group.
2167 ** keywordp is a new predicate to test efficiently for an object being
2168 a keyword symbol.
2170 ** Changes to garbage collection
2172 *** The function garbage-collect now additionally returns the number
2173 of live and free strings.
2175 *** There is a new variable `strings-consed' holding the number of
2176 strings that have been consed so far.
2179 * Lisp-level Display features added after release 2.6 of the Emacs
2180 Lisp Manual
2183 ** Help strings in menu items are now used to provide `help-echo' text.
2185 ** The function `image-size' can be used to determine the size of an
2186 image.
2188 - Function: image-size SPEC &optional PIXELS FRAME
2190 Return the size of an image as a pair (WIDTH . HEIGHT).
2192 SPEC is an image specification.  PIXELS non-nil means return sizes
2193 measured in pixels, otherwise return sizes measured in canonical
2194 character units (fractions of the width/height of the frame's default
2195 font).  FRAME is the frame on which the image will be displayed.
2196 FRAME nil or omitted means use the selected frame.
2198 ** The function `find-image' can be used to find a usable image
2199 satisfying one of a list of specifications.
2202 ** The STRING argument of `put-image' and `insert-image' is now
2203 optional.
2205 ** Image specifications may contain the property `:ascent center'.
2207 When this property is specified, the image is vertically centered
2208 around a centerline which would be the vertical center of text drawn
2209 at the position of the image, in the manner specified by the text
2210 properties and overlays that apply to the image.
2213 * New Lisp-level Display features in Emacs 21.1
2215 Note that +++ before an item means the Lisp manual has been updated.
2216 --- means that I have decided it does not need to be in the Lisp manual.
2217 When you add a new item, please add it without either +++ or ---
2218 so I will know I still need to look at it -- rms.
2220 ** The function tty-suppress-bold-inverse-default-colors can be used
2221 to make Emacs avoid displaying text with bold black foreground on TTYs.
2223 Some terminals, notably PC consoles, emulate bold text by displaying
2224 text in brighter colors.  On such a console, a bold black foreground
2225 is displayed in a gray color.  If this turns out to be hard to read on
2226 your monitor---the problem occurred with the mode line on
2227 laptops---you can instruct Emacs to ignore the text's boldness, and to
2228 just display it black instead.
2230 This situation can't be detected automatically.  You will have to put
2231 a line like
2233   (tty-suppress-bold-inverse-default-colors t)
2235 in your `.emacs'.
2237 ** New face implementation.
2239 Emacs faces have been reimplemented from scratch.  They don't use XLFD
2240 font names anymore and face merging now works as expected.
2243 *** New faces.
2245 Each face can specify the following display attributes:
2247    1. Font family or fontset alias name.
2249    2. Relative proportionate width, aka character set width or set
2250    width (swidth), e.g. `semi-compressed'.
2252    3. Font height in 1/10pt
2254    4. Font weight, e.g. `bold'.
2256    5. Font slant, e.g. `italic'.
2258    6. Foreground color.
2260    7. Background color.
2262    8. Whether or not characters should be underlined, and in what color.
2264    9. Whether or not characters should be displayed in inverse video.
2266    10. A background stipple, a bitmap.
2268    11. Whether or not characters should be overlined, and in what color.
2270    12. Whether or not characters should be strike-through, and in what
2271    color.
2273    13. Whether or not a box should be drawn around characters, its
2274    color, the width of the box lines, and 3D appearance.
2276 Faces are frame-local by nature because Emacs allows to define the
2277 same named face (face names are symbols) differently for different
2278 frames.  Each frame has an alist of face definitions for all named
2279 faces.  The value of a named face in such an alist is a Lisp vector
2280 with the symbol `face' in slot 0, and a slot for each each of the face
2281 attributes mentioned above.
2283 There is also a global face alist `face-new-frame-defaults'.  Face
2284 definitions from this list are used to initialize faces of newly
2285 created frames.
2287 A face doesn't have to specify all attributes.  Those not specified
2288 have a nil value.  Faces specifying all attributes are called
2289 `fully-specified'.
2292 *** Face merging.
2294 The display style of a given character in the text is determined by
2295 combining several faces.  This process is called `face merging'.  Any
2296 aspect of the display style that isn't specified by overlays or text
2297 properties is taken from the `default' face.  Since it is made sure
2298 that the default face is always fully-specified, face merging always
2299 results in a fully-specified face.
2302 *** Face realization.
2304 After all face attributes for a character have been determined by
2305 merging faces of that character, that face is `realized'.  The
2306 realization process maps face attributes to what is physically
2307 available on the system where Emacs runs.  The result is a `realized
2308 face' in form of an internal structure which is stored in the face
2309 cache of the frame on which it was realized.
2311 Face realization is done in the context of the charset of the
2312 character to display because different fonts and encodings are used
2313 for different charsets.  In other words, for characters of different
2314 charsets, different realized faces are needed to display them.
2316 Except for composite characters, faces are always realized for a
2317 specific character set and contain a specific font, even if the face
2318 being realized specifies a fontset.  The reason is that the result of
2319 the new font selection stage is better than what can be done with
2320 statically defined font name patterns in fontsets.
2322 In unibyte text, Emacs' charsets aren't applicable; function
2323 `char-charset' reports ASCII for all characters, including those >
2324 0x7f.  The X registry and encoding of fonts to use is determined from
2325 the variable `face-default-registry' in this case.  The variable is
2326 initialized at Emacs startup time from the font the user specified for
2327 Emacs.
2329 Currently all unibyte text, i.e. all buffers with
2330 `enable-multibyte-characters' nil are displayed with fonts of the same
2331 registry and encoding `face-default-registry'.  This is consistent
2332 with the fact that languages can also be set globally, only.
2334 ++++
2335 **** Clearing face caches.
2337 The Lisp function `clear-face-cache' can be called to clear face caches
2338 on all frames.  If called with a non-nil argument, it will also unload
2339 unused fonts.
2342 *** Font selection.
2344 Font selection tries to find the best available matching font for a
2345 given (charset, face) combination.  This is done slightly differently
2346 for faces specifying a fontset, or a font family name.
2348 If the face specifies a fontset name, that fontset determines a
2349 pattern for fonts of the given charset.  If the face specifies a font
2350 family, a font pattern is constructed.  Charset symbols have a
2351 property `x-charset-registry' for that purpose that maps a charset to
2352 an XLFD registry and encoding in the font pattern constructed.
2354 Available fonts on the system on which Emacs runs are then matched
2355 against the font pattern.  The result of font selection is the best
2356 match for the given face attributes in this font list.
2358 Font selection can be influenced by the user.
2360 The user can specify the relative importance he gives the face
2361 attributes width, height, weight, and slant by setting
2362 face-font-selection-order (faces.el) to a list of face attribute
2363 names.  The default is (:width :height :weight :slant), and means
2364 that font selection first tries to find a good match for the font
2365 width specified by a face, then---within fonts with that width---tries
2366 to find a best match for the specified font height, etc.
2368 Setting `face-alternative-font-family-alist' allows the user to
2369 specify alternative font families to try if a family specified by a
2370 face doesn't exist.
2373 **** Scalable fonts
2375 Emacs can make use of scalable fonts but doesn't do so by default,
2376 since the use of too many or too big scalable fonts may crash XFree86
2377 servers.
2379 To enable scalable font use, set the variable
2380 `scalable-fonts-allowed'.  A value of nil, the default, means never use
2381 scalable fonts.  A value of t means any scalable font may be used.
2382 Otherwise, the value must be a list of regular expressions.  A
2383 scalable font may then be used if it matches a regular expression from
2384 that list.  Example:
2386   (setq scalable-fonts-allowed '("muleindian-2$"))
2388 allows the use of scalable fonts with registry `muleindian-2'.
2391 *** Functions and variables related to font selection.
2393 - Function: x-family-fonts &optional FAMILY FRAME
2395 Return a list of available fonts of family FAMILY on FRAME.  If FAMILY
2396 is omitted or nil, list all families.  Otherwise, FAMILY must be a
2397 string, possibly containing wildcards `?' and `*'.
2399 If FRAME is omitted or nil, use the selected frame.  Each element of
2400 the result is a vector [FAMILY WIDTH POINT-SIZE WEIGHT SLANT FIXED-P
2401 FULL REGISTRY-AND-ENCODING].  FAMILY is the font family name.
2402 POINT-SIZE is the size of the font in 1/10 pt.  WIDTH, WEIGHT, and
2403 SLANT are symbols describing the width, weight and slant of the font.
2404 These symbols are the same as for face attributes.  FIXED-P is non-nil
2405 if the font is fixed-pitch.  FULL is the full name of the font, and
2406 REGISTRY-AND-ENCODING is a string giving the registry and encoding of
2407 the font.  The result list is sorted according to the current setting
2408 of the face font sort order.
2410 - Function: x-font-family-list
2412 Return a list of available font families on FRAME.  If FRAME is
2413 omitted or nil, use the selected frame.  Value is a list of conses
2414 (FAMILY . FIXED-P) where FAMILY is a font family, and FIXED-P is
2415 non-nil if fonts of that family are fixed-pitch.
2417 - Variable: font-list-limit
2419 Limit for font matching.  If an integer > 0, font matching functions
2420 won't load more than that number of fonts when searching for a
2421 matching font.  The default is currently 100.
2424 *** Setting face attributes.
2426 For the most part, the new face implementation is interface-compatible
2427 with the old one.  Old face attribute related functions are now
2428 implemented in terms of the new functions `set-face-attribute' and
2429 `face-attribute'.
2431 Face attributes are identified by their names which are keyword
2432 symbols.  All attributes can be set to `unspecified'.
2434 The following attributes are recognized:
2436 `:family'
2438 VALUE must be a string specifying the font family, e.g. ``courier'',
2439 or a fontset alias name.  If a font family is specified, wild-cards `*'
2440 and `?' are allowed.
2442 `:width'
2444 VALUE specifies the relative proportionate width of the font to use.
2445 It must be one of the symbols `ultra-condensed', `extra-condensed',
2446 `condensed', `semi-condensed', `normal', `semi-expanded', `expanded',
2447 `extra-expanded', or `ultra-expanded'.
2449 `:height'
2451 VALUE must be an integer specifying the height of the font to use in
2452 1/10 pt.
2454 `:weight'
2456 VALUE specifies the weight of the font to use.  It must be one of the
2457 symbols `ultra-bold', `extra-bold', `bold', `semi-bold', `normal',
2458 `semi-light', `light', `extra-light', `ultra-light'.
2460 `:slant'
2462 VALUE specifies the slant of the font to use.  It must be one of the
2463 symbols `italic', `oblique', `normal', `reverse-italic', or
2464 `reverse-oblique'.
2466 `:foreground', `:background'
2468 VALUE must be a color name, a string.
2470 `:underline'
2472 VALUE specifies whether characters in FACE should be underlined.  If
2473 VALUE is t, underline with foreground color of the face.  If VALUE is
2474 a string, underline with that color.  If VALUE is nil, explicitly
2475 don't underline.
2477 `:overline'
2479 VALUE specifies whether characters in FACE should be overlined.  If
2480 VALUE is t, overline with foreground color of the face.  If VALUE is a
2481 string, overline with that color.  If VALUE is nil, explicitly don't
2482 overline.
2484 `:strike-through'
2486 VALUE specifies whether characters in FACE should be drawn with a line
2487 striking through them.  If VALUE is t, use the foreground color of the
2488 face.  If VALUE is a string, strike-through with that color.  If VALUE
2489 is nil, explicitly don't strike through.
2491 `:box'
2493 VALUE specifies whether characters in FACE should have a box drawn
2494 around them.  If VALUE is nil, explicitly don't draw boxes.  If
2495 VALUE is t, draw a box with lines of width 1 in the foreground color
2496 of the face.  If VALUE is a string, the string must be a color name,
2497 and the box is drawn in that color with a line width of 1.  Otherwise,
2498 VALUE must be a property list of the form `(:line-width WIDTH
2499 :color COLOR :style STYLE)'.  If a keyword/value pair is missing from
2500 the property list, a default value will be used for the value, as
2501 specified below.  WIDTH specifies the width of the lines to draw; it
2502 defaults to 1.  COLOR is the name of the color to draw in, default is
2503 the foreground color of the face for simple boxes, and the background
2504 color of the face for 3D boxes.  STYLE specifies whether a 3D box
2505 should be draw.  If STYLE is `released-button', draw a box looking
2506 like a released 3D button.  If STYLE is `pressed-button' draw a box
2507 that appears like a pressed button.  If STYLE is nil, the default if
2508 the property list doesn't contain a style specification, draw a 2D
2509 box.
2511 `:inverse-video'
2513 VALUE specifies whether characters in FACE should be displayed in
2514 inverse video. VALUE must be one of t or nil.
2516 `:stipple'
2518 If VALUE is a string, it must be the name of a file of pixmap data.
2519 The directories listed in the `x-bitmap-file-path' variable are
2520 searched.  Alternatively, VALUE may be a list of the form (WIDTH
2521 HEIGHT DATA) where WIDTH and HEIGHT are the size in pixels, and DATA
2522 is a string containing the raw bits of the bitmap.  VALUE nil means
2523 explicitly don't use a stipple pattern.
2525 For convenience, attributes `:family', `:width', `:height', `:weight',
2526 and `:slant' may also be set in one step from an X font name:
2528 `:font'
2530 Set font-related face attributes from VALUE.  VALUE must be a valid
2531 XLFD font name.  If it is a font name pattern, the first matching font
2532 is used--this is for compatibility with the behavior of previous
2533 versions of Emacs.
2535 For compatibility with Emacs 20, keywords `:bold' and `:italic' can
2536 be used to specify that a bold or italic font should be used.  VALUE
2537 must be t or nil in that case.  A value of `unspecified' is not allowed."
2539 Please see also the documentation of `set-face-attribute' and
2540 `defface'.
2542 *** Face attributes and X resources
2544 The following X resource names can be used to set face attributes
2545 from X resources:
2547   Face attribute        X resource              class
2548 -----------------------------------------------------------------------
2549   :family               attributeFamily .       Face.AttributeFamily
2550   :width                attributeWidth          Face.AttributeWidth
2551   :height               attributeHeight         Face.AttributeHeight
2552   :weight               attributeWeight         Face.AttributeWeight
2553   :slant                attributeSlant          Face.AttributeSlant
2554    foreground           attributeForeground     Face.AttributeForeground
2555   :background           attributeBackground .   Face.AttributeBackground
2556   :overline             attributeOverline       Face.AttributeOverline
2557   :strike-through       attributeStrikeThrough  Face.AttributeStrikeThrough
2558   :box                  attributeBox            Face.AttributeBox
2559   :underline            attributeUnderline      Face.AttributeUnderline
2560   :inverse-video        attributeInverse        Face.AttributeInverse
2561   :stipple              attributeStipple        Face.AttributeStipple
2562         or              attributeBackgroundPixmap
2563                                                 Face.AttributeBackgroundPixmap
2564   :font                 attributeFont           Face.AttributeFont
2565   :bold                 attributeBold           Face.AttributeBold
2566   :italic               attributeItalic .       Face.AttributeItalic
2567   :font                 attributeFont           Face.AttributeFont
2570 *** Text property `face'.
2572 The value of the `face' text property can now be a single face
2573 specification or a list of such specifications.  Each face
2574 specification can be
2576 1. A symbol or string naming a Lisp face.
2578 2. A property list of the form (KEYWORD VALUE ...) where each
2579    KEYWORD is a face attribute name, and VALUE is an appropriate value
2580    for that attribute.  Please see the doc string of `set-face-attribute'
2581    for face attribute names.
2583 3. Conses of the form (FOREGROUND-COLOR . COLOR) or
2584    (BACKGROUND-COLOR . COLOR) where COLOR is a color name.  This is
2585    for compatibility with previous Emacs versions.
2588 ** Support functions for colors on text-only terminals.
2590 The function `tty-color-define' can be used to define colors for use
2591 on TTY and MSDOS frames.  It maps a color name to a color number on
2592 the terminal.  Emacs defines a couple of common color mappings by
2593 default.  You can get defined colors with a call to
2594 `defined-colors'.  The function `tty-color-clear' can be
2595 used to clear the mapping table.
2597 ** Unified support for colors independent of frame type.
2599 The new functions `defined-colors', `color-defined-p', `color-values',
2600 and `display-color-p' work for any type of frame.  On frames whose
2601 type is neither x nor w32, these functions transparently map X-style
2602 color specifications to the closest colors supported by the frame
2603 display.  Lisp programs should use these new functions instead of the
2604 old `x-defined-colors', `x-color-defined-p', `x-color-values', and
2605 `x-display-color-p'.  (The old function names are still available for
2606 compatibility; they are now aliases of the new names.)  Lisp programs
2607 should no more look at the value of the variable window-system to
2608 modify their color-related behavior.
2610 The primitives `color-gray-p' and `color-supported-p' also work for
2611 any frame type.
2613 ** Platform-independent functions to describe display capabilities.
2615 The new functions `display-mouse-p', `display-popup-menus-p',
2616 `display-graphic-p', `display-selections-p', `display-screens',
2617 `display-pixel-width', `display-pixel-height', `display-mm-width',
2618 `display-mm-height', `display-backing-store', `display-save-under',
2619 `display-planes', `display-color-cells', `display-visual-class', and
2620 `display-grayscale-p' describe the basic capabilities of a particular
2621 display.  Lisp programs should call these functions instead of testing
2622 the value of the variables `window-system' or `system-type', or calling
2623 platform-specific functions such as `x-display-pixel-width'.
2626 ** The minibuffer prompt is now actually inserted in the minibuffer.
2628 This makes it possible to scroll through the prompt, if you want to.
2630 The function minubuffer-prompt-end returns the current position of the
2631 end of the minibuffer prompt, if the minibuffer is current.
2632 Otherwise, it returns zero.
2634 ** New `field' abstraction in buffers.
2636 There is now code to support an abstraction called `fields' in emacs
2637 buffers.  A field is a contiguous region of text with the same `field'
2638 property (which can be a text property or an overlay).
2640 Many emacs functions, such as forward-word, forward-sentence,
2641 forward-paragraph, beginning-of-line, etc., stop moving when they come
2642 to the boundary between fields; beginning-of-line and end-of-line will
2643 not let the point move past the field boundary, but other movement
2644 commands continue into the next field if repeated.  Stopping at field
2645 boundaries can be suppressed programmatically by binding
2646 `inhibit-field-text-motion' to a non-nil value around calls to these
2647 functions.
2649 Now that the minibuffer prompt is inserted into the minibuffer, it is in
2650 a separate field from the user-input part of the buffer, so that common
2651 editing commands treat the user's text separately from the prompt.
2653 The following functions are defined for operating on fields:
2655 - Function: constrain-to-field NEW-POS OLD-POS &optional ESCAPE-FROM-EDGE ONLY-IN-LINE INHIBIT-CAPTURE-PROPERTY
2657 Return the position closest to NEW-POS that is in the same field as OLD-POS.
2659 A field is a region of text with the same `field' property.
2660 If NEW-POS is nil, then the current point is used instead, and set to the
2661 constrained position if that is is different.
2663 If OLD-POS is at the boundary of two fields, then the allowable
2664 positions for NEW-POS depends on the value of the optional argument
2665 ESCAPE-FROM-EDGE: If ESCAPE-FROM-EDGE is nil, then NEW-POS is
2666 constrained to the field that has the same `field' char-property
2667 as any new characters inserted at OLD-POS, whereas if ESCAPE-FROM-EDGE
2668 is non-nil, NEW-POS is constrained to the union of the two adjacent
2669 fields.  Additionally, if two fields are separated by another field with
2670 the special value `boundary', then any point within this special field is
2671 also considered to be `on the boundary'.
2673 If the optional argument ONLY-IN-LINE is non-nil and constraining
2674 NEW-POS would move it to a different line, NEW-POS is returned
2675 unconstrained.  This useful for commands that move by line, like
2676 C-n or C-a, which should generally respect field boundaries
2677 only in the case where they can still move to the right line.
2679 If the optional argument INHIBIT-CAPTURE-PROPERTY is non-nil, and OLD-POS has
2680 a non-nil property of that name, then any field boundaries are ignored.
2682 Field boundaries are not noticed if `inhibit-field-text-motion' is non-nil.
2684 - Function: delete-field &optional POS
2686 Delete the field surrounding POS.
2687 A field is a region of text with the same `field' property.
2688 If POS is nil, the value of point is used for POS.
2690 - Function: field-beginning &optional POS ESCAPE-FROM-EDGE
2692 Return the beginning of the field surrounding POS.
2693 A field is a region of text with the same `field' property.
2694 If POS is nil, the value of point is used for POS.
2695 If ESCAPE-FROM-EDGE is non-nil and POS is at the beginning of its
2696 field, then the beginning of the *previous* field is returned.
2698 - Function: field-end &optional POS ESCAPE-FROM-EDGE
2700 Return the end of the field surrounding POS.
2701 A field is a region of text with the same `field' property.
2702 If POS is nil, the value of point is used for POS.
2703 If ESCAPE-FROM-EDGE is non-nil and POS is at the end of its field,
2704 then the end of the *following* field is returned.
2706 - Function: field-string &optional POS
2708 Return the contents of the field surrounding POS as a string.
2709 A field is a region of text with the same `field' property.
2710 If POS is nil, the value of point is used for POS.
2712 - Function: field-string-no-properties &optional POS
2714 Return the contents of the field around POS, without text-properties.
2715 A field is a region of text with the same `field' property.
2716 If POS is nil, the value of point is used for POS.
2719 ** Image support.
2721 Emacs can now display images.  Images are inserted into text by giving
2722 strings or buffer text a `display' text property containing one of
2723 (AREA IMAGE) or IMAGE.  The display of the `display' property value
2724 replaces the display of the characters having that property.
2726 If the property value has the form (AREA IMAGE), AREA must be one of
2727 `(margin left-margin)', `(margin right-margin)' or `(margin nil)'.  If
2728 AREA is `(margin nil)', IMAGE will be displayed in the text area of a
2729 window, otherwise it will be displayed in the left or right marginal
2730 area.
2732 IMAGE is an image specification.
2734 *** Image specifications
2736 Image specifications are lists of the form `(image PROPS)' where PROPS
2737 is a property list whose keys are keyword symbols.  Each
2738 specifications must contain a property `:type TYPE' with TYPE being a
2739 symbol specifying the image type, e.g. `xbm'.  Properties not
2740 described below are ignored.
2742 The following is a list of properties all image types share.
2744 `:ascent ASCENT'
2746 ASCENT must be a number in the range 0..100, or the symbol `center'.
2747 If it is a number, it specifies the percentage of the image's height
2748 to use for its ascent.
2750 If not specified, ASCENT defaults to the value 50 which means that the
2751 image will be centered with the base line of the row it appears in.
2753 If ASCENT is `center' the image is vertically centered around a
2754 centerline which is the vertical center of text drawn at the position
2755 of the image, in the manner specified by the text properties and
2756 overlays that apply to the image.
2758 `:margin MARGIN'
2760 MARGIN must be a number >= 0 specifying how many pixels to put as
2761 margin around the image.  Default is 0.
2763 `:relief RELIEF'
2765 RELIEF is analogous to the `:relief' attribute of faces.  Puts a relief
2766 around an image.
2768 `:algorithm ALGO'
2770 Apply an image algorithm to the image before displaying it.  ALGO must
2771 be a symbol specifying the algorithm.  Currently only `laplace' is
2772 supported which applies a Laplace edge detection algorithm to an image
2773 which is intended to display images "disabled."
2775 `:heuristic-mask BG'
2777 If BG is not nil, build a clipping mask for the image, so that the
2778 background of a frame is visible behind the image.  If BG is t,
2779 determine the background color of the image by looking at the 4
2780 corners of the image, assuming the most frequently occuring color from
2781 the corners is the background color of the image.  Otherwise, BG must
2782 be a list `(RED GREEN BLUE)' specifying the color to assume for the
2783 background of the image.
2785 `:file FILE'
2787 Load image from FILE.  If FILE is not absolute after expanding it,
2788 search for the image in `data-directory'.  Some image types support
2789 building images from data.  When this is done, no `:file' property
2790 may be present in the image specification.
2792 `:data DATA'
2794 Get image data from DATA.  (As of this writing, this is not yet
2795 supported for image type `postscript').  Either :file or :data may be
2796 present in an image specification, but not both.  All image types
2797 support strings as DATA, some types allow additional types of DATA.
2799 *** Supported image types
2801 **** XBM, image type `xbm'.
2803 XBM images don't require an external library.  Additional image
2804 properties supported are
2806 `:foreground FG'
2808 FG must be a string specifying the image foreground color.  Default
2809 is the frame's foreground.
2811 `:background FG'
2813 BG must be a string specifying the image foreground color.  Default is
2814 the frame's background color.
2816 XBM images can be constructed from data instead of file.  In this
2817 case, the image specification must contain the following properties
2818 instead of a `:file' property.
2820 `:width WIDTH'
2822 WIDTH specifies the width of the image in pixels.
2824 `:height HEIGHT'
2826 HEIGHT specifies the height of the image in pixels.
2828 `:data DATA'
2830 DATA must be either
2832    1. a string large enough to hold the bitmap data, i.e. it must
2833    have a size >= (WIDTH + 7) / 8 * HEIGHT
2835    2. a bool-vector of size >= WIDTH * HEIGHT
2837    3. a vector of strings or bool-vectors, one for each line of the
2838    bitmap.
2840    4. a string that's an in-memory XBM file.  Neither width nor
2841    height may be specified in this case because these are defined
2842    in the file.
2844 **** XPM, image type `xpm'
2846 XPM images require the external library `libXpm', package
2847 `xpm-3.4k.tar.gz', version 3.4k or later.  Make sure the library is
2848 found when Emacs is configured by supplying appropriate paths via
2849 `--x-includes' and `--x-libraries'.
2851 Additional image properties supported are:
2853 `:color-symbols SYMBOLS'
2855 SYMBOLS must be a list of pairs (NAME . COLOR), with NAME being the
2856 name of color as it appears in an XPM file, and COLOR being an X color
2857 name.
2859 XPM images can be built from memory instead of files.  In that case,
2860 add a `:data' property instead of a `:file' property.
2862 The XPM library uses libz in its implementation so that it is able
2863 to display compressed images.
2865 **** PBM, image type `pbm'
2867 PBM images don't require an external library.  Color, gray-scale and
2868 mono images are supported.  There are no additional image properties
2869 defined.
2871 **** JPEG, image type `jpeg'
2873 Support for JPEG images requires the external library `libjpeg',
2874 package `jpegsrc.v6a.tar.gz', or later.  Additional image properties
2875 are:
2877 **** TIFF, image type `tiff'
2879 Support for TIFF images requires the external library `libtiff',
2880 package `tiff-v3.4-tar.gz', or later.  There are no additional image
2881 properties defined.
2883 **** GIF, image type `gif'
2885 Support for GIF images requires the external library `libungif', package
2886 `libungif-4.1.0', or later.
2888 Additional image properties supported are:
2890 `:index INDEX'
2892 INDEX must be an integer >= 0.  Load image number INDEX from a
2893 multi-image GIF file.  An error is signalled if INDEX is too large.
2895 This could be used to implement limited support for animated GIFs.
2896 For example, the following function displays a multi-image GIF file
2897 at point-min in the current buffer, switching between sub-images
2898 every 0.1 seconds.
2900 (defun show-anim (file max)
2901   "Display multi-image GIF file FILE which contains MAX subimages."
2902   (display-anim (current-buffer) file 0 max t))
2904 (defun display-anim (buffer file idx max first-time)
2905   (when (= idx max)
2906     (setq idx 0))
2907   (let ((img (create-image file nil nil :index idx)))
2908     (save-excursion
2909       (set-buffer buffer)
2910       (goto-char (point-min))
2911       (unless first-time (delete-char 1))
2912       (insert-image img "x"))
2913     (run-with-timer 0.1 nil 'display-anim buffer file (1+ idx) max nil)))
2915 **** PNG, image type `png'
2917 Support for PNG images requires the external library `libpng',
2918 package `libpng-1.0.2.tar.gz', or later.  There are no additional image
2919 properties defined.
2921 **** Ghostscript, image type `postscript'.
2923 Additional image properties supported are:
2925 `:pt-width WIDTH'
2927 WIDTH is width of the image in pt (1/72 inch).  WIDTH must be an
2928 integer.  This is a required property.
2930 `:pt-height HEIGHT'
2932 HEIGHT specifies the height of the image in pt (1/72 inch).  HEIGHT
2933 must be a integer.  This is an required property.
2935 `:bounding-box BOX'
2937 BOX must be a list or vector of 4 integers giving the bounding box of
2938 the PS image, analogous to the `BoundingBox' comment found in PS
2939 files.  This is an required property.
2941 Part of the Ghostscript interface is implemented in Lisp.  See
2942 lisp/gs.el.
2944 *** Lisp interface.
2946 The variable `image-types' contains a list of those image types
2947 which are supported in the current configuration.
2949 Images are stored in an image cache and removed from the cache when
2950 they haven't been displayed for `image-cache-eviction-delay seconds.
2951 The function `clear-image-cache' can be used to clear the image cache
2952 manually.  Images in the cache are compared with `equal', i.e. all
2953 images with `equal' specifications share the same image.
2955 *** Simplified image API, image.el
2957 The new Lisp package image.el contains functions that simplify image
2958 creation and putting images into text.  The function `create-image'
2959 can be used to create images.  The macro `defimage' can be used to
2960 define an image based on available image types.  The functions
2961 `put-image' and `insert-image' can be used to insert an image into a
2962 buffer.
2965 ** Display margins.
2967 Windows can now have margins which are used for special text
2968 and images.
2970 To give a window margins, either set the buffer-local variables
2971 `left-margin-width' and `right-margin-width', or call
2972 `set-window-margins'.  The function `window-margins' can be used to
2973 obtain the current settings.  To make `left-margin-width' and
2974 `right-margin-width' take effect, you must set them before displaying
2975 the buffer in a window, or use `set-window-buffer' to force an update
2976 of the display margins.
2978 You can put text in margins by giving it a `display' text property
2979 containing a pair of the form `(LOCATION . VALUE)', where LOCATION is
2980 one of `left-margin' or `right-margin' or nil.  VALUE can be either a
2981 string, an image specification or a stretch specification (see later
2982 in this file).
2985 ** Help display
2987 Emacs displays short help messages in the echo area, when the mouse
2988 moves over a tool-bar item or a piece of text that has a text property
2989 `help-echo'.  This feature also applies to strings in the mode line
2990 that have a `help-echo' property.
2992 If the value of the `help-echo' property is a function, that function
2993 is called with three arguments WINDOW, OBJECT and POSITION.  WINDOW is
2994 the window in which the help was found.
2996 If OBJECT is a buffer, POS is the position in the buffer where the
2997 `help-echo' text property was found.
2999 If OBJECT is an overlay, that overlay has a `help-echo' property, and
3000 POS is the position in the overlay's buffer under the mouse.
3002 If OBJECT is a string (an overlay string or a string displayed with
3003 the `display' property), POS is the position in that string under the
3004 mouse.
3006 If the value of the `help-echo' property is neither a function nor a
3007 string, it is evaluated to obtain a help string.
3009 For tool-bar and menu-bar items, their key definition is used to
3010 determine the help to display.  If their definition contains a
3011 property `:help FORM', FORM is evaluated to determine the help string.
3012 For tool-bar items without a help form, the caption of the item is
3013 used as help string.
3015 The hook `show-help-function' can be set to a function that displays
3016 the help string differently.  For example, enabling a tooltip window
3017 causes the help display to appear there instead of in the echo area.
3020 ** Vertical fractional scrolling.
3022 The display of text in windows can be scrolled smoothly in pixels.
3023 This is useful, for example, for making parts of large images visible.
3025 The function `window-vscroll' returns the current value of vertical
3026 scrolling, a non-negative fraction of the canonical character height.
3027 The function `set-window-vscroll' can be used to set the vertical
3028 scrolling value.  Here is an example of how these function might be
3029 used.
3031   (global-set-key [A-down]
3032     #'(lambda ()
3033         (interactive)
3034         (set-window-vscroll (selected-window)
3035                             (+ 0.5 (window-vscroll)))))
3036   (global-set-key [A-up]
3037     #'(lambda ()
3038         (interactive)
3039         (set-window-vscroll (selected-window)
3040                             (- (window-vscroll) 0.5)))))
3043 ** New hook `fontification-functions'.
3045 Functions from `fontification-functions' are called from redisplay
3046 when it encounters a region of text that is not yet fontified.  This
3047 variable automatically becomes buffer-local when set.  Each function
3048 is called with one argument, POS.
3050 At least one of the hook functions should fontify one or more
3051 characters starting at POS in the current buffer.  It should mark them
3052 as fontified by giving them a non-nil value of the `fontified' text
3053 property.  It may be reasonable for these functions to check for the
3054 `fontified' property and not put it back on, but they do not have to.
3057 ** Tool bar support.
3059 Emacs supports a tool bar at the top of a frame under X.  The frame
3060 parameter `tool-bar-lines' (X resource "toolBar", class "ToolBar")
3061 controls how may lines to reserve for the tool bar.  A zero value
3062 suppresses the tool bar.  If the value is non-zero and
3063 `auto-resize-tool-bars' is non-nil the tool bar's size will be changed
3064 automatically so that all tool bar items are visible.
3066 *** Tool bar item definitions
3068 Tool bar items are defined using `define-key' with a prefix-key
3069 `tool-bar'.  For example `(define-key global-map [tool-bar item1] ITEM)'
3070 where ITEM is a list `(menu-item CAPTION BINDING PROPS...)'.
3072 CAPTION is the caption of the item, If it's not a string, it is
3073 evaluated to get a string.  The caption is currently not displayed in
3074 the tool bar, but it is displayed if the item doesn't have a `:help'
3075 property (see below).
3077 BINDING is the tool bar item's binding.  Tool bar items with keymaps as
3078 binding are currently ignored.
3080 The following properties are recognized:
3082 `:enable FORM'.
3084 FORM is evaluated and specifies whether the tool bar item is enabled
3085 or disabled.
3087 `:visible FORM'
3089 FORM is evaluated and specifies whether the tool bar item is displayed.
3091 `:filter FUNCTION'
3093 FUNCTION is called with one parameter, the same list BINDING in which
3094 FUNCTION is specified as the filter.  The value FUNCTION returns is
3095 used instead of BINDING to display this item.
3097 `:button (TYPE SELECTED)'
3099 TYPE must be one of `:radio' or `:toggle'.  SELECTED is evaluated
3100 and specifies whether the button is selected (pressed) or not.
3102 `:image IMAGES'
3104 IMAGES is either a single image specification or a vector of four
3105 image specifications.  If it is a vector, this table lists the
3106 meaning of each of the four elements:
3108    Index        Use when item is
3109    ----------------------------------------
3110      0          enabled and selected
3111      1          enabled and deselected
3112      2          disabled and selected
3113      3          disabled and deselected
3115 If IMAGE is a single image specification, a Laplace edge-detection
3116 algorithm is used on that image to draw the image in disabled state.
3118 `:help HELP-STRING'.
3120 Gives a help string to display for the tool bar item.  This help
3121 is displayed when the mouse is moved over the item.
3123 *** Tool-bar-related variables.
3125 If `auto-resize-tool-bar' is non-nil, the tool bar will automatically
3126 resize to show all defined tool bar items.  It will never grow larger
3127 than 1/4 of the frame's size.
3129 If `auto-raise-tool-bar-buttons' is non-nil, tool bar buttons will be
3130 raised when the mouse moves over them.
3132 You can add extra space between tool bar items by setting
3133 `tool-bar-button-margin' to a positive integer specifying a number of
3134 pixels.  Default is 1.
3136 You can change the shadow thickness of tool bar buttons by setting
3137 `tool-bar-button-relief' to an integer.  Default is 3.
3139 *** Tool-bar clicks with modifiers.
3141 You can bind commands to clicks with control, shift, meta etc. on
3142 a tool bar item.  If
3144   (define-key global-map [tool-bar shell]
3145     '(menu-item "Shell" shell
3146                 :image (image :type xpm :file "shell.xpm")))
3148 is the original tool bar item definition, then
3150   (define-key global-map [tool-bar S-shell] 'some-command)
3152 makes a binding to run `some-command' for a shifted click on the same
3153 item.
3155 ** Mode line changes.
3158 *** Mouse-sensitive mode line.
3160 The mode line can be made mouse-sensitive by displaying strings there
3161 that have a `local-map' text property.  There are three ways to display
3162 a string with a `local-map' property in the mode line.
3164 1. The mode line spec contains a variable whose string value has
3165 a `local-map' text property.
3167 2. The mode line spec contains a format specifier (e.g. `%12b'), and
3168 that format specifier has a `local-map' property.
3170 3. The mode line spec contains a list containing `:eval FORM'.  FORM
3171 is evaluated.  If the result is a string, and that string has a
3172 `local-map' property.
3174 The same mechanism is used to determine the `face' and `help-echo'
3175 properties of strings in the mode line.  See `bindings.el' for an
3176 example.
3178 *** If a mode line element has the form `(:eval FORM)', FORM is
3179 evaluated and the result is used as mode line element.
3182 *** You can suppress mode-line display by setting the buffer-local
3183 variable mode-line-format to nil.
3186 *** A headerline can now be displayed at the top of a window.
3188 This mode line's contents are controlled by the new variable
3189 `header-line-format' and `default-header-line-format' which are
3190 completely analogous to `mode-line-format' and
3191 `default-mode-line-format'.  A value of nil means don't display a top
3192 line.
3194 The appearance of top mode lines is controlled by the face
3195 `header-line'.
3197 The function `coordinates-in-window-p' returns `header-line' for a
3198 position in the header-line.
3201 ** Text property `display'
3203 The `display' text property is used to insert images into text, and
3204 also control other aspects of how text displays.  The value of the
3205 `display' property should be a display specification, as described
3206 below, or a list or vector containing display specifications.
3208 *** Variable width and height spaces
3210 To display a space of fractional width or height, use a display
3211 specification of the form `(LOCATION STRECH)'.  If LOCATION is
3212 `(margin left-margin)', the space is displayed in the left marginal
3213 area, if it is `(margin right-margin)', it is displayed in the right
3214 marginal area, and if LOCATION is `(margin nil)' the space is
3215 displayed in the text.  In the latter case you can also use the
3216 simpler form STRETCH as property value.
3218 The stretch specification STRETCH itself is a list of the form `(space
3219 PROPS)', where PROPS is a property list which can contain the
3220 properties described below.
3222 The display of the fractional space replaces the display of the
3223 characters having the `display' property.
3225 - :width WIDTH
3227 Specifies that the space width should be WIDTH times the normal
3228 character width.  WIDTH can be an integer or floating point number.
3230 - :relative-width FACTOR
3232 Specifies that the width of the stretch should be computed from the
3233 first character in a group of consecutive characters that have the
3234 same `display' property.  The computation is done by multiplying the
3235 width of that character by FACTOR.
3237 - :align-to HPOS
3239 Specifies that the space should be wide enough to reach HPOS.  The
3240 value HPOS is measured in units of the normal character width.
3242 Exactly one of the above properties should be used.
3244 - :height HEIGHT
3246 Specifies the height of the space, as HEIGHT, measured in terms of the
3247 normal line height.
3249 - :relative-height FACTOR
3251 The height of the space is computed as the product of the height
3252 of the text having the `display' property and FACTOR.
3254 - :ascent ASCENT
3256 Specifies that ASCENT percent of the height of the stretch should be
3257 used for the ascent of the stretch, i.e. for the part above the
3258 baseline.  The value of ASCENT must be a non-negative number less or
3259 equal to 100.
3261 You should not use both `:height' and `:relative-height' together.
3263 *** Images
3265 A display specification for an image has the form `(LOCATION
3266 . IMAGE)', where IMAGE is an image specification.  The image replaces,
3267 in the display, the characters having this display specification in
3268 their `display' text property.  If LOCATION is `(margin left-margin)',
3269 the image will be displayed in the left marginal area, if it is
3270 `(margin right-margin)' it will be displayed in the right marginal
3271 area, and if LOCATION is `(margin nil)' the image will be displayed in
3272 the text.  In the latter case you can also use the simpler form IMAGE
3273 as display specification.
3275 *** Other display properties
3277 - :space-width FACTOR
3279 Specifies that space characters in the text having that property
3280 should be displayed FACTOR times as wide as normal; FACTOR must be an
3281 integer or float.
3283 - :height HEIGHT
3285 Display text having this property in a font that is smaller or larger.
3287 If HEIGHT is a list of the form `(+ N)', where N is an integer, that
3288 means to use a font that is N steps larger.  If HEIGHT is a list of
3289 the form `(- N)', that means to use a font that is N steps smaller.  A
3290 ``step'' is defined by the set of available fonts; each size for which
3291 a font is available counts as a step.
3293 If HEIGHT is a number, that means to use a font that is HEIGHT times
3294 as tall as the frame's default font.
3296 If HEIGHT is a symbol, it is called as a function with the current
3297 height as argument.  The function should return the new height to use.
3299 Otherwise, HEIGHT is evaluated to get the new height, with the symbol
3300 `height' bound to the current specified font height.
3302 - :raise FACTOR
3304 FACTOR must be a number, specifying a multiple of the current
3305 font's height.  If it is positive, that means to display the characters
3306 raised.  If it is negative, that means to display them lower down.  The
3307 amount of raising or lowering is computed without taking account of the
3308 `:height' subproperty.
3310 *** Conditional display properties
3312 All display specifications can be conditionalized.  If a specification
3313 has the form `(:when CONDITION . SPEC)', the specification SPEC
3314 applies only when CONDITION yields a non-nil value when evaluated.
3315 During evaluattion, point is temporarily set to the end position of
3316 the text having the `display' property.
3318 The normal specification consisting of SPEC only is equivalent to
3319 `(:when t SPEC)'.
3322 ** New menu separator types.
3324 Emacs now supports more than one menu separator type.  Menu items with
3325 item names consisting of dashes only (including zero dashes) are
3326 treated like before.  In addition, the following item names are used
3327 to specify other menu separator types.
3329 - `--no-line' or `--space', or `--:space', or `--:noLine'
3331 No separator lines are drawn, but a small space is inserted where the
3332 separator occurs.
3334 - `--single-line' or `--:singleLine'
3336 A single line in the menu's foreground color.
3338 - `--double-line' or `--:doubleLine'
3340 A double line in the menu's foreground color.
3342 - `--single-dashed-line' or `--:singleDashedLine'
3344 A single dashed line in the menu's foreground color.
3346 - `--double-dashed-line' or `--:doubleDashedLine'
3348 A double dashed line in the menu's foreground color.
3350 - `--shadow-etched-in' or `--:shadowEtchedIn'
3352 A single line with 3D sunken appearance.  This is the the form
3353 displayed for item names consisting of dashes only.
3355 - `--shadow-etched-out' or `--:shadowEtchedOut'
3357 A single line with 3D raised appearance.
3359 - `--shadow-etched-in-dash' or `--:shadowEtchedInDash'
3361 A single dashed line with 3D sunken appearance.
3363 - `--shadow-etched-out-dash' or `--:shadowEtchedOutDash'
3365 A single dashed line with 3D raise appearance.
3367 - `--shadow-double-etched-in' or `--:shadowDoubleEtchedIn'
3369 Two lines with 3D sunken appearance.
3371 - `--shadow-double-etched-out' or `--:shadowDoubleEtchedOut'
3373 Two lines with 3D raised appearance.
3375 - `--shadow-double-etched-in-dash' or `--:shadowDoubleEtchedInDash'
3377 Two dashed lines with 3D sunken appearance.
3379 - `--shadow-double-etched-out-dash' or `--:shadowDoubleEtchedOutDash'
3381 Two dashed lines with 3D raised appearance.
3383 Under LessTif/Motif, the last four separator types are displayed like
3384 the corresponding single-line separators.
3387 ** New frame parameters for scroll bar colors.
3389 The new frame parameters `scroll-bar-foreground' and
3390 `scroll-bar-background' can be used to change scroll bar colors.
3391 Their value must be either a color name, a string, or nil to specify
3392 that scroll bars should use a default color.  For toolkit scroll bars,
3393 default colors are toolkit specific.  For non-toolkit scroll bars, the
3394 default background is the background color of the frame, and the
3395 default foreground is black.
3397 The X resource name of these parameters are `scrollBarForeground'
3398 (class ScrollBarForeground) and `scrollBarBackground' (class
3399 `ScrollBarBackground').
3401 Setting these parameters overrides toolkit specific X resource
3402 settings for scroll bar colors.
3405 ** You can set `redisplay-dont-pause' to a non-nil value to prevent
3406 display updates from being interrupted when input is pending.
3409 ** Changing a window's width may now change its window start if it
3410 starts on a continuation line.  The new window start is computed based
3411 on the window's new width, starting from the start of the continued
3412 line as the start of the screen line with the minimum distance from
3413 the original window start.
3416 ** The variable `hscroll-step' and the functions
3417 `hscroll-point-visible' and `hscroll-window-column' have been removed
3418 now that proper horizontal scrolling is implemented.
3421 ** Windows can now be made fixed-width and/or fixed-height.
3423 A window is fixed-size if its buffer has a buffer-local variable
3424 `window-size-fixed' whose value is not nil.  A value of `height' makes
3425 windows fixed-height, a value of `width' makes them fixed-width, any
3426 other non-nil value makes them both fixed-width and fixed-height.
3428 The following code makes all windows displaying the current buffer
3429 fixed-width and fixed-height.
3431   (set (make-local-variable 'window-size-fixed) t)
3433 A call to enlarge-window on a window gives an error if that window is
3434 fixed-width and it is tried to change the window's width, or if the
3435 window is fixed-height, and it is tried to change its height.  To
3436 change the size of a fixed-size window, bind `window-size-fixed'
3437 temporarily to nil, for example
3439   (let ((window-size-fixed nil))
3440      (enlarge-window 10))
3442 Likewise, an attempt to split a fixed-height window vertically,
3443 or a fixed-width window horizontally results in a error.
3445 ** The cursor-type frame parameter is now supported on MS-DOS
3446 terminals.  When Emacs starts, it by default changes the cursor shape
3447 to a solid box, as it does on Unix.  The `cursor-type' frame parameter
3448 overrides this as it does on Unix, except that the bar cursor is
3449 horizontal rather than vertical (since the MS-DOS display doesn't
3450 support a vertical-bar cursor).
3453 * For older news, see the file NEWS.1.
3455 ----------------------------------------------------------------------
3456 Copyright information:
3458 Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
3460    Permission is granted to anyone to make or distribute verbatim copies
3461    of this document as received, in any medium, provided that the
3462    copyright notice and this permission notice are preserved,
3463    thus giving the recipient permission to redistribute in turn.
3465    Permission is granted to distribute modified versions
3466    of this document, or of portions of it,
3467    under the above conditions, provided also that they
3468    carry prominent notices stating who last changed them.
3470 Local variables:
3471 mode: outline
3472 paragraph-separate: "[  \f]*$"
3473 end: