Mention view-emacs-problems.
[bpt/emacs.git] / etc / NEWS
CommitLineData
a933dad1
DL
1GNU Emacs NEWS -- history of user-visible changes. 23 Jan 1999
2Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
3See the end for copying conditions.
4
5Please send Emacs bug reports to bug-gnu-emacs@gnu.org.
6For older news, see the file ONEWS.
7
8\f
251584f3
DL
9* Installation Changes in Emacs 21.1
10
11** `movemail' defaults to supporting POP. You can turn this off using
12the --without-pop configure option, should that be necessary.
13\f
a933dad1
DL
14* Changes in Emacs 21.1
15
39783d73
WP
16** Emacs can now support 'wheeled' mice (such as the MS IntelliMouse)
17under XFree86. To enable this, simply put (mwheel-install) in your
18.emacs file.
19
20The variables `mwheel-follow-mouse' and `mwheel-scroll-amount'
21determine where and by how much buffers are scrolled.
22
d35fce81
GM
23** Listing buffers with M-x list-buffers (C-x C-b) now shows
24abbreviated file names. Abbreviations can be customized by changing
25`directory-abbrev-alist'.
26
df5a1902
GM
27** Reading from the mini-buffer now reads from standard input if Emacs
28is running in batch mode. For example,
29
30 (message "%s" (read t))
31
32will read a Lisp expression from standard input and print the result
33to standard output.
34
a933dad1
DL
35** Faces and frame parameters.
36
37There are four new faces `scroll-bar', `border', `cursor' and `mouse'.
38Setting the frame parameters `scroll-bar-foreground' and
39`scroll-bar-background' sets foreground and background color of face
40`scroll-bar' and vice versa. Setting frame parameter `border-color'
41sets the background color of face `border' and vice versa. Likewise
42for frame parameters `cursor-color' and face `cursor', and frame
43parameter `mouse-color' and face `mouse'.
44
45Changing frame parameter `font' sets font-related attributes of the
46`default' face and vice versa. Setting frame parameters
79214ddf 47`foreground-color' or `background-color' sets the colors of the
a933dad1
DL
48`default' face and vice versa.
49
f77a4a8a
GM
50** New face `menu'.
51
52The face `menu' can be used to change colors and font of Emacs' menus.
53Setting the font of LessTif/Motif menus is currently not supported;
54attempts to set the font are ignored in this case.
55
a933dad1
DL
56** New frame parameter `screen-gamma' for gamma correction.
57
58The new frame parameter `screen-gamma' specifies gamma-correction for
59colors. Its value may be nil, the default, in which case no gamma
60correction occurs, or a number > 0, usually a float, that specifies
61the screen gamma of a frame's display.
62
63PC monitors usually have a screen gamma of 2.2. smaller values result
64in darker colors. You might want to try a screen gamma of 1.5 for LCD
65color displays. The viewing gamma Emacs uses is 0.4545. (1/2.2).
66
67The X resource name of this parameter is `screenGamma', class
68`ScreenGamma'.
69
70** Emacs has a new redisplay engine.
71
72The new redisplay handles characters of variable width and height.
73Italic text can be used without redisplay problems. Fonts containing
74oversized characters, i.e. characters larger than the logical height
75of a font can be used. Images of various formats can be displayed in
76the text.
77
78** Emacs has a new face implementation.
79
80The new faces no longer fundamentally use X font names to specify the
81font. Instead, each face has several independent attributes--family,
82height, width, weight and slant--that it may or may not specify.
83These attributes can be merged from various faces, and then together
84specify a font.
85
86Faces are supported on terminals that can display color or fonts.
87These terminal capabilities are auto-detected. Details can be found
88under Lisp changes, below.
89
90** New default font is Courier 12pt.
91
92** When using a windowing terminal, Emacs window now has a cursor of
93its own. When the window is selected, the cursor is solid; otherwise,
94it is hollow.
95
96** Bitmap areas to the left and right of windows are used to display
97truncation marks, continuation marks, overlay arrows and alike. The
98foreground, background, and stipple of these areas can be changed by
99customizing face `fringe'.
100
101** The mode line under X is now drawn with shadows by default. You
102can change its appearance by modifying the face `modeline'.
103
104** LessTif support.
105
106Emacs now runs with LessTif (see <http://www.lesstif.org>). You will
107need a version 0.88.1 or later.
108
109** Toolkit scroll bars.
110
111Emacs now uses toolkit scrollbars if available. When configured for
112LessTif/Motif, it will use that toolkit's scrollbar. Otherwise, when
113configured for Lucid and Athena widgets, it will use the Xaw3d scroll
114bar if Xaw3d is available. You can turn off the use of toolkit scroll
115bars by specifying `--with-toolkit-scroll-bars=no' when configuring
116Emacs.
117
118When you encounter problems with the Xaw3d scroll bar, watch out how
119Xaw3d is compiled on your system. If the Makefile generated from
120Xaw3d's Imakefile contains a `-DNARROWPROTO' compiler option, and your
121Emacs system configuration file `s/your-system.h' does not contain a
122define for NARROWPROTO, you might consider adding it. Take
123`s/freebsd.h' as an example.
124
125Alternatively, if you don't have access to the Xaw3d source code, take
126a look at your system's imake configuration file, for example in the
127directory `/usr/X11R6/lib/X11/config' (paths are different on
128different systems). You will find files `*.cf' there. If your
129system's cf-file contains a line like `#define NeedWidePrototypes NO',
130add a `#define NARROWPROTO' to your Emacs system configuration file.
131
132The reason for this is that one Xaw3d function uses `double' or
133`float' function parameters depending on the setting of NARROWPROTO.
134This is not a problem when Imakefiles are used because each system's
135image configuration file contains the necessary information. Since
136Emacs doesn't use imake, this has do be done manually.
137
138** Toggle buttons and radio buttons in menus.
139
140When compiled with LessTif (or Motif) support, Emacs uses toolkit
141widgets for radio and toggle buttons in menus. When configured for
142Lucid, Emacs draws radio buttons and toggle buttons similar to Motif.
143
144** Highlighting of trailing whitespace.
145
146When `show-trailing-whitespace' is non-nil, Emacs displays trailing
147whitespace in the face `trailing-whitespace'. Trailing whitespace is
148defined as spaces or tabs at the end of a line. To avoid busy
149highlighting when entering new text, trailing whitespace is not
150displayed if point is at the end of the line containing the
151whitespace.
152
153** Busy-cursor.
154
155Emacs can optionally display a busy-cursor under X. You can turn the
156display on or off by customizing group `cursor'.
157
158** Blinking cursor
159
160M-x blink-cursor-mode toggles a blinking cursor under X and on
161terminals having terminal capabilities `vi', `vs', and `ve'. Blinking
162and related parameters like frequency and delay can be customized in
163the group `cursor'.
164
165** New font-lock support mode `jit-lock-mode'.
166
167This support mode is roughly equivalent to `lazy-lock' but is
168generally faster. It supports stealth and deferred fontification.
169See the documentation of the function `jit-lock-mode' for more
170details.
171
172Font-lock uses jit-lock-mode as default support mode, so you don't
173have to do anything to activate it.
174
175** Tabs and variable-width text.
176
177Tabs are now displayed with stretch properties; the width of a tab is
178defined as a multiple of the normal character width of a frame, and is
179independent of the fonts used in the text where the tab appears.
180Thus, tabs can be used to line up text in different fonts.
181
182** Enhancements of the Lucid menu bar
183
184*** The Lucid menu bar now supports the resource "margin".
185
186 emacs.pane.menubar.margin: 5
187
188The default margin is 4 which makes the menu bar appear like the Motif
189one.
190
191*** Arrows that indicate sub-menus are now drawn with shadows, like in
192Motif.
193
194** Hscrolling in C code.
195
196Horizontal scrolling now happens automatically.
197
198** Tool bar support.
199
200Emacs supports a tool bar at the top of a frame under X. For details
201how to define a tool bar, see the page describing Lisp-level changes.
202
203** Mouse-sensitive mode line.
204
205Different parts of the mode line under X have been made
206mouse-sensitive. Moving the mouse to a mouse-sensitive part in the mode
207line changes the appearance of the mouse pointer to an arrow, and help
208about available mouse actions is displayed either in the echo area, or
209in the tooltip window if you have enabled one.
210
211Currently, the following actions have been defined:
212
213- Mouse-1 on the buffer name in the mode line switches between two
214buffers.
215
216- Mouse-2 on the buffer-name switches to the next buffer, and
217M-mouse-2 switches to the previous buffer in the buffer list.
218
219- Mouse-3 on the buffer-name displays a buffer menu.
220
221- Mouse-1 on the read-only status in the mode line (`%' or `*')
222toggles the read-only status.
223
224- Mouse-3 on the mode name display a minor-mode menu.
225
226** LessTif/Motif file selection dialog.
227
228When Emacs is configured to use LessTif or Motif, reading a file name
e33b0397 229from a menu will pop up a file selection dialog if `use-dialog-box' is
a933dad1
DL
230non-nil.
231
232** Emacs can display faces on TTY frames.
233
234Emacs automatically detects terminals that are able to display colors.
235Faces with a weight greater than normal are displayed extra-bright, if
236the terminal supports it. Faces with a weight less than normal and
237italic faces are displayed dimmed, if the terminal supports it.
238Underlined faces are displayed underlined if possible. Other face
239attributes like overlines, strike-throught, box are ignored.
240
241** Sound support
242
243Emacs supports playing sound files on GNU/Linux and the free BSDs
244(Voxware driver and native BSD driver, aka as Luigi's driver).
245Currently supported file formats are RIFF-WAVE (*.wav) and Sun Audio
246(*.au). You must configure Emacs with the option `--with-sound=yes'
247to enable sound support.
248
249** A new variable, backup-by-copying-when-privileged-mismatch, gives
250the highest file uid for which backup-by-copying-when-mismatch will be
251forced on. The assumption is that uids less than or equal to this
252value are special uids (root, bin, daemon, etc.--not real system
253users) and that files owned by these users should not change ownership,
254even if your system policy allows users other than root to edit them.
255
256The default is 200; set the variable to nil to disable the feature.
257
258** A block cursor can be drawn as wide as the glyph under it under X.
259
260As an example: if a block cursor is over a tab character, it will be
261drawn as wide as that tab on the display. To do this, set
262`x-stretch-cursor' to a non-nil value.
263
264** Empty display lines at the end of a buffer may be marked with a
265bitmap (this is similar to the tilde displayed by vi).
266
267This behavior is activated by setting the buffer-local variable
268`indicate-empty-lines' to a non-nil value. The default value of this
269variable is found in `default-indicate-empty-lines'.
270
271** There is a new "aggressive" scrolling method.
272
273When scrolling up because point is above the window start, if the
274value of the buffer-local variable `scroll-up-aggessively' is a
275number, Emacs chooses a new window start so that point ends up that
276fraction of the window's height from the bottom of the window.
277
278When scrolling down because point is below the window end, if the
279value of the buffer-local variable `scroll-down-aggessively' is a
280number, Emacs chooses a new window start so that point ends up that
281fraction of the window's height from the top of the window.
282
283** The rectangle commands now avoid inserting undesirable spaces,
284notably at the end of lines.
285
286All these functions have been rewritten to avoid inserting unwanted
287spaces, and an optional prefix now allows them to behave the old way.
288
289** The new command M-x query-replace-regexp-eval acts like
290query-replace-regexp, but takes a Lisp expression which is evaluated
291after each match to get the replacement text.
292
293** Emacs now resizes mini-windows if appropriate.
294
295If a message is longer than one line, or mini-buffer contents are
296longer than one line, Emacs now resizes the mini-window unless it is
297on a frame of its own. You can control the maximum mini-window size
298by setting the following variable:
299
300- User option: max-mini-window-height
301
302Maximum height for resizing mini-windows. If a float, it specifies a
303fraction of the mini-window frame's height. If an integer, it
304specifies a number of lines. If nil, don't resize.
305
306Default is 0.25.
307
b3b98592
GM
308** Comint (subshell) changes
309
310Comint now includes new features to send commands to running processes
311and redirect the output to a designated buffer or buffers.
312
313The command M-x comint-redirect-send-command reads a command and
314buffer name from the mini-buffer. The command is sent to the current
315buffer's process, and its output is inserted into the specified buffer.
316
317The command M-x comint-redirect-send-command-to-process acts like
318M-x comint-redirect-send-command but additionally reads the name of
319the buffer whose process should be used from the mini-buffer.
320
400a1ed0
GM
321** Changes to TeX mode
322
323The default mode has been changed from `plain-tex-mode' to
324`latex-mode'.
325
a933dad1
DL
326** Changes to RefTeX mode
327
328*** RefTeX has new support for index generation. Index entries can be
329 created with `C-c <', with completion available on index keys.
330 Pressing `C-c /' indexes the word at the cursor with a default
331 macro. `C-c >' compiles all index entries into an alphabetically
332 sorted *Index* buffer which looks like the final index. Entries
333 can be edited from that buffer.
334
335*** Label and citation key selection now allow to select several
336 items and reference them together (use `m' to mark items, `a' or
337 `A' to use all marked entries).
338
339*** reftex.el has been split into a number of smaller files to reduce
340 memory use when only a part of RefTeX is being used.
341
342*** a new command `reftex-view-crossref-from-bibtex' (bound to `C-c &'
343 in BibTeX-mode) can be called in a BibTeX database buffer in order
344 to show locations in LaTeX documents where a particular entry has
345 been cited.
346
38de9631
GM
347** Emacs Lisp mode now allows multiple levels of outline headings.
348The level of a heading is determined from the number of leading
349semicolons in a heading line. Toplevel forms starting with a `('
350in column 1 are always made leaves.
351
a933dad1
DL
352** The M-x time-stamp command (most commonly used on write-file-hooks)
353has the following new features:
354
355*** The patterns for finding the time stamp and for updating a pattern
356may match text spanning multiple lines. For example, some people like
357to have the filename and date on separate lines. The new variable
358time-stamp-inserts-lines controls the matching for multi-line patterns.
359
360*** More than one time stamp can be updated in the same file. This
361feature is useful if you need separate time stamps in a program source
362file to both include in formatted documentation and insert in the
363compiled binary. The same time-stamp will be written at each matching
364pattern. The variable time-stamp-count enables this new feature; it
365defaults to 1.
366
367** Tooltips.
368
369Tooltips are small X windows displaying a help string at the current
370mouse position. To use them, use the Lisp package `tooltip' which you
371can access via the user option `tooltip-mode'.
372
373Tooltips also provides support for GUD debugging. If activated,
374variable values can be displayed in tooltips by pointing at them with
375the mouse in source buffers. You can customize various aspects of the
376tooltip display in the group `tooltip'.
377
378** Customize changes
379
380*** Customize now supports comments about customized items. Use the
34f94cf9
DL
381`State' menu to add comments. Note that customization comments will
382cause the customizations to fail in earlier versions of Emacs.
a933dad1
DL
383
384*** The new option `custom-buffer-done-function' says whether to kill
385Custom buffers when you've done with them or just bury them (the
386default).
387
388** New features in evaluation commands
389
390The commands to evaluate Lisp expressions, such as C-M-x in Lisp
391modes, C-j in Lisp Interaction mode, and M-:, now bind the variables
392print-level, print-length, and debug-on-error based on the
393customizable variables eval-expression-print-level,
394eval-expression-print-length, and eval-expression-debug-on-error.
395
a933dad1
DL
396** Dired changes
397
398*** New variable `dired-recursive-deletes' determines if the delete
399command will delete non-empty directories recursively. The default
400is, delete only empty directories.
401
402*** New variable `dired-recursive-copies' determines if the copy
403command will copy directories recursively. The default is, do not
404copy directories recursively.
405
f6737cde
GM
406*** In command `dired-do-shell-command' (usually bound to `!') a `?'
407in the shell command has a special meaning similar to `*', but with
408the difference that the command will be run on each file individually.
409
a933dad1
DL
410** The variable mail-specify-envelope-from controls whether to
411use the -f option when sending mail.
412
87be76f6
GM
413** Isearch changes
414
415*** In Isearch mode, mouse-2 in the echo area now yanks the current
a933dad1
DL
416selection into the search string rather than giving an error.
417
87be76f6
GM
418*** There is a new lazy highlighting feature in incremental search.
419
d35fce81 420Lazy highlighting is switched on/off by customizing variable
87be76f6
GM
421`isearch-lazy-highlight'. When active, all matches for the current
422search string are highlighted. The current match is highlighted as
423before using face `isearch' or `region'. All other matches are
424highlighted using face `isearch-lazy-highlight-face' which defaults to
425`secondary-selection'.
426
427The extra highlighting makes it easier to anticipate where the cursor
428will end up each time you press C-s or C-r to repeat a pending search.
429Highlighting of these additional matches happens in a deferred fashion
430using "idle timers," so the cycles needed do not rob isearch of its
431usual snappy response.
432
433If `isearch-lazy-highlight-cleanup' is set to t, highlights for
434matches are automatically cleared when you end the search. If it is
435set to nil, you can remove the highlights manually with `M-x
436isearch-lazy-highlight-cleanup'.
437
438
d67f47e4
DL
439** Ange-ftp allows you to specify of a port number in remote file
440names cleanly. It is appended to the host name, separated by a hash
441sign, e.g. `/foo@bar.org#666:mumble'. (This syntax comes from EFS.)
442
4b9347b3
GM
443** Shell script mode changes.
444
445Shell script mode (sh-script) can now indent scripts for shells
446derived from sh and rc. The indentation style is customizeable, and
447sh-script can attempt to "learn" the current buffer's style.
448
79214ddf
FP
449** Etags changes.
450
451*** In DOS, etags looks for file.cgz if it cannot find file.c.
452
aca0be23 453*** New option --ignore-case-regex is an alternative to --regex. It is now
8dc78b52
FP
454possible to bind a regexp to a language, by prepending the regexp with
455{lang}, where lang is one of the languages that `etags --help' prints out.
456This feature is useful especially for regex files, where each line contains
457a regular expression. The manual contains details.
aca0be23 458
79214ddf
FP
459*** In C and derived languages, etags creates tags for function
460declarations when given the --declarations option.
461
462*** In C++, tags are created for "operator". The tags have the form
aca0be23 463"operator+", without spaces between the keyword and the operator.
79214ddf
FP
464
465*** New language Ada: tags are functions, procedures, packages, tasks, and
466types.
467
468*** In Fortran, procedure is no more tagged.
469
470*** In Java, tags are created for "interface".
471
472*** In Lisp, "(defstruct (foo", "(defun (operator" and similar constructs
473are now tagged.
474
475*** In Perl, the --globals option tags global variables. my and local
476variables are tagged.
477
478*** New language Python: def and class at the beginning of a line are tags.
479
8dc78b52
FP
480*** .ss files are Scheme files, .pdb is Postscript with C syntax, .psw is
481for PSWrap.
79214ddf 482
f6737cde
GM
483** Changes in etags.el
484
485*** You can display additional output with M-x tags-apropos by setting
486the new variable tags-apropos-additional-actions.
487
488If non-nil, the variable's value should be a list of triples (TITLE
489FUNCTION TO-SEARCH). For each triple, M-x tags-apropos processes
490TO-SEARCH and lists tags from it. TO-SEARCH should be an alist,
491obarray, or symbol. If it is a symbol, the symbol's value is used.
492
493TITLE is a string to use to label the list of tags from TO-SEARCH.
494
495FUNCTION is a function to call when an entry is selected in the Tags
496List buffer. It is called with one argument, the selected symbol.
497
498A useful example value for this variable might be something like:
499
500 '(("Emacs Lisp" Info-goto-emacs-command-node obarray)
501 ("Common Lisp" common-lisp-hyperspec common-lisp-hyperspec-obarray)
502 ("SCWM" scwm-documentation scwm-obarray))
503
504*** The face tags-tag-face can be used to customize the appearance
505of tags in the output of M-x tags-apropos.
506
507*** Setting tags-apropos-verbose to a non-nil value displays the
508names of tags files in the *Tags List* buffer.
509
fbc164de
PE
510** Emacs now attempts to determine the initial language environment
511and preferred and locale coding systems systematically from the
512LC_ALL, LC_CTYPE, and LANG environment variables during startup.
513
59c1bf85
DL
514** New language environments `Latin-8' and `Latin-9'.
515These correspond respectively to the ISO character sets 8859-14
516(Celtic) and 8859-15 (updated Latin-1, with the Euro sign). There is
517currently no specific input method support for them.
518
e33b0397
DL
519** Fortran mode has a new command `fortran-strip-sqeuence-nos' to
520remove text past column 72. The syntax class of `\' in Fortran is now
521appropriate for C-style escape sequences in strings.
522
523** SGML mode's default `sgml-validate-command' is now `nsgmls'.
524
a933dad1
DL
525** New modes and packages
526
527*** 5x5.el is a simple puzzle game.
528
529*** hl-line.el provides a minor mode to highlight the current line.
530
531*** ansi-color.el translates ANSI terminal escapes into text-properties.
532
533*** delphi.el provides a major mode for editing the Delphi (Object
534Pascal) language.
535
536*** quickurl.el provides a simple method of inserting a URL based on
537the text at point.
538
539*** sql.el provides an interface to SQL data bases.
540
8d54eb69
DL
541*** fortune.el uses the fortune program to create mail/news signatures.
542
a933dad1
DL
543*** whitespace.el ???
544
ebcfda83
GM
545*** PostScript mode (ps-mode) is a new major mode for editing PostScript
546files. It offers: interaction with a PostScript interpreter, including
547(very basic) error handling; fontification, easily customizable for
548interpreter messages; auto-indentation; insertion of EPSF templates and
549often used code snippets; viewing of BoundingBox; commenting out /
550uncommenting regions; conversion of 8bit characters to PostScript octal
551codes. All functionality is accessible through a menu.
552
553*** delim-col helps to prettify columns in a text region or rectangle.
554
555Here is an example of columns:
556
557horse apple bus
558dog pineapple car EXTRA
559porcupine strawberry airplane
560
561Doing the following settings:
562
563 (setq delimit-columns-str-before "[ ")
564 (setq delimit-columns-str-after " ]")
565 (setq delimit-columns-str-separator ", ")
566 (setq delimit-columns-separator "\t")
567
568
569Selecting the lines above and typing:
570
571 M-x delimit-columns-region
572
573It results:
574
575[ horse , apple , bus , ]
576[ dog , pineapple , car , EXTRA ]
577[ porcupine, strawberry, airplane, ]
578
579delim-col has the following options:
580
581 delimit-columns-str-before Specify a string to be inserted
582 before all columns.
583
584 delimit-columns-str-separator Specify a string to be inserted
585 between each column.
586
587 delimit-columns-str-after Specify a string to be inserted
588 after all columns.
589
590 delimit-columns-separator Specify a regexp which separates
591 each column.
592
593delim-col has the following commands:
594
595 delimit-columns-region Prettify all columns in a text region.
596 delimit-columns-rectangle Prettify all columns in a text rectangle.
597
f507826c
GM
598*** The package recentf.el maintains a menu for visiting files that
599were operated on recently. When enabled, a new "Open Recent" submenu
600is displayed in the "Files" menu.
601
602The recent files list is automatically saved across Emacs sessions.
603
604To enable/disable recentf use M-x recentf-mode.
605
606To enable recentf at Emacs startup use
607M-x customize-variable RET recentf-mode RET.
608
609To change the number of recent files displayed and others options use
610M-x customize-group RET recentf RET.
611
8062f458
DL
612*** elide-head.el provides a mechanism for eliding boilerplate header
613text.
614
a933dad1
DL
615** Withdrawn packages
616
617*** mldrag.el has been removed. mouse.el provides the same
618functionality with aliases for the mldrag functions.
25a81338
DL
619
620*** eval-reg.el has been obsoleted by changes to edebug.el.
a933dad1
DL
621\f
622* Lisp changes in Emacs 21.1 (see following page for display-related features)
623
624Note that +++ before an item means the Lisp manual has been updated.
625--- means that I have decided it does not need to be in the Lisp manual.
626When you add a new item, please add it without either +++ or ---
627so I will know I still need to look at it -- rms.
628
81da8b32
GM
629** The function `intern-soft' now accepts a symbol as first argument.
630In this case, that exact symbol is looked up in the specified obarray,
631and the function's value is nil if it is not found.
632
9e207b90
GM
633** The new macro `with-syntax-table' can be used to evaluate forms
634with the syntax table of the current buffer temporarily set to a
635specified table.
636
637 (with-syntax-table TABLE &rest BODY)
638
639Evaluate BODY with syntax table of current buffer set to a copy of
03d9c64c
GM
640TABLE. The current syntax table is saved, BODY is evaluated, and the
641saved table is restored, even in case of an abnormal exit. Value is
642what BODY returns.
9e207b90 643
dde9e75a
GM
644** The optional argument BUFFER of function file-local-copy has been
645removed since it wasn't used by anything.
646
9da30515
GM
647** The file name argument of function `file-locked-p' is now required
648instead of being optional.
649
d20679eb
GM
650** The new built-in error `text-read-only' is signaled when trying to
651modify read-only text.
652
fbc164de
PE
653** New functions and variables for locales.
654
655The new variable `locale-coding-system' specifies how to encode and
656decode strings passed to low-level message functions like strerror and
b718982a
PE
657time functions like strftime. The new variables
658`system-messages-locale' and `system-time-locale' give the system
659locales to be used when invoking these two types of functions.
fbc164de
PE
660
661The new function `set-locale-environment' sets the language
662environment, preferred coding system, and locale coding system from
663the system locale as specified by the LC_ALL, LC_CTYPE, and LANG
b718982a
PE
664environment variables. Normally, it is invoked during startup and need
665not be invoked thereafter. It uses the new variables
666`locale-language-names', `locale-charset-language-names', and
667`locale-preferred-coding-systems' to make its decisions.
fbc164de 668
863476d1
SM
669** syntax tables now understand nested comments.
670To declare a comment syntax as allowing nesting, just add an `n'
671modifier to either of the characters of the comment end and the comment
672start sequences.
673
ef6d912c
GM
674** The function `pixmap-spec-p' has been renamed `bitmap-spec-p'
675because `bitmap' is more in line with the usual X terminology.
676
a933dad1
DL
677** New function `propertize'
678
679The new function `propertize' can be used to conveniently construct
680strings with text properties.
681
682- Function: propertize STRING &rest PROPERTIES
683
684Value is a copy of STRING with text properties assigned as specified
685by PROPERTIES. PROPERTIES is a sequence of pairs PROPERTY VALUE, with
686PROPERTY being the name of a text property and VALUE being the
687specified value of that property. Example:
688
689 (propertize "foo" 'face 'bold 'read-only t)
690
691+++
692** push and pop macros.
693
694A simple version of the push and pop macros of Common Lisp
695is now defined in Emacs Lisp. These macros allow only symbols
696as the place that holds the list to be changed.
697
698(push NEWELT LISTNAME) add NEWELT to the front of LISTNAME's value.
699(pop LISTNAME) return first elt of LISTNAME, and remove it
700 (thus altering the value of LISTNAME).
701
702+++
703** Regular expressions now support Posix character classes such
704as [:alpha:], [:space:] and so on.
705
706[:digit:] matches 0 through 9
707[:cntrl:] matches ASCII control characters
708[:xdigit:] matches 0 through 9, a through f and A through F.
709[:blank:] matches space and tab only
710[:graph:] matches graphic characters--everything except ASCII control chars,
711 space, and DEL.
712[:print:] matches printing characters--everything except ASCII control chars
713 and DEL.
714[:alnum:] matches letters and digits.
715 (But at present, for multibyte characters,
716 it matches anything that has word syntax.)
717[:alpha:] matches letters.
718 (But at present, for multibyte characters,
719 it matches anything that has word syntax.)
720[:ascii:] matches ASCII (unibyte) characters.
721[:nonascii:] matches non-ASCII (multibyte) characters.
722[:lower:] matches anything lower-case.
723[:punct:] matches punctuation.
724 (But at present, for multibyte characters,
725 it matches anything that has non-word syntax.)
726[:space:] matches anything that has whitespace syntax.
727[:upper:] matches anything upper-case.
728[:word:] matches anything that has word syntax.
729
730+++
731** Emacs now has built-in hash tables.
732
733The following functions are defined for hash tables:
734
735- Function: make-hash-table ARGS
736
737The argument list ARGS consists of keyword/argument pairs. All arguments
738are optional. The following arguments are defined:
739
740:test TEST
741
742TEST must be a symbol specifying how to compare keys. Default is `eql'.
743Predefined are `eq', `eql' and `equal'. If TEST is not predefined,
744it must have been defined with `define-hash-table-test'.
745
746:size SIZE
747
748SIZE must be an integer > 0 giving a hint to the implementation how
749many elements will be put in the hash table. Default size is 65.
750
751:rehash-size REHASH-SIZE
752
753REHASH-SIZE specifies by how much to grow a hash table once it becomes
754full. If REHASH-SIZE is an integer, add that to the hash table's old
755size to get the new size. Otherwise, REHASH-SIZE must be a float >
7561.0, and the new size is computed by multiplying REHASH-SIZE with the
757old size. Default rehash size is 1.5.
758
759:rehash-threshold THRESHOLD
760
761THRESHOLD must be a float > 0 and <= 1.0 specifying when to resize the
762hash table. It is resized when the ratio of (number of entries) /
763(size of hash table) is >= THRESHOLD. Default threshold is 0.8.
764
765:weakness WEAK
766
767WEAK must be either nil, one of the symbols `key, `value', or t.
768Entries are removed from weak tables during garbage collection if
769their key and/or value are not referenced elsewhere outside of the
770hash table. Default are non-weak hash tables.
771
772- Function: makehash &optional TEST
773
774Similar to make-hash-table, but only TEST can be specified.
775
776- Function: hash-table-p TABLE
777
778Returns non-nil if TABLE is a hash table object.
779
780- Function: copy-hash-table TABLE
781
782Returns a copy of TABLE. Only the table itself is copied, keys and
783values are shared.
784
785- Function: hash-table-count TABLE
786
787Returns the number of entries in TABLE.
788
789- Function: hash-table-rehash-size TABLE
790
791Returns the rehash size of TABLE.
792
793- Function: hash-table-rehash-threshold TABLE
794
795Returns the rehash threshold of TABLE.
796
797- Function: hash-table-rehash-size TABLE
798
799Returns the size of TABLE.
800
801- Function: hash-table-rehash-test TABLE
802
803Returns the test TABLE uses to compare keys.
804
805- Function: hash-table-weakness TABLE
806
807Returns the weakness specified for TABLE.
808
809- Function: clrhash TABLE
810
811Clear TABLE.
812
813- Function: gethash KEY TABLE &optional DEFAULT
814
815Look up KEY in TABLE and return its associated VALUE or DEFAULT if
816not found.
817
79214ddf 818- Function: puthash KEY VALUE TABLE
a933dad1
DL
819
820Associate KEY with VALUE in TABLE. If KEY is already associated with
821another value, replace the old value with VALUE.
822
823- Function: remhash KEY TABLE
824
825Remove KEY from TABLE if it is there.
826
827- Function: maphash FUNCTION TABLE
828
829Call FUNCTION for all elements in TABLE. FUNCTION must take two
830arguments KEY and VALUE.
831
832- Function: sxhash OBJ
833
834Return a hash code for Lisp object OBJ.
835
836- Function: define-hash-table-test NAME TEST-FN HASH-FN
837
838Define a new hash table test named NAME. If NAME is specified as
839a test in `make-hash-table', the table created will use TEST-FN for
79214ddf 840comparing keys, and HASH-FN to compute hash codes for keys. Test
a933dad1
DL
841and hash function are stored as symbol property `hash-table-test'
842of NAME with a value of (TEST-FN HASH-FN).
843
844TEST-FN must take two arguments and return non-nil if they are the same.
845
846HASH-FN must take one argument and return an integer that is the hash
847code of the argument. The function should use the whole range of
848integer values for hash code computation, including negative integers.
849
850Example: The following creates a hash table whose keys are supposed to
851be strings that are compared case-insensitively.
852
853 (defun case-fold-string= (a b)
854 (compare-strings a nil nil b nil nil t))
855
856 (defun case-fold-string-hash (a)
857 (sxhash (upcase a)))
858
79214ddf 859 (define-hash-table-test 'case-fold 'case-fold-string=
a933dad1
DL
860 'case-fold-string-hash))
861
862 (make-hash-table :test 'case-fold)
863
864+++
865** The Lisp reader handles circular structure.
866
867It now works to use the #N= and #N# constructs to represent
868circular structures. For example, #1=(a . #1#) represents
869a cons cell which is its own cdr.
870
871+++
872** The Lisp printer handles circular structure.
873
874If you bind print-circle to a non-nil value, the Lisp printer outputs
875#N= and #N# constructs to represent circular and shared structure.
876
a933dad1
DL
877+++
878** If the second argument to `move-to-column' is anything but nil or
879t, that means replace a tab with spaces if necessary to reach the
880specified column, but do not add spaces at the end of the line if it
881is too short to reach that column.
882
883+++
884** perform-replace has a new feature: the REPLACEMENTS argument may
885now be a cons cell (FUNCTION . DATA). This means to call FUNCTION
886after each match to get the replacement text. FUNCTION is called with
887two arguments: DATA, and the number of replacements already made.
888
889If the FROM-STRING contains any upper-case letters,
890perform-replace also turns off `case-fold-search' temporarily
891and inserts the replacement text without altering case in it.
892
893+++
894** The function buffer-size now accepts an optional argument
895to specify which buffer to return the size of.
896
897+++
898** The calendar motion commands now run the normal hook
899calendar-move-hook after moving point.
900
901+++
902** The new variable small-temporary-file-directory specifies a
903directory to use for creating temporary files that are likely to be
904small. (Certain Emacs features use this directory.) If
905small-temporary-file-directory is nil, they use
906temporary-file-directory instead.
907
908+++
909** The variable `inhibit-modification-hooks', if non-nil, inhibits all
910the hooks that track changes in the buffer. This affects
911`before-change-functions' and `after-change-functions', as well as
912hooks attached to text properties and overlay properties.
913
914+++
915** assoc-delete-all is a new function that deletes all the
916elements of an alist which have a particular value as the car.
917
918+++
919** make-temp-file provides a more reliable way to create a temporary file.
920
921make-temp-file is used like make-temp-name, except that it actually
922creates the file before it returns. This prevents a timing error,
923ensuring that no other job can use the same name for a temporary file.
924
925+++
926** New exclusive-open feature in `write-region'
927
928The optional seventh arg is now called MUSTBENEW. If non-nil, it insists
929on a check for an existing file with the same name. If MUSTBENEW
930is `excl', that means to get an error if the file already exists;
931never overwrite. If MUSTBENEW is neither nil nor `excl', that means
932ask for confirmation before overwriting, but do go ahead and
933overwrite the file if the user gives confirmation.
934
935If the MUSTBENEW argument in `write-region' is `excl',
936that means to use a special feature in the `open' system call
937to get an error if the file exists at that time.
938The error reported is `file-already-exists'.
939
940+++
941** Function `format' now handles text properties.
942
943Text properties of the format string are applied to the result string.
944If the result string is longer than the format string, text properties
945ending at the end of the format string are extended to the end of the
946result string.
947
948Text properties from string arguments are applied to the result
949string where arguments appear in the result string.
950
951Example:
952
953 (let ((s1 "hello, %s")
954 (s2 "world"))
955 (put-text-property 0 (length s1) 'face 'bold s1)
956 (put-text-property 0 (length s2) 'face 'italic s2)
b246b1f6 957 (format s1 s2))
a933dad1
DL
958
959results in a bold-face string with an italic `world' at the end.
960
961+++
962** Messages can now be displayed with text properties.
963
964Text properties are handled as described above for function `format'.
965The following example displays a bold-face message with an italic
966argument in it.
967
968 (let ((msg "hello, %s!")
969 (arg "world"))
970 (put-text-property 0 (length msg) 'face 'bold msg)
971 (put-text-property 0 (length arg) 'face 'italic arg)
972 (message msg arg))
973
974+++
975** Sound support
976
977Emacs supports playing sound files on GNU/Linux and the free BSDs
978(Voxware driver and native BSD driver, aka as Luigi's driver).
979
980Currently supported file formats are RIFF-WAVE (*.wav) and Sun Audio
981(*.au). You must configure Emacs with the option `--with-sound=yes'
982to enable sound support.
983
984Sound files can be played by calling (play-sound SOUND). SOUND is a
985list of the form `(sound PROPERTY...)'. The function is only defined
986when sound support is present for the system on which Emacs runs. The
987functions runs `play-sound-functions' with one argument which is the
988sound to play, before playing the sound.
989
990The following sound properties are supported:
991
992- `:file FILE'
993
994FILE is a file name. If FILE isn't an absolute name, it will be
995searched relative to `data-directory'.
996
997- `:volume VOLUME'
998
999VOLUME must be an integer in the range 0..100 or a float in the range
10000..1. This property is optional.
1001
1002Other properties are ignored.
1003
1004** `multimedia' is a new Finder keyword and Custom group.
1005\f
1006* New Lisp-level Display features in Emacs 21.1
1007
1008Note that +++ before an item means the Lisp manual has been updated.
1009--- means that I have decided it does not need to be in the Lisp manual.
1010When you add a new item, please add it without either +++ or ---
1011so I will know I still need to look at it -- rms.
1012
1013** New face implementation.
1014
1015Emacs faces have been reimplemented from scratch. They don't use XLFD
1016font names anymore and face merging now works as expected.
1017
1018+++
1019*** New faces.
1020
1021Each face can specify the following display attributes:
1022
1023 1. Font family or fontset alias name.
79214ddf 1024
a933dad1
DL
1025 2. Relative proportionate width, aka character set width or set
1026 width (swidth), e.g. `semi-compressed'.
79214ddf 1027
a933dad1 1028 3. Font height in 1/10pt
79214ddf 1029
a933dad1 1030 4. Font weight, e.g. `bold'.
79214ddf 1031
a933dad1 1032 5. Font slant, e.g. `italic'.
79214ddf 1033
a933dad1 1034 6. Foreground color.
79214ddf 1035
a933dad1
DL
1036 7. Background color.
1037
1038 8. Whether or not characters should be underlined, and in what color.
1039
1040 9. Whether or not characters should be displayed in inverse video.
1041
1042 10. A background stipple, a bitmap.
1043
1044 11. Whether or not characters should be overlined, and in what color.
1045
1046 12. Whether or not characters should be strike-through, and in what
1047 color.
1048
1049 13. Whether or not a box should be drawn around characters, its
1050 color, the width of the box lines, and 3D appearance.
1051
1052Faces are frame-local by nature because Emacs allows to define the
1053same named face (face names are symbols) differently for different
1054frames. Each frame has an alist of face definitions for all named
1055faces. The value of a named face in such an alist is a Lisp vector
1056with the symbol `face' in slot 0, and a slot for each each of the face
1057attributes mentioned above.
1058
1059There is also a global face alist `face-new-frame-defaults'. Face
1060definitions from this list are used to initialize faces of newly
1061created frames.
79214ddf 1062
a933dad1
DL
1063A face doesn't have to specify all attributes. Those not specified
1064have a nil value. Faces specifying all attributes are called
1065`fully-specified'.
1066
1067+++
1068*** Face merging.
1069
1070The display style of a given character in the text is determined by
1071combining several faces. This process is called `face merging'. Any
1072aspect of the display style that isn't specified by overlays or text
1073properties is taken from the `default' face. Since it is made sure
1074that the default face is always fully-specified, face merging always
1075results in a fully-specified face.
1076
1077+++
1078*** Face realization.
1079
1080After all face attributes for a character have been determined by
1081merging faces of that character, that face is `realized'. The
1082realization process maps face attributes to what is physically
1083available on the system where Emacs runs. The result is a `realized
1084face' in form of an internal structure which is stored in the face
1085cache of the frame on which it was realized.
1086
1087Face realization is done in the context of the charset of the
1088character to display because different fonts and encodings are used
1089for different charsets. In other words, for characters of different
1090charsets, different realized faces are needed to display them.
1091
1092Except for composite characters, faces are always realized for a
1093specific character set and contain a specific font, even if the face
1094being realized specifies a fontset. The reason is that the result of
1095the new font selection stage is better than what can be done with
1096statically defined font name patterns in fontsets.
1097
1098In unibyte text, Emacs' charsets aren't applicable; function
1099`char-charset' reports ASCII for all characters, including those >
11000x7f. The X registry and encoding of fonts to use is determined from
1101the variable `face-default-registry' in this case. The variable is
1102initialized at Emacs startup time from the font the user specified for
1103Emacs.
1104
1105Currently all unibyte text, i.e. all buffers with
1106`enable-multibyte-characters' nil are displayed with fonts of the same
1107registry and encoding `face-default-registry'. This is consistent
1108with the fact that languages can also be set globally, only.
1109
1110++++
1111**** Clearing face caches.
1112
1113The Lisp function `clear-face-cache' can be called to clear face caches
1114on all frames. If called with a non-nil argument, it will also unload
1115unused fonts.
1116
1117+++
1118*** Font selection.
79214ddf 1119
a933dad1
DL
1120Font selection tries to find the best available matching font for a
1121given (charset, face) combination. This is done slightly differently
1122for faces specifying a fontset, or a font family name.
1123
1124If the face specifies a fontset name, that fontset determines a
1125pattern for fonts of the given charset. If the face specifies a font
1126family, a font pattern is constructed. Charset symbols have a
1127property `x-charset-registry' for that purpose that maps a charset to
1128an XLFD registry and encoding in the font pattern constructed.
1129
1130Available fonts on the system on which Emacs runs are then matched
1131against the font pattern. The result of font selection is the best
1132match for the given face attributes in this font list.
1133
1134Font selection can be influenced by the user.
1135
1136The user can specify the relative importance he gives the face
1137attributes width, height, weight, and slant by setting
1138face-font-selection-order (faces.el) to a list of face attribute
1139names. The default is (:width :height :weight :slant), and means
1140that font selection first tries to find a good match for the font
1141width specified by a face, then---within fonts with that width---tries
1142to find a best match for the specified font height, etc.
1143
1144Setting `face-alternative-font-family-alist' allows the user to
1145specify alternative font families to try if a family specified by a
1146face doesn't exist.
1147
1148+++
1149**** Scalable fonts
1150
1151Emacs can make use of scalable fonts but doesn't do so by default,
1152since the use of too many or too big scalable fonts may crash XFree86
1153servers.
1154
1155To enable scalable font use, set the variable
b246b1f6 1156`scalable-fonts-allowed'. A value of nil, the default, means never use
a933dad1
DL
1157scalable fonts. A value of t means any scalable font may be used.
1158Otherwise, the value must be a list of regular expressions. A
1159scalable font may then be used if it matches a regular expression from
1160that list. Example:
1161
1162 (setq scalable-fonts-allowed '("muleindian-2$"))
1163
1164allows the use of scalable fonts with registry `muleindian-2'.
1165
1166+++
1167*** Functions and variables related to font selection.
1168
1169- Function: x-family-fonts &optional FAMILY FRAME
1170
1171Return a list of available fonts of family FAMILY on FRAME. If FAMILY
1172is omitted or nil, list all families. Otherwise, FAMILY must be a
1173string, possibly containing wildcards `?' and `*'.
1174
1175If FRAME is omitted or nil, use the selected frame. Each element of
1176the result is a vector [FAMILY WIDTH POINT-SIZE WEIGHT SLANT FIXED-P
1177FULL REGISTRY-AND-ENCODING]. FAMILY is the font family name.
1178POINT-SIZE is the size of the font in 1/10 pt. WIDTH, WEIGHT, and
1179SLANT are symbols describing the width, weight and slant of the font.
1180These symbols are the same as for face attributes. FIXED-P is non-nil
1181if the font is fixed-pitch. FULL is the full name of the font, and
1182REGISTRY-AND-ENCODING is a string giving the registry and encoding of
1183the font. The result list is sorted according to the current setting
1184of the face font sort order.
1185
79214ddf 1186- Function: x-font-family-list
a933dad1
DL
1187
1188Return a list of available font families on FRAME. If FRAME is
1189omitted or nil, use the selected frame. Value is a list of conses
1190(FAMILY . FIXED-P) where FAMILY is a font family, and FIXED-P is
1191non-nil if fonts of that family are fixed-pitch.
1192
1193- Variable: font-list-limit
1194
1195Limit for font matching. If an integer > 0, font matching functions
1196won't load more than that number of fonts when searching for a
1197matching font. The default is currently 100.
1198
1199+++
1200*** Setting face attributes.
1201
1202For the most part, the new face implementation is interface-compatible
1203with the old one. Old face attribute related functions are now
1204implemented in terms of the new functions `set-face-attribute' and
1205`face-attribute'.
1206
1207Face attributes are identified by their names which are keyword
1208symbols. All attributes can be set to `unspecified'.
1209
1210The following attributes are recognized:
1211
1212`:family'
1213
1214VALUE must be a string specifying the font family, e.g. ``courier'',
1215or a fontset alias name. If a font family is specified, wild-cards `*'
1216and `?' are allowed.
1217
1218`:width'
1219
1220VALUE specifies the relative proportionate width of the font to use.
1221It must be one of the symbols `ultra-condensed', `extra-condensed',
1222`condensed', `semi-condensed', `normal', `semi-expanded', `expanded',
1223`extra-expanded', or `ultra-expanded'.
1224
1225`:height'
1226
1227VALUE must be an integer specifying the height of the font to use in
12281/10 pt.
1229
1230`:weight'
1231
1232VALUE specifies the weight of the font to use. It must be one of the
1233symbols `ultra-bold', `extra-bold', `bold', `semi-bold', `normal',
1234`semi-light', `light', `extra-light', `ultra-light'.
1235
1236`:slant'
1237
1238VALUE specifies the slant of the font to use. It must be one of the
1239symbols `italic', `oblique', `normal', `reverse-italic', or
1240`reverse-oblique'.
1241
1242`:foreground', `:background'
1243
1244VALUE must be a color name, a string.
1245
1246`:underline'
1247
1248VALUE specifies whether characters in FACE should be underlined. If
1249VALUE is t, underline with foreground color of the face. If VALUE is
1250a string, underline with that color. If VALUE is nil, explicitly
1251don't underline.
1252
1253`:overline'
1254
1255VALUE specifies whether characters in FACE should be overlined. If
1256VALUE is t, overline with foreground color of the face. If VALUE is a
1257string, overline with that color. If VALUE is nil, explicitly don't
1258overline.
1259
1260`:strike-through'
1261
1262VALUE specifies whether characters in FACE should be drawn with a line
1263striking through them. If VALUE is t, use the foreground color of the
1264face. If VALUE is a string, strike-through with that color. If VALUE
1265is nil, explicitly don't strike through.
1266
1267`:box'
1268
1269VALUE specifies whether characters in FACE should have a box drawn
1270around them. If VALUE is nil, explicitly don't draw boxes. If
1271VALUE is t, draw a box with lines of width 1 in the foreground color
1272of the face. If VALUE is a string, the string must be a color name,
1273and the box is drawn in that color with a line width of 1. Otherwise,
1274VALUE must be a property list of the form `(:line-width WIDTH
1275:color COLOR :style STYLE)'. If a keyword/value pair is missing from
1276the property list, a default value will be used for the value, as
1277specified below. WIDTH specifies the width of the lines to draw; it
1278defaults to 1. COLOR is the name of the color to draw in, default is
1279the foreground color of the face for simple boxes, and the background
1280color of the face for 3D boxes. STYLE specifies whether a 3D box
1281should be draw. If STYLE is `released-button', draw a box looking
1282like a released 3D button. If STYLE is `pressed-button' draw a box
1283that appears like a pressed button. If STYLE is nil, the default if
1284the property list doesn't contain a style specification, draw a 2D
1285box.
1286
1287`:inverse-video'
1288
1289VALUE specifies whether characters in FACE should be displayed in
1290inverse video. VALUE must be one of t or nil.
1291
1292`:stipple'
1293
1294If VALUE is a string, it must be the name of a file of pixmap data.
1295The directories listed in the `x-bitmap-file-path' variable are
1296searched. Alternatively, VALUE may be a list of the form (WIDTH
1297HEIGHT DATA) where WIDTH and HEIGHT are the size in pixels, and DATA
1298is a string containing the raw bits of the bitmap. VALUE nil means
1299explicitly don't use a stipple pattern.
1300
1301For convenience, attributes `:family', `:width', `:height', `:weight',
1302and `:slant' may also be set in one step from an X font name:
1303
1304`:font'
1305
1306Set font-related face attributes from VALUE. VALUE must be a valid
1307XLFD font name. If it is a font name pattern, the first matching font
1308is used--this is for compatibility with the behavior of previous
1309versions of Emacs.
1310
1311For compatibility with Emacs 20, keywords `:bold' and `:italic' can
1312be used to specify that a bold or italic font should be used. VALUE
1313must be t or nil in that case. A value of `unspecified' is not allowed."
1314
1315Please see also the documentation of `set-face-attribute' and
1316`defface'.
1317
1318*** Face attributes and X resources
1319
1320The following X resource names can be used to set face attributes
1321from X resources:
1322
1323 Face attribute X resource class
1324-----------------------------------------------------------------------
1325 :family attributeFamily . Face.AttributeFamily
1326 :width attributeWidth Face.AttributeWidth
1327 :height attributeHeight Face.AttributeHeight
1328 :weight attributeWeight Face.AttributeWeight
1329 :slant attributeSlant Face.AttributeSlant
1330 foreground attributeForeground Face.AttributeForeground
1331 :background attributeBackground . Face.AttributeBackground
1332 :overline attributeOverline Face.AttributeOverline
1333 :strike-through attributeStrikeThrough Face.AttributeStrikeThrough
1334 :box attributeBox Face.AttributeBox
1335 :underline attributeUnderline Face.AttributeUnderline
1336 :inverse-video attributeInverse Face.AttributeInverse
1337 :stipple attributeStipple Face.AttributeStipple
79214ddf 1338 or attributeBackgroundPixmap
a933dad1
DL
1339 Face.AttributeBackgroundPixmap
1340 :font attributeFont Face.AttributeFont
1341 :bold attributeBold Face.AttributeBold
1342 :italic attributeItalic . Face.AttributeItalic
1343 :font attributeFont Face.AttributeFont
1344
1345+++
1346*** Text property `face'.
1347
1348The value of the `face' text property can now be a single face
1349specification or a list of such specifications. Each face
1350specification can be
1351
13521. A symbol or string naming a Lisp face.
1353
13542. A property list of the form (KEYWORD VALUE ...) where each
1355 KEYWORD is a face attribute name, and VALUE is an appropriate value
1356 for that attribute. Please see the doc string of `set-face-attribute'
1357 for face attribute names.
1358
13593. Conses of the form (FOREGROUND-COLOR . COLOR) or
1360 (BACKGROUND-COLOR . COLOR) where COLOR is a color name. This is
1361 for compatibility with previous Emacs versions.
1362
1363+++
1364** Support functions for colors on text-only terminals.
1365
1366The function `face-register-tty-color' can be used to define colors
1367for use on TTY frames. It maps a color name to a color number on the
1368terminal. Emacs defines a couple of default color mappings by
1369default. You can get defined colors with a call to
1370`tty-defined-colors'. The function `face-clear-tty-colors' can be
1371used to clear the mapping table.
1372
1373+++
1374** The minibuffer prompt is now actually inserted in the minibuffer.
a933dad1 1375
463cac2d 1376This makes it possible to scroll through the prompt, if you want to.
a933dad1
DL
1377
1378The function minubuffer-prompt-end returns the current position of the
1379end of the minibuffer prompt, if the minibuffer is current.
1380Otherwise, it returns zero.
1381
463cac2d
GM
1382** New `field' abstraction in buffers.
1383
1384There is now code to support an abstraction called `fields' in emacs
1385buffers. A field is a contiguous region of text with the same `field'
1386text-property.
1387
9a9dfda8 1388Many emacs functions, such as forward-word, forward-sentence,
463cac2d 1389forward-paragraph, beginning-of-line, etc., stop moving when they come
9a9dfda8 1390to the boundary between fields; beginning-of-line and end-of-line will
463cac2d 1391not let the point move past the field boundary, but other movement
9a9dfda8 1392commands continue into the next field if repeated.
463cac2d
GM
1393
1394Now that the minibuffer prompt is inserted into the minibuffer, it is in
9a9dfda8 1395a separate field from the user-input part of the buffer, so that common
463cac2d 1396editing commands treat the user's text separately from the prompt.
a933dad1 1397
9a9dfda8
GM
1398The following functions are defined for operating on fields:
1399
1400- Function: constrain-to-field NEW-POS OLD-POS &optional ESCAPE-FROM-EDGE ONLY-IN-LINE
1401
1402Return the position closest to NEW-POS that is in the same field as OLD-POS.
1403A field is a region of text with the same `field' property.
1404If NEW-POS is nil, then the current point is used instead, and set to the
1405constrained position if that is is different.
1406
1407If OLD-POS is at the boundary of two fields, then the allowable
1408positions for NEW-POS depends on the value of the optional argument
1409ESCAPE-FROM-EDGE: If ESCAPE-FROM-EDGE is nil, then NEW-POS is
1410constrained to the field that has the same `field' text-property
1411as any new characters inserted at OLD-POS, whereas if ESCAPE-FROM-EDGE
1412is non-nil, NEW-POS is constrained to the union of the two adjacent
1413fields.
1414
1415If the optional argument ONLY-IN-LINE is non-nil and constraining
1416NEW-POS would move it to a different line, NEW-POS is returned
1417unconstrained. This useful for commands that move by line, like
1418C-n or C-a, which should generally respect field boundaries
1419only in the case where they can still move to the right line.
1420
1421- Function: erase-field &optional POS
1422
1423Erases the field surrounding POS.
1424A field is a region of text with the same `field' property.
1425If POS is nil, the position of the current buffer's point is used.
1426
1427- Function: field-beginning &optional POS ESCAPE-FROM-EDGE
1428
1429Return the beginning of the field surrounding POS.
1430A field is a region of text with the same `field' property.
1431If POS is nil, the position of the current buffer's point is used.
1432If ESCAPE-FROM-EDGE is non-nil and POS is already at beginning of an
1433field, then the beginning of the *previous* field is returned.
1434
1435- Function: field-end &optional POS ESCAPE-FROM-EDGE
1436
1437Return the end of the field surrounding POS.
1438A field is a region of text with the same `field' property.
1439If POS is nil, the position of the current buffer's point is used.
1440If ESCAPE-FROM-EDGE is non-nil and POS is already at end of a field,
1441then the end of the *following* field is returned.
1442
1443- Function: field-string &optional POS
1444
1445Return the contents of the field surrounding POS as a string.
1446A field is a region of text with the same `field' property.
1447If POS is nil, the position of the current buffer's point is used.
1448
1449- Function: field-string-no-properties &optional POS
1450
1451Return the contents of the field around POS, without text-properties.
1452A field is a region of text with the same `field' property.
1453If POS is nil, the position of the current buffer's point is used.
1454
a933dad1
DL
1455+++
1456** Image support.
1457
1458Emacs can now display images. Images are inserted into text by giving
1459strings or buffer text a `display' text property containing one of
1460(AREA IMAGE) or IMAGE. The display of the `display' property value
1461replaces the display of the characters having that property.
1462
1463If the property value has the form (AREA IMAGE), AREA must be one of
1464`(margin left-margin)', `(margin right-margin)' or `(margin nil)'. If
1465AREA is `(margin nil)', IMAGE will be displayed in the text area of a
1466window, otherwise it will be displayed in the left or right marginal
1467area.
1468
1469IMAGE is an image specification.
1470
1471*** Image specifications
1472
1473Image specifications are lists of the form `(image PROPS)' where PROPS
1474is a property list whose keys are keyword symbols. Each
1475specifications must contain a property `:type TYPE' with TYPE being a
35a5514b
GM
1476symbol specifying the image type, e.g. `xbm'. Properties not
1477described below are ignored.
a933dad1
DL
1478
1479The following is a list of properties all image types share.
1480
1481`:ascent ASCENT'
1482
1483ASCENT must be a number in the range 0..100, and specifies the percentage
1484of the image's height to use for its ascent. Default is 50.
1485
1486`:margin MARGIN'
1487
79214ddf 1488MARGIN must be a number >= 0 specifying how many pixels to put as
a933dad1
DL
1489margin around the image. Default is 0.
1490
1491`:relief RELIEF'
1492
1493RELIEF is analogous to the `:relief' attribute of faces. Puts a relief
1494around an image.
1495
1496`:algorithm ALGO'
1497
1498Apply an image algorithm to the image before displaying it. ALGO must
1499be a symbol specifying the algorithm. Currently only `laplace' is
1500supported which applies a Laplace edge detection algorithm to an image
1501which is intended to display images "disabled."
1502
1503`:heuristic-mask BG'
1504
1505If BG is not nil, build a clipping mask for the image, so that the
1506background of a frame is visible behind the image. If BG is t,
1507determine the background color of the image by looking at the 4
1508corners of the image, assuming the most frequently occuring color from
1509the corners is the background color of the image. Otherwise, BG must
1510be a list `(RED GREEN BLUE)' specifying the color to assume for the
1511background of the image.
1512
1513`:file FILE'
1514
1515Load image from FILE. If FILE is not absolute after expanding it,
1516search for the image in `data-directory'. Some image types support
1517building images from data. When this is done, no `:file' property
1518may be present in the image specification.
1519
a933dad1
DL
1520*** Supported image types
1521
b246b1f6 1522**** XBM, image type `xbm'.
a933dad1
DL
1523
1524XBM images don't require an external library. Additional image
1525properties supported are
1526
1527`:foreground FG'
1528
1529FG must be a string specifying the image foreground color. Default
1530is the frame's foreground.
1531
1532`:background FG'
1533
1534BG must be a string specifying the image foreground color. Default is
1535the frame's background color.
1536
1537XBM images can be constructed from data instead of file. In this
1538case, the image specification must contain the following properties
1539instead of a `:file' property.
1540
1541`:width WIDTH'
1542
1543WIDTH specifies the width of the image in pixels.
1544
1545`:height HEIGHT'
1546
1547HEIGHT specifies the height of the image in pixels.
1548
1549`:data DATA'
1550
1551DATA must be either
1552
1553 1. a string large enough to hold the bitmap data, i.e. it must
1554 have a size >= (WIDTH + 7) / 8 * HEIGHT
1555
1556 2. a bool-vector of size >= WIDTH * HEIGHT
1557
1558 3. a vector of strings or bool-vectors, one for each line of the
1559 bitmap.
1560
1561**** XPM, image type `xpm'
1562
1563XPM images require the external library `libXpm', package
1564`xpm-3.4k.tar.gz', version 3.4k or later. Make sure the library is
1565found when Emacs is configured by supplying appropriate paths via
1566`--x-includes' and `--x-libraries'.
1567
1568Additional image properties supported are:
1569
1570`:color-symbols SYMBOLS'
1571
1572SYMBOLS must be a list of pairs (NAME . COLOR), with NAME being the
1573name of color as it appears in an XPM file, and COLOR being an X color
1574name.
1575
1576XPM images can be built from memory instead of files. In that case,
1577add a `:data' property instead of a `:file' property.
1578
1579`:data DATA'
1580
79214ddf 1581DATA must be a string containing an XPM image. The contents of the
a933dad1
DL
1582string are of the same format as that of XPM files.
1583
1584The XPM library uses libz in its implementation so that it is able
1585to display compressed images.
1586
1587**** PBM, image type `pbm'
1588
1589PBM images don't require an external library. Color, gray-scale and
1590mono images are supported. There are no additional image properties
1591defined.
1592
1593**** JPEG, image type `jpeg'
1594
1595Support for JPEG images requires the external library `libjpeg',
1596package `jpegsrc.v6a.tar.gz', or later. There are no additional image
1597properties defined.
1598
1599**** TIFF, image type `tiff'
1600
1601Support for TIFF images requires the external library `libtiff',
1602package `tiff-v3.4-tar.gz', or later. There are no additional image
1603properties defined.
1604
1605**** GIF, image type `gif'
1606
1607Support for GIF images requires the external library `libungif', package
1608`libungif-4.1.0', or later.
1609
1610Additional image properties supported are:
1611
1612`:index INDEX'
1613
1614INDEX must be an integer >= 0. Load image number INDEX from a
1615multi-image GIF file. An error is signalled if INDEX is too large.
1616
1617This could be used to implement limited support for animated GIFs.
1618For example, the following function displays a multi-image GIF file
1619at point-min in the current buffer, switching between sub-images
1620every 0.1 seconds.
1621
1622(defun show-anim (file max)
1623 "Display multi-image GIF file FILE which contains MAX subimages."
1624 (display-anim (current-buffer) file 0 max t))
1625
1626(defun display-anim (buffer file idx max first-time)
1627 (when (= idx max)
1628 (setq idx 0))
1629 (let ((img (create-image file nil :index idx)))
1630 (save-excursion
1631 (set-buffer buffer)
1632 (goto-char (point-min))
1633 (unless first-time (delete-char 1))
1634 (insert-image img "x"))
1635 (run-with-timer 0.1 nil 'display-anim buffer file (1+ idx) max nil)))
1636
1637**** PNG, image type `png'
1638
1639Support for PNG images requires the external library `libpng',
1640package `libpng-1.0.2.tar.gz', or later. There are no additional image
1641properties defined.
1642
1643**** Ghostscript, image type `postscript'.
1644
1645Additional image properties supported are:
1646
1647`:pt-width WIDTH'
1648
1649WIDTH is width of the image in pt (1/72 inch). WIDTH must be an
b246b1f6 1650integer. This is a required property.
a933dad1
DL
1651
1652`:pt-height HEIGHT'
1653
1654HEIGHT specifies the height of the image in pt (1/72 inch). HEIGHT
b246b1f6 1655must be a integer. This is an required property.
a933dad1
DL
1656
1657`:bounding-box BOX'
1658
1659BOX must be a list or vector of 4 integers giving the bounding box of
1660the PS image, analogous to the `BoundingBox' comment found in PS
1661files. This is an required property.
1662
1663Part of the Ghostscript interface is implemented in Lisp. See
1664lisp/gs.el.
1665
1666*** Lisp interface.
1667
79214ddf
FP
1668The variable `image-types' contains a list of those image types
1669which are supported in the current configuration.
a933dad1
DL
1670
1671Images are stored in an image cache and removed from the cache when
1672they haven't been displayed for `image-cache-eviction-delay seconds.
1673The function `clear-image-cache' can be used to clear the image cache
1674manually.
1675
1676*** Simplified image API, image.el
1677
1678The new Lisp package image.el contains functions that simplify image
1679creation and putting images into text. The function `create-image'
1680can be used to create images. The macro `defimage' can be used to
1681define an image based on available image types. The functions
1682`put-image' and `insert-image' can be used to insert an image into a
1683buffer.
1684
1685+++
1686** Display margins.
1687
1688Windows can now have margins which are used for special text
1689and images.
1690
1691To give a window margins, either set the buffer-local variables
1692`left-margin-width' and `right-margin-width', or call
1693`set-window-margins'. The function `window-margins' can be used to
1694obtain the current settings. To make `left-margin-width' and
1695`right-margin-width' take effect, you must set them before displaying
1696the buffer in a window, or use `set-window-buffer' to force an update
1697of the display margins.
1698
1699You can put text in margins by giving it a `display' text property
1700containing a pair of the form `(LOCATION . VALUE)', where LOCATION is
1701one of `left-margin' or `right-margin' or nil. VALUE can be either a
1702string, an image specification or a stretch specification (see later
1703in this file).
1704
1705+++
1706** Help display
1707
1708Emacs displays short help messages in the echo area, when the mouse
1709moves over a tool-bar item or a piece of text that has a text property
1710`help-echo'. This feature also applies to strings in the mode line
1711that have a `help-echo' property.
1712
1713The value of the `help-echo' property must be a string. For tool-bar
1714items, their key definition is used to determine the help to display.
1715If their definition contains a property `:help FORM', FORM is
1716evaluated to determine the help string. Otherwise, the caption of the
1717tool-bar item is used.
1718
1719The hook `show-help-function' can be set to a function that displays
1720help differently. For example, enabling a tooltip window causes the
1721help display to appear there instead of in the echo area.
1722
1723+++
1724** Vertical fractional scrolling.
1725
1726The display of text in windows can be scrolled smoothly in pixels.
1727This is useful, for example, for making parts of large images visible.
1728
1729The function `window-vscroll' returns the current value of vertical
1730scrolling, a non-negative fraction of the canonical character height.
1731The function `set-window-vscroll' can be used to set the vertical
1732scrolling value. Here is an example of how these function might be
1733used.
1734
79214ddf
FP
1735 (global-set-key [A-down]
1736 #'(lambda ()
a933dad1 1737 (interactive)
79214ddf 1738 (set-window-vscroll (selected-window)
a933dad1 1739 (+ 0.5 (window-vscroll)))))
79214ddf 1740 (global-set-key [A-up]
a933dad1
DL
1741 #'(lambda ()
1742 (interactive)
79214ddf 1743 (set-window-vscroll (selected-window)
a933dad1
DL
1744 (- (window-vscroll) 0.5)))))
1745
1746+++
1747** New hook `fontification-functions'.
1748
1749Functions from `fontification-functions' are called from redisplay
1750when it encounters a region of text that is not yet fontified. This
1751variable automatically becomes buffer-local when set. Each function
1752is called with one argument, POS.
1753
1754At least one of the hook functions should fontify one or more
1755characters starting at POS in the current buffer. It should mark them
1756as fontified by giving them a non-nil value of the `fontified' text
1757property. It may be reasonable for these functions to check for the
1758`fontified' property and not put it back on, but they do not have to.
1759
1760+++
1761** Tool bar support.
1762
1763Emacs supports a tool bar at the top of a frame under X. The frame
1764parameter `tool-bar-lines' (X resource "toolBar", class "ToolBar")
1765controls how may lines to reserve for the tool bar. A zero value
1766suppresses the tool bar. If the value is non-zero and
1767`auto-resize-tool-bars' is non-nil the tool bar's size will be changed
1768automatically so that all tool bar items are visible.
1769
1770*** Tool bar item definitions
1771
1772Tool bar items are defined using `define-key' with a prefix-key
1773`tool-bar'. For example `(define-key global-map [tool-bar item1] ITEM)'
1774where ITEM is a list `(menu-item CAPTION BINDING PROPS...)'.
79214ddf 1775
a933dad1
DL
1776CAPTION is the caption of the item, If it's not a string, it is
1777evaluated to get a string. The caption is currently not displayed in
1778the tool bar, but it is displayed if the item doesn't have a `:help'
1779property (see below).
79214ddf 1780
a933dad1
DL
1781BINDING is the tool bar item's binding. Tool bar items with keymaps as
1782binding are currently ignored.
1783
1784The following properties are recognized:
1785
1786`:enable FORM'.
79214ddf 1787
a933dad1
DL
1788FORM is evaluated and specifies whether the tool bar item is enabled
1789or disabled.
79214ddf 1790
a933dad1 1791`:visible FORM'
79214ddf 1792
a933dad1 1793FORM is evaluated and specifies whether the tool bar item is displayed.
79214ddf 1794
a933dad1
DL
1795`:filter FUNCTION'
1796
1797FUNCTION is called with one parameter, the same list BINDING in which
1798FUNCTION is specified as the filter. The value FUNCTION returns is
1799used instead of BINDING to display this item.
79214ddf 1800
a933dad1
DL
1801`:button (TYPE SELECTED)'
1802
1803TYPE must be one of `:radio' or `:toggle'. SELECTED is evaluated
1804and specifies whether the button is selected (pressed) or not.
79214ddf 1805
a933dad1
DL
1806`:image IMAGES'
1807
1808IMAGES is either a single image specification or a vector of four
1809image specifications. If it is a vector, this table lists the
1810meaning of each of the four elements:
1811
1812 Index Use when item is
1813 ----------------------------------------
1814 0 enabled and selected
1815 1 enabled and deselected
1816 2 disabled and selected
1817 3 disabled and deselected
79214ddf 1818
a933dad1 1819`:help HELP-STRING'.
79214ddf 1820
a933dad1
DL
1821Gives a help string to display for the tool bar item. This help
1822is displayed when the mouse is moved over the item.
1823
1824*** Tool-bar-related variables.
1825
1826If `auto-resize-tool-bar' is non-nil, the tool bar will automatically
1827resize to show all defined tool bar items. It will never grow larger
1828than 1/4 of the frame's size.
1829
79214ddf 1830If `auto-raise-tool-bar-buttons' is non-nil, tool bar buttons will be
a933dad1
DL
1831raised when the mouse moves over them.
1832
1833You can add extra space between tool bar items by setting
1834`tool-bar-button-margin' to a positive integer specifying a number of
1835pixels. Default is 1.
1836
1837You can change the shadow thickness of tool bar buttons by setting
1838`tool-bar-button-relief' to an integer. Default is 3.
1839
1840*** Tool-bar clicks with modifiers.
1841
1842You can bind commands to clicks with control, shift, meta etc. on
79214ddf 1843a tool bar item. If
a933dad1
DL
1844
1845 (define-key global-map [tool-bar shell]
1846 '(menu-item "Shell" shell
1847 :image (image :type xpm :file "shell.xpm")))
1848
1849is the original tool bar item definition, then
1850
1851 (define-key global-map [tool-bar S-shell] 'some-command)
1852
1853makes a binding to run `some-command' for a shifted click on the same
1854item.
1855
1856** Mode line changes.
1857
1858+++
1859*** Mouse-sensitive mode line.
1860
1861The mode line can be made mouse-sensitive by displaying strings there
1862that have a `local-map' text property. There are three ways to display
1863a string with a `local-map' property in the mode line.
1864
18651. The mode line spec contains a variable whose string value has
1866a `local-map' text property.
1867
18682. The mode line spec contains a format specifier (e.g. `%12b'), and
1869that format specifier has a `local-map' property.
1870
18713. The mode line spec contains a list containing `:eval FORM'. FORM
1872is evaluated. If the result is a string, and that string has a
1873`local-map' property.
1874
1875The same mechanism is used to determine the `face' and `help-echo'
1876properties of strings in the mode line. See `bindings.el' for an
1877example.
1878
54522c9f
GM
1879*** If a mode line element has the form `(:eval FORM)', FORM is
1880evaluated and the result is used as mode line element.
1881
a933dad1
DL
1882+++
1883*** You can suppress mode-line display by setting the buffer-local
1884variable mode-line-format to nil.
1885
1886+++
1887*** A headerline can now be displayed at the top of a window.
1888
1889This mode line's contents are controlled by the new variable
1890`header-line-format' and `default-header-line-format' which are
1891completely analogous to `mode-line-format' and
1892`default-mode-line-format'. A value of nil means don't display a top
1893line.
1894
1895The appearance of top mode lines is controlled by the face
1896`header-line'.
1897
1898The function `coordinates-in-window-p' returns `header-line' for a
1899position in the header-line.
1900
1901+++
1902** Text property `display'
1903
1904The `display' text property is used to insert images into text, and
1905also control other aspects of how text displays. The value of the
1906`display' property should be a display specification, as described
1907below, or a list or vector containing display specifications.
1908
1909*** Variable width and height spaces
1910
1911To display a space of fractional width or height, use a display
1912specification of the form `(LOCATION STRECH)'. If LOCATION is
1913`(margin left-margin)', the space is displayed in the left marginal
1914area, if it is `(margin right-margin)', it is displayed in the right
1915marginal area, and if LOCATION is `(margin nil)' the space is
1916displayed in the text. In the latter case you can also use the
1917simpler form STRETCH as property value.
1918
1919The stretch specification STRETCH itself is a list of the form `(space
1920PROPS)', where PROPS is a property list which can contain the
1921properties described below.
1922
1923The display of the fractional space replaces the display of the
1924characters having the `display' property.
1925
1926- :width WIDTH
1927
1928Specifies that the space width should be WIDTH times the normal
1929character width. WIDTH can be an integer or floating point number.
1930
1931- :relative-width FACTOR
1932
1933Specifies that the width of the stretch should be computed from the
1934first character in a group of consecutive characters that have the
1935same `display' property. The computation is done by multiplying the
1936width of that character by FACTOR.
1937
1938- :align-to HPOS
1939
1940Specifies that the space should be wide enough to reach HPOS. The
1941value HPOS is measured in units of the normal character width.
1942
1943Exactly one of the above properties should be used.
1944
1945- :height HEIGHT
1946
1947Specifies the height of the space, as HEIGHT, measured in terms of the
1948normal line height.
1949
1950- :relative-height FACTOR
1951
1952The height of the space is computed as the product of the height
1953of the text having the `display' property and FACTOR.
1954
1955- :ascent ASCENT
1956
1957Specifies that ASCENT percent of the height of the stretch should be
1958used for the ascent of the stretch, i.e. for the part above the
1959baseline. The value of ASCENT must be a non-negative number less or
1960equal to 100.
1961
1962You should not use both `:height' and `:relative-height' together.
1963
1964*** Images
1965
1966A display specification for an image has the form `(LOCATION
1967. IMAGE)', where IMAGE is an image specification. The image replaces,
1968in the display, the characters having this display specification in
1969their `display' text property. If LOCATION is `(margin left-margin)',
1970the image will be displayed in the left marginal area, if it is
1971`(margin right-margin)' it will be displayed in the right marginal
1972area, and if LOCATION is `(margin nil)' the image will be displayed in
1973the text. In the latter case you can also use the simpler form IMAGE
1974as display specification.
1975
1976*** Other display properties
1977
1978- :space-width FACTOR
1979
1980Specifies that space characters in the text having that property
1981should be displayed FACTOR times as wide as normal; FACTOR must be an
1982integer or float.
1983
1984- :height HEIGHT
1985
1986Display text having this property in a font that is smaller or larger.
1987
1988If HEIGHT is a list of the form `(+ N)', where N is an integer, that
1989means to use a font that is N steps larger. If HEIGHT is a list of
1990the form `(- N)', that means to use a font that is N steps smaller. A
1991``step'' is defined by the set of available fonts; each size for which
1992a font is available counts as a step.
1993
1994If HEIGHT is a number, that means to use a font that is HEIGHT times
1995as tall as the frame's default font.
1996
1997If HEIGHT is a symbol, it is called as a function with the current
1998height as argument. The function should return the new height to use.
1999
2000Otherwise, HEIGHT is evaluated to get the new height, with the symbol
2001`height' bound to the current specified font height.
2002
2003- :raise FACTOR
2004
2005FACTOR must be a number, specifying a multiple of the current
2006font's height. If it is positive, that means to display the characters
2007raised. If it is negative, that means to display them lower down. The
2008amount of raising or lowering is computed without taking account of the
2009`:height' subproperty.
2010
2011*** Conditional display properties
2012
2013All display specifications can be conditionalized. If a specification
2014has the form `(:when CONDITION . SPEC)', the specification SPEC
2015applies only when CONDITION yields a non-nil value when evaluated.
2016During evaluattion, point is temporarily set to the end position of
2017the text having the `display' property.
2018
2019The normal specification consisting of SPEC only is equivalent to
2020`(:when t SPEC)'.
2021
2022+++
2023** New menu separator types.
2024
2025Emacs now supports more than one menu separator type. Menu items with
2026item names consisting of dashes only (including zero dashes) are
2027treated like before. In addition, the following item names are used
2028to specify other menu separator types.
2029
2030- `--no-line' or `--space', or `--:space', or `--:noLine'
2031
2032No separator lines are drawn, but a small space is inserted where the
2033separator occurs.
2034
2035- `--single-line' or `--:singleLine'
2036
2037A single line in the menu's foreground color.
2038
2039- `--double-line' or `--:doubleLine'
2040
2041A double line in the menu's foreground color.
2042
2043- `--single-dashed-line' or `--:singleDashedLine'
2044
2045A single dashed line in the menu's foreground color.
2046
2047- `--double-dashed-line' or `--:doubleDashedLine'
2048
2049A double dashed line in the menu's foreground color.
2050
2051- `--shadow-etched-in' or `--:shadowEtchedIn'
2052
2053A single line with 3D sunken appearance. This is the the form
2054displayed for item names consisting of dashes only.
2055
2056- `--shadow-etched-out' or `--:shadowEtchedOut'
2057
2058A single line with 3D raised appearance.
2059
2060- `--shadow-etched-in-dash' or `--:shadowEtchedInDash'
2061
2062A single dashed line with 3D sunken appearance.
2063
2064- `--shadow-etched-out-dash' or `--:shadowEtchedOutDash'
2065
2066A single dashed line with 3D raise appearance.
2067
2068- `--shadow-double-etched-in' or `--:shadowDoubleEtchedIn'
2069
2070Two lines with 3D sunken appearance.
2071
2072- `--shadow-double-etched-out' or `--:shadowDoubleEtchedOut'
2073
2074Two lines with 3D raised appearance.
2075
2076- `--shadow-double-etched-in-dash' or `--:shadowDoubleEtchedInDash'
2077
2078Two dashed lines with 3D sunken appearance.
2079
2080- `--shadow-double-etched-out-dash' or `--:shadowDoubleEtchedOutDash'
2081
2082Two dashed lines with 3D raised appearance.
2083
2084Under LessTif/Motif, the last four separator types are displayed like
2085the corresponding single-line separators.
2086
2087+++
2088** New frame parameters for scroll bar colors.
2089
2090The new frame parameters `scroll-bar-foreground' and
2091`scroll-bar-background' can be used to change scroll bar colors.
2092Their value must be either a color name, a string, or nil to specify
2093that scroll bars should use a default color. For toolkit scroll bars,
2094default colors are toolkit specific. For non-toolkit scroll bars, the
2095default background is the background color of the frame, and the
2096default foreground is black.
2097
2098The X resource name of these parameters are `scrollBarForeground'
2099(class ScrollBarForeground) and `scrollBarBackground' (class
2100`ScrollBarBackground').
2101
2102Setting these parameters overrides toolkit specific X resource
2103settings for scroll bar colors.
2104
2105+++
2106** You can set `redisplay-dont-pause' to a non-nil value to prevent
2107display updates from being interrupted when input is pending.
2108
2109---
2110** Changing a window's width may now change its window start if it
2111starts on a continuation line. The new window start is computed based
2112on the window's new width, starting from the start of the continued
2113line as the start of the screen line with the minimum distance from
2114the original window start.
2115
2116---
2117** The variable `hscroll-step' and the functions
2118`hscroll-point-visible' and `hscroll-window-column' have been removed
2119now that proper horizontal scrolling is implemented.
2120
2121+++
2122** Windows can now be made fixed-width and/or fixed-height.
2123
2124A window is fixed-size if its buffer has a buffer-local variable
2125`window-size-fixed' whose value is not nil. A value of `height' makes
2126windows fixed-height, a value of `width' makes them fixed-width, any
2127other non-nil value makes them both fixed-width and fixed-height.
2128
2129The following code makes all windows displaying the current buffer
2130fixed-width and fixed-height.
2131
2132 (set (make-local-variable 'window-size-fixed) t)
2133
2134A call to enlarge-window on a window gives an error if that window is
2135fixed-width and it is tried to change the window's width, or if the
2136window is fixed-height, and it is tried to change its height. To
2137change the size of a fixed-size window, bind `window-size-fixed'
2138temporarily to nil, for example
2139
2140 (let ((window-size-fixed nil))
2141 (enlarge-window 10))
2142
79214ddf 2143Likewise, an attempt to split a fixed-height window vertically,
a933dad1 2144or a fixed-width window horizontally results in a error.
e33b0397
DL
2145^L
2146* Emacs 20.5 is a bug-fix release with no user-visible changes.
2147
2148** Not new, but not mentioned before:
2149M-w when Transient Mark mode is enabled disables the mark.
a933dad1
DL
2150\f
2151* Changes in Emacs 20.4
2152
2153** Init file may be called .emacs.el.
2154
2155You can now call the Emacs init file `.emacs.el'.
2156Formerly the name had to be `.emacs'. If you use the name
2157`.emacs.el', you can byte-compile the file in the usual way.
2158
2159If both `.emacs' and `.emacs.el' exist, the latter file
2160is the one that is used.
2161
2162** shell-command, and shell-command-on-region, now return
2163the exit code of the command (unless it is asynchronous).
2164Also, you can specify a place to put the error output,
2165separate from the command's regular output.
2166Interactively, the variable shell-command-default-error-buffer
2167says where to put error output; set it to a buffer name.
2168In calls from Lisp, an optional argument ERROR-BUFFER specifies
2169the buffer name.
2170
2171When you specify a non-nil error buffer (or buffer name), any error
2172output is inserted before point in that buffer, with \f\n to separate
2173it from the previous batch of error output. The error buffer is not
2174cleared, so error output from successive commands accumulates there.
2175
2176** Setting the default value of enable-multibyte-characters to nil in
2177the .emacs file, either explicitly using setq-default, or via Custom,
2178is now essentially equivalent to using --unibyte: all buffers
2179created during startup will be made unibyte after loading .emacs.
2180
2181** C-x C-f now handles the wildcards * and ? in file names. For
2182example, typing C-x C-f c*.c RET visits all the files whose names
2183match c*.c. To visit a file whose name contains * or ?, add the
2184quoting sequence /: to the beginning of the file name.
2185
2186** The M-x commands keep-lines, flush-lines and count-matches
2187now have the same feature as occur and query-replace:
2188if the pattern contains any upper case letters, then
2189they never ignore case.
2190
2191** The end-of-line format conversion feature previously mentioned
2192under `* Emacs 20.1 changes for MS-DOS and MS-Windows' actually
2193applies to all operating systems. Emacs recognizes from the contents
2194of a file what convention it uses to separate lines--newline, CRLF, or
2195just CR--and automatically converts the contents to the normal Emacs
2196convention (using newline to separate lines) for editing. This is a
2197part of the general feature of coding system conversion.
2198
2199If you subsequently save the buffer, Emacs converts the text back to
2200the same format that was used in the file before.
2201
2202You can turn off end-of-line conversion by setting the variable
2203`inhibit-eol-conversion' to non-nil, e.g. with Custom in the MULE group.
2204
2205** The character set property `prefered-coding-system' has been
2206renamed to `preferred-coding-system', for the sake of correct spelling.
2207This is a fairly internal feature, so few programs should be affected.
2208
2209** Mode-line display of end-of-line format is changed.
2210The indication of the end-of-line format of the file visited by a
2211buffer is now more explicit when that format is not the usual one for
2212your operating system. For example, the DOS-style end-of-line format
2213is displayed as "(DOS)" on Unix and GNU/Linux systems. The usual
2214end-of-line format is still displayed as a single character (colon for
2215Unix, backslash for DOS and Windows, and forward slash for the Mac).
2216
2217The values of the variables eol-mnemonic-unix, eol-mnemonic-dos,
2218eol-mnemonic-mac, and eol-mnemonic-undecided, which are strings,
2219control what is displayed in the mode line for each end-of-line
2220format. You can now customize these variables.
2221
2222** In the previous version of Emacs, tar-mode didn't work well if a
2223filename contained non-ASCII characters. Now this is fixed. Such a
2224filename is decoded by file-name-coding-system if the default value of
2225enable-multibyte-characters is non-nil.
2226
2227** The command temp-buffer-resize-mode toggles a minor mode
2228in which temporary buffers (such as help buffers) are given
2229windows just big enough to hold the whole contents.
2230
2231** If you use completion.el, you must now run the function
2232dynamic-completion-mode to enable it. Just loading the file
2233doesn't have any effect.
2234
2235** In Flyspell mode, the default is now to make just one Ispell process,
2236not one per buffer.
2237
2238** If you use iswitchb but do not call (iswitchb-default-keybindings) to
2239use the default keybindings, you will need to add the following line:
2240 (add-hook 'minibuffer-setup-hook 'iswitchb-minibuffer-setup)
2241
2242** Auto-show mode is no longer enabled just by loading auto-show.el.
2243To control it, set `auto-show-mode' via Custom or use the
2244`auto-show-mode' command.
2245
2246** Handling of X fonts' ascent/descent parameters has been changed to
2247avoid redisplay problems. As a consequence, compared with previous
2248versions the line spacing and frame size now differ with some font
2249choices, typically increasing by a pixel per line. This change
2250occurred in version 20.3 but was not documented then.
2251
2252** If you select the bar cursor style, it uses the frame's
2253cursor-color, rather than the cursor foreground pixel.
2254
2255** In multibyte mode, Rmail decodes incoming MIME messages using the
2256character set specified in the message. If you want to disable this
2257feature, set the variable rmail-decode-mime-charset to nil.
2258
2259** Not new, but not mentioned previously in NEWS: when you use #! at
2260the beginning of a file to make it executable and specify an
2261interpreter program, Emacs looks on the second line for the -*- mode
2262and variable specification, as well as on the first line.
2263
2264** Support for IBM codepage encoding of non-ASCII characters.
2265
2266The new command M-x codepage-setup creates a special coding system
2267that can be used to convert text between a specific IBM codepage and
2268one of the character sets built into Emacs which matches that
2269codepage. For example, codepage 850 corresponds to Latin-1 character
2270set, codepage 855 corresponds to Cyrillic-ISO character set, etc.
2271
2272Windows codepages 1250, 1251 and some others, where Windows deviates
2273from the corresponding ISO character set, are also supported.
2274
2275IBM box-drawing characters and other glyphs which don't have
2276equivalents in the corresponding ISO character set, are converted to
2277a character defined by dos-unsupported-char-glyph on MS-DOS, and to
2278`?' on other systems.
2279
2280IBM codepages are widely used on MS-DOS and MS-Windows, so this
2281feature is most useful on those platforms, but it can also be used on
2282Unix.
2283
2284Emacs compiled for MS-DOS automatically loads the support for the
2285current codepage when it starts.
2286
2287** Mail changes
2288
2289*** The new variable default-sendmail-coding-system specifies the
2290default way to encode outgoing mail. This has higher priority than
2291default-buffer-file-coding-system but has lower priority than
2292sendmail-coding-system and the local value of
2293buffer-file-coding-system.
2294
2295You should not set this variable manually. Instead, set
2296sendmail-coding-system to specify a fixed encoding for all outgoing
2297mail.
2298
2299*** When you try to send a message that contains non-ASCII characters,
2300if the coding system specified by those variables doesn't handle them,
2301Emacs will ask you to select a suitable coding system while showing a
2302list of possible coding systems.
2303
2304** CC Mode changes
2305
2306*** c-default-style can now take an association list that maps major
2307modes to style names. When this variable is an alist, Java mode no
2308longer hardcodes a setting to "java" style. See the variable's
2309docstring for details.
2310
2311*** It's now possible to put a list as the offset on a syntactic
2312symbol. The list is evaluated recursively until a non-nil offset is
2313found. This is useful to combine several lineup functions to act in a
2314prioritized order on a single line. However, none of the supplied
2315lineup functions use this feature currently.
2316
2317*** New syntactic symbol catch-clause, which is used on the "catch" and
2318"finally" lines in try-catch constructs in C++ and Java.
2319
2320*** New cleanup brace-catch-brace on c-cleanup-list, which does for
2321"catch" lines what brace-elseif-brace does for "else if" lines.
2322
2323*** The braces of Java anonymous inner classes are treated separately
2324from the braces of other classes in auto-newline mode. Two new
2325symbols inexpr-class-open and inexpr-class-close may be used on
2326c-hanging-braces-alist to control the automatic newlines used for
2327anonymous classes.
2328
2329*** Support for the Pike language added, along with new Pike specific
2330syntactic symbols: inlambda, lambda-intro-cont
2331
2332*** Support for Java anonymous classes via new syntactic symbol
2333inexpr-class. New syntactic symbol inexpr-statement for Pike
2334support and gcc-style statements inside expressions. New lineup
2335function c-lineup-inexpr-block.
2336
2337*** New syntactic symbol brace-entry-open which is used in brace lists
2338(i.e. static initializers) when a list entry starts with an open
2339brace. These used to be recognized as brace-list-entry's.
2340c-electric-brace also recognizes brace-entry-open braces
2341(brace-list-entry's can no longer be electrified).
2342
2343*** New command c-indent-line-or-region, not bound by default.
2344
2345*** `#' is only electric when typed in the indentation of a line.
2346
2347*** Parentheses are now electric (via the new command c-electric-paren)
2348for auto-reindenting lines when parens are typed.
2349
2350*** In "gnu" style, inline-open offset is now set to zero.
2351
2352*** Uniform handling of the inclass syntactic symbol. The indentation
2353associated with it is now always relative to the class opening brace.
2354This means that the indentation behavior has changed in some
2355circumstances, but only if you've put anything besides 0 on the
2356class-open syntactic symbol (none of the default styles do that).
2357
2358** Gnus changes.
2359
2360*** New functionality for using Gnus as an offline newsreader has been
2361added. A plethora of new commands and modes have been added. See the
2362Gnus manual for the full story.
2363
2364*** The nndraft backend has returned, but works differently than
2365before. All Message buffers are now also articles in the nndraft
2366group, which is created automatically.
2367
2368*** `gnus-alter-header-function' can now be used to alter header
2369values.
2370
2371*** `gnus-summary-goto-article' now accept Message-ID's.
2372
2373*** A new Message command for deleting text in the body of a message
2374outside the region: `C-c C-v'.
2375
2376*** You can now post to component group in nnvirtual groups with
2377`C-u C-c C-c'.
2378
2379*** `nntp-rlogin-program' -- new variable to ease customization.
2380
2381*** `C-u C-c C-c' in `gnus-article-edit-mode' will now inhibit
2382re-highlighting of the article buffer.
2383
2384*** New element in `gnus-boring-article-headers' -- `long-to'.
2385
2386*** `M-i' symbolic prefix command. See the section "Symbolic
2387Prefixes" in the Gnus manual for details.
2388
2389*** `L' and `I' in the summary buffer now take the symbolic prefix
2390`a' to add the score rule to the "all.SCORE" file.
2391
2392*** `gnus-simplify-subject-functions' variable to allow greater
2393control over simplification.
2394
2395*** `A T' -- new command for fetching the current thread.
2396
2397*** `/ T' -- new command for including the current thread in the
2398limit.
2399
2400*** `M-RET' is a new Message command for breaking cited text.
2401
2402*** \\1-expressions are now valid in `nnmail-split-methods'.
2403
79214ddf 2404*** The `custom-face-lookup' function has been removed.
a933dad1
DL
2405If you used this function in your initialization files, you must
2406rewrite them to use `face-spec-set' instead.
2407
2408*** Cancelling now uses the current select method. Symbolic prefix
2409`a' forces normal posting method.
2410
2411*** New command to translate M******** sm*rtq**t*s into proper text
2412-- `W d'.
2413
2414*** For easier debugging of nntp, you can set `nntp-record-commands'
2415to a non-nil value.
2416
2417*** nntp now uses ~/.authinfo, a .netrc-like file, for controlling
2418where and how to send AUTHINFO to NNTP servers.
2419
2420*** A command for editing group parameters from the summary buffer
2421has been added.
2422
2423*** A history of where mails have been split is available.
2424
2425*** A new article date command has been added -- `article-date-iso8601'.
2426
2427*** Subjects can be simplified when threading by setting
2428`gnus-score-thread-simplify'.
2429
2430*** A new function for citing in Message has been added --
2431`message-cite-original-without-signature'.
2432
2433*** `article-strip-all-blank-lines' -- new article command.
2434
2435*** A new Message command to kill to the end of the article has
2436been added.
2437
2438*** A minimum adaptive score can be specified by using the
2439`gnus-adaptive-word-minimum' variable.
2440
2441*** The "lapsed date" article header can be kept continually
2442updated by the `gnus-start-date-timer' command.
2443
2444*** Web listserv archives can be read with the nnlistserv backend.
2445
2446*** Old dejanews archives can now be read by nnweb.
2447
2448*** `gnus-posting-styles' has been re-activated.
2449
2450** Changes to TeX and LaTeX mode
2451
2452*** The new variable `tex-start-options-string' can be used to give
2453options for the TeX run. The default value causes TeX to run in
2454nonstopmode. For an interactive TeX run set it to nil or "".
2455
2456*** The command `tex-feed-input' sends input to the Tex Shell. In a
2457TeX buffer it is bound to the keys C-RET, C-c RET, and C-c C-m (some
2458of these keys may not work on all systems). For instance, if you run
2459TeX interactively and if the TeX run stops because of an error, you
2460can continue it without leaving the TeX buffer by typing C-RET.
2461
2462*** The Tex Shell Buffer is now in `compilation-shell-minor-mode'.
2463All error-parsing commands of the Compilation major mode are available
2464but bound to keys that don't collide with the shell. Thus you can use
2465the Tex Shell for command line executions like a usual shell.
2466
2467*** The commands `tex-validate-region' and `tex-validate-buffer' check
2468the matching of braces and $'s. The errors are listed in a *Occur*
2469buffer and you can use C-c C-c or mouse-2 to go to a particular
2470mismatch.
2471
2472** Changes to RefTeX mode
2473
2474*** The table of contents buffer can now also display labels and
2475file boundaries in addition to sections. Use `l', `i', and `c' keys.
2476
2477*** Labels derived from context (the section heading) are now
2478lowercase by default. To make the label legal in LaTeX, latin-1
2479characters will lose their accent. All Mule characters will be
2480removed from the label.
2481
2482*** The automatic display of cross reference information can also use
2483a window instead of the echo area. See variable `reftex-auto-view-crossref'.
2484
2485*** kpsewhich can be used by RefTeX to find TeX and BibTeX files. See the
2486customization group `reftex-finding-files'.
2487
2488*** The option `reftex-bibfile-ignore-list' has been renamed to
2489`reftex-bibfile-ignore-regexps' and indeed can be fed with regular
79214ddf 2490expressions.
a933dad1
DL
2491
2492*** Multiple Selection buffers are now hidden buffers.
2493
2494** New/deleted modes and packages
2495
2496*** The package snmp-mode.el provides major modes for editing SNMP and
2497SNMPv2 MIBs. It has entries on `auto-mode-alist'.
2498
2499*** The package sql.el provides a major mode, M-x sql-mode, for
2500editing SQL files, and M-x sql-interactive-mode for interacting with
2501SQL interpreters. It has an entry on `auto-mode-alist'.
2502
2503*** M-x highlight-changes-mode provides a minor mode displaying buffer
2504changes with a special face.
2505
2506*** ispell4.el has been deleted. It got in the way of ispell.el and
2507this was hard to fix reliably. It has long been obsolete -- use
2508Ispell 3.1 and ispell.el.
2509\f
2510* MS-DOS changes in Emacs 20.4
2511
2512** Emacs compiled for MS-DOS now supports MULE features better.
2513This includes support for display of all ISO 8859-N character sets,
2514conversion to and from IBM codepage encoding of non-ASCII characters,
2515and automatic setup of the MULE environment at startup. For details,
2516check out the section `MS-DOS and MULE' in the manual.
2517
2518The MS-DOS installation procedure automatically configures and builds
2519Emacs with input method support if it finds an unpacked Leim
2520distribution when the config.bat script is run.
2521
2522** Formerly, the value of lpr-command did not affect printing on
2523MS-DOS unless print-region-function was set to nil, but now it
2524controls whether an external program is invoked or output is written
2525directly to a printer port. Similarly, in the previous version of
2526Emacs, the value of ps-lpr-command did not affect PostScript printing
2527on MS-DOS unless ps-printer-name was set to something other than a
2528string (eg. t or `pipe'), but now it controls whether an external
2529program is used. (These changes were made so that configuration of
2530printing variables would be almost identical across all platforms.)
2531
2532** In the previous version of Emacs, PostScript and non-PostScript
2533output was piped to external programs, but because most print programs
2534available for MS-DOS and MS-Windows cannot read data from their standard
2535input, on those systems the data to be output is now written to a
2536temporary file whose name is passed as the last argument to the external
2537program.
2538
2539An exception is made for `print', a standard program on Windows NT,
2540and `nprint', a standard program on Novell Netware. For both of these
2541programs, the command line is constructed in the appropriate syntax
2542automatically, using only the value of printer-name or ps-printer-name
2543as appropriate--the value of the relevant `-switches' variable is
2544ignored, as both programs have no useful switches.
2545
2546** The value of the variable dos-printer (cf. dos-ps-printer), if it has
2547a value, overrides the value of printer-name (cf. ps-printer-name), on
2548MS-DOS and MS-Windows only. This has been true since version 20.3, but
2549was not documented clearly before.
2550
2551** All the Emacs games now work on MS-DOS terminals.
2552This includes Tetris and Snake.
2553\f
2554* Lisp changes in Emacs 20.4
2555
2556** New functions line-beginning-position and line-end-position
2557return the position of the beginning or end of the current line.
2558They both accept an optional argument, which has the same
2559meaning as the argument to beginning-of-line or end-of-line.
2560
2561** find-file and allied functions now have an optional argument
2562WILDCARD. If this is non-nil, they do wildcard processing,
2563and visit all files that match the wildcard pattern.
2564
2565** Changes in the file-attributes function.
2566
2567*** The file size returned by file-attributes may be an integer or a float.
2568It is an integer if the size fits in a Lisp integer, float otherwise.
2569
2570*** The inode number returned by file-attributes may be an integer (if
2571the number fits in a Lisp integer) or a cons cell containing two
2572integers.
2573
2574** The new function directory-files-and-attributes returns a list of
2575files in a directory and their attributes. It accepts the same
2576arguments as directory-files and has similar semantics, except that
2577file names and attributes are returned.
2578
2579** The new function file-attributes-lessp is a helper function for
2580sorting the list generated by directory-files-and-attributes. It
2581accepts two arguments, each a list of a file name and its atttributes.
2582It compares the file names of each according to string-lessp and
2583returns the result.
2584
2585** The new function file-expand-wildcards expands a wildcard-pattern
2586to produce a list of existing files that match the pattern.
2587
2588** New functions for base64 conversion:
2589
2590The function base64-encode-region converts a part of the buffer
2591into the base64 code used in MIME. base64-decode-region
2592performs the opposite conversion. Line-breaking is supported
2593optionally.
2594
2595Functions base64-encode-string and base64-decode-string do a similar
2596job on the text in a string. They return the value as a new string.
2597
2598**
2599The new function process-running-child-p
2600will tell you if a subprocess has given control of its
2601terminal to its own child process.
2602
2603** interrupt-process and such functions have a new feature:
2604when the second argument is `lambda', they send a signal
2605to the running child of the subshell, if any, but if the shell
2606itself owns its terminal, no signal is sent.
2607
2608** There are new widget types `plist' and `alist' which can
2609be used for customizing variables whose values are plists or alists.
2610
2611** easymenu.el Now understands `:key-sequence' and `:style button'.
2612:included is an alias for :visible.
2613
2614easy-menu-add-item now understands the values returned by
2615easy-menu-remove-item and easy-menu-item-present-p. This can be used
2616to move or copy menu entries.
2617
2618** Multibyte editing changes
2619
2620*** The definitions of sref and char-bytes are changed. Now, sref is
2621an alias of aref and char-bytes always returns 1. This change is to
2622make some Emacs Lisp code which works on 20.2 and earlier also
2623work on the latest Emacs. Such code uses a combination of sref and
2624char-bytes in a loop typically as below:
2625 (setq char (sref str idx)
2626 idx (+ idx (char-bytes idx)))
2627The byte-compiler now warns that this is obsolete.
2628
2629If you want to know how many bytes a specific multibyte character
2630(say, CH) occupies in a multibyte buffer, use this code:
2631 (charset-bytes (char-charset ch))
2632
2633*** In multibyte mode, when you narrow a buffer to some region, and the
2634region is preceded or followed by non-ASCII codes, inserting or
2635deleting at the head or the end of the region may signal this error:
2636
2637 Byte combining across boundary of accessible buffer text inhibitted
2638
2639This is to avoid some bytes being combined together into a character
2640across the boundary.
2641
2642*** The functions find-charset-region and find-charset-string include
2643`unknown' in the returned list in the following cases:
2644 o The current buffer or the target string is unibyte and
2645 contains 8-bit characters.
2646 o The current buffer or the target string is multibyte and
2647 contains invalid characters.
2648
2649*** The functions decode-coding-region and encode-coding-region remove
2650text properties of the target region. Ideally, they should correctly
2651preserve text properties, but for the moment, it's hard. Removing
2652text properties is better than preserving them in a less-than-correct
2653way.
2654
2655*** prefer-coding-system sets EOL conversion of default coding systems.
2656If the argument to prefer-coding-system specifies a certain type of
2657end of line conversion, the default coding systems set by
2658prefer-coding-system will specify that conversion type for end of line.
2659
2660*** The new function thai-compose-string can be used to properly
2661compose Thai characters in a string.
2662
2663** The primitive `define-prefix-command' now takes an optional third
2664argument NAME, which should be a string. It supplies the menu name
2665for the created keymap. Keymaps created in order to be displayed as
2666menus should always use the third argument.
2667
2668** The meanings of optional second arguments for read-char,
2669read-event, and read-char-exclusive are flipped. Now the second
2670arguments are INHERIT-INPUT-METHOD. These functions use the current
2671input method (if any) if and only if INHERIT-INPUT-METHOD is non-nil.
2672
2673** The new function clear-this-command-keys empties out the contents
2674of the vector that (this-command-keys) returns. This is useful in
2675programs that read passwords, to prevent the passwords from echoing
2676inadvertently as part of the next command in certain cases.
2677
2678** The new macro `with-temp-message' displays a temporary message in
2679the echo area, while executing some Lisp code. Like `progn', it
2680returns the value of the last form, but it also restores the previous
2681echo area contents.
2682
2683 (with-temp-message MESSAGE &rest BODY)
2684
2685** The function `require' now takes an optional third argument
2686NOERROR. If it is non-nil, then there is no error if the
2687requested feature cannot be loaded.
2688
2689** In the function modify-face, an argument of (nil) for the
2690foreground color, background color or stipple pattern
79214ddf 2691means to clear out that attribute.
a933dad1
DL
2692
2693** The `outer-window-id' frame property of an X frame
2694gives the window number of the outermost X window for the frame.
2695
2696** Temporary buffers made with with-output-to-temp-buffer are now
2697read-only by default, and normally use the major mode Help mode
2698unless you put them in some other non-Fundamental mode before the
2699end of with-output-to-temp-buffer.
2700
2701** The new functions gap-position and gap-size return information on
2702the gap of the current buffer.
2703
2704** The new functions position-bytes and byte-to-position provide a way
2705to convert between character positions and byte positions in the
2706current buffer.
2707
2708** vc.el defines two new macros, `edit-vc-file' and `with-vc-file', to
2709facilitate working with version-controlled files from Lisp programs.
2710These macros check out a given file automatically if needed, and check
2711it back in after any modifications have been made.
2712\f
2713* Installation Changes in Emacs 20.3
2714
2715** The default value of load-path now includes most subdirectories of
2716the site-specific directories /usr/local/share/emacs/site-lisp and
2717/usr/local/share/emacs/VERSION/site-lisp, in addition to those
2718directories themselves. Both immediate subdirectories and
2719subdirectories multiple levels down are added to load-path.
2720
2721Not all subdirectories are included, though. Subdirectories whose
2722names do not start with a letter or digit are excluded.
2723Subdirectories named RCS or CVS are excluded. Also, a subdirectory
2724which contains a file named `.nosearch' is excluded. You can use
2725these methods to prevent certain subdirectories from being searched.
2726
2727Emacs finds these subdirectories and adds them to load-path when it
2728starts up. While it would be cleaner to find the subdirectories each
2729time Emacs loads a file, that would be much slower.
2730
2731This feature is an incompatible change. If you have stored some Emacs
2732Lisp files in a subdirectory of the site-lisp directory specifically
2733to prevent them from being used, you will need to rename the
2734subdirectory to start with a non-alphanumeric character, or create a
2735`.nosearch' file in it, in order to continue to achieve the desired
2736results.
2737
2738** Emacs no longer includes an old version of the C preprocessor from
2739GCC. This was formerly used to help compile Emacs with C compilers
2740that had limits on the significant length of an identifier, but in
2741fact we stopped supporting such compilers some time ago.
2742\f
2743* Changes in Emacs 20.3
2744
2745** The new command C-x z (repeat) repeats the previous command
2746including its argument. If you repeat the z afterward,
2747it repeats the command additional times; thus, you can
2748perform many repetitions with one keystroke per repetition.
2749
2750** Emacs now supports "selective undo" which undoes only within a
2751specified region. To do this, set point and mark around the desired
2752region and type C-u C-x u (or C-u C-_). You can then continue undoing
2753further, within the same region, by repeating the ordinary undo
2754command C-x u or C-_. This will keep undoing changes that were made
2755within the region you originally specified, until either all of them
2756are undone, or it encounters a change which crosses the edge of that
2757region.
2758
2759In Transient Mark mode, undoing when a region is active requests
2760selective undo.
2761
2762** If you specify --unibyte when starting Emacs, then all buffers are
2763unibyte, except when a Lisp program specifically creates a multibyte
2764buffer. Setting the environment variable EMACS_UNIBYTE has the same
2765effect. The --no-unibyte option overrides EMACS_UNIBYTE and directs
2766Emacs to run normally in multibyte mode.
2767
2768The option --unibyte does not affect the reading of Emacs Lisp files,
2769though. If you want a Lisp file to be read in unibyte mode, use
2770-*-unibyte: t;-*- on its first line. That will force Emacs to
2771load that file in unibyte mode, regardless of how Emacs was started.
2772
2773** toggle-enable-multibyte-characters no longer has a key binding and
2774no longer appears in the menu bar. We've realized that changing the
2775enable-multibyte-characters variable in an existing buffer is
2776something that most users not do.
2777
2778** You can specify a coding system to use for the next cut or paste
2779operations through the window system with the command C-x RET X.
2780The coding system can make a difference for communication with other
2781applications.
2782
2783C-x RET x specifies a coding system for all subsequent cutting and
2784pasting operations.
2785
2786** You can specify the printer to use for commands that do printing by
2787setting the variable `printer-name'. Just what a printer name looks
2788like depends on your operating system. You can specify a different
2789printer for the Postscript printing commands by setting
2790`ps-printer-name'.
2791
2792** Emacs now supports on-the-fly spell checking by the means of a
2793minor mode. It is called M-x flyspell-mode. You don't have to remember
2794any other special commands to use it, and you will hardly notice it
2795except when you make a spelling error. Flyspell works by highlighting
2796incorrect words as soon as they are completed or as soon as the cursor
2797hits a new word.
2798
2799Flyspell mode works with whichever dictionary you have selected for
2800Ispell in Emacs. In TeX mode, it understands TeX syntax so as not
2801to be confused by TeX commands.
2802
2803You can correct a misspelled word by editing it into something
2804correct. You can also correct it, or accept it as correct, by
2805clicking on the word with Mouse-2; that gives you a pop-up menu
2806of various alternative replacements and actions.
2807
2808Flyspell mode also proposes "automatic" corrections. M-TAB replaces
2809the current misspelled word with a possible correction. If several
2810corrections are made possible, M-TAB cycles through them in
2811alphabetical order, or in order of decreasing likelihood if
2812flyspell-sort-corrections is nil.
2813
2814Flyspell mode also flags an error when a word is repeated, if
2815flyspell-mark-duplications-flag is non-nil.
2816
2817** Changes in input method usage.
2818
2819Now you can use arrow keys (right, left, down, up) for selecting among
2820the alternatives just the same way as you do by C-f, C-b, C-n, and C-p
2821respectively.
2822
2823You can use the ENTER key to accept the current conversion.
2824
2825If you type TAB to display a list of alternatives, you can select one
2826of the alternatives with Mouse-2.
2827
2828The meaning of the variable `input-method-verbose-flag' is changed so
2829that you can set it to t, nil, `default', or `complex-only'.
2830
2831 If the value is nil, extra guidance is never given.
2832
2833 If the value is t, extra guidance is always given.
2834
2835 If the value is `complex-only', extra guidance is always given only
2836 when you are using complex input methods such as chinese-py.
2837
2838 If the value is `default' (this is the default), extra guidance is
79214ddf 2839 given in the following case:
a933dad1
DL
2840 o When you are using a complex input method.
2841 o When you are using a simple input method but not in the minibuffer.
2842
2843If you are using Emacs through a very slow line, setting
2844input-method-verbose-flag to nil or to complex-only is a good choice,
2845and if you are using an input method you are not familiar with,
2846setting it to t is helpful.
2847
2848The old command select-input-method is now called set-input-method.
2849
2850In the language environment "Korean", you can use the following
2851keys:
2852 Shift-SPC toggle-korean-input-method
2853 C-F9 quail-hangul-switch-symbol-ksc
2854 F9 quail-hangul-switch-hanja
2855These key bindings are canceled when you switch to another language
2856environment.
2857
2858** The minibuffer history of file names now records the specified file
2859names, not the entire minibuffer input. For example, if the
2860minibuffer starts out with /usr/foo/, you might type in /etc/passwd to
2861get
2862
2863 /usr/foo//etc/passwd
2864
2865which stands for the file /etc/passwd.
2866
2867Formerly, this used to put /usr/foo//etc/passwd in the history list.
2868Now this puts just /etc/passwd in the history list.
2869
2870** If you are root, Emacs sets backup-by-copying-when-mismatch to t
2871at startup, so that saving a file will be sure to preserve
2872its owner and group.
2873
2874** find-func.el can now also find the place of definition of Emacs
2875Lisp variables in user-loaded libraries.
2876
2877** C-x r t (string-rectangle) now deletes the existing rectangle
2878contents before inserting the specified string on each line.
2879
2880** There is a new command delete-whitespace-rectangle
2881which deletes whitespace starting from a particular column
2882in all the lines on a rectangle. The column is specified
2883by the left edge of the rectangle.
2884
2885** You can now store a number into a register with C-u NUMBER C-x r n REG,
2886increment it by INC with C-u INC C-x r + REG (to increment by one, omit
2887C-u INC), and insert it in the buffer with C-x r g REG. This is useful
2888for writing keyboard macros.
2889
2890** The new command M-x speedbar displays a frame in which directories,
2891files, and tags can be displayed, manipulated, and jumped to. The
2892frame defaults to 20 characters in width, and is the same height as
2893the frame that it was started from. Some major modes define
2894additional commands for the speedbar, including Rmail, GUD/GDB, and
2895info.
2896
2897** query-replace-regexp is now bound to C-M-%.
2898
2899** In Transient Mark mode, when the region is active, M-x
2900query-replace and the other replace commands now operate on the region
2901contents only.
2902
2903** M-x write-region, when used interactively, now asks for
2904confirmation before overwriting an existing file. When you call
2905the function from a Lisp program, a new optional argument CONFIRM
2906says whether to ask for confirmation in this case.
2907
2908** If you use find-file-literally and the file is already visited
2909non-literally, the command asks you whether to revisit the file
2910literally. If you say no, it signals an error.
2911
2912** Major modes defined with the "derived mode" feature
2913now use the proper name for the mode hook: WHATEVER-mode-hook.
2914Formerly they used the name WHATEVER-mode-hooks, but that is
2915inconsistent with Emacs conventions.
2916
2917** shell-command-on-region (and shell-command) reports success or
2918failure if the command produces no output.
2919
2920** Set focus-follows-mouse to nil if your window system or window
2921manager does not transfer focus to another window when you just move
2922the mouse.
2923
2924** mouse-menu-buffer-maxlen has been renamed to
2925mouse-buffer-menu-maxlen to be consistent with the other related
2926function and variable names.
2927
2928** The new variable auto-coding-alist specifies coding systems for
2929reading specific files. This has higher priority than
2930file-coding-system-alist.
2931
2932** If you set the variable unibyte-display-via-language-environment to
2933t, then Emacs displays non-ASCII characters are displayed by
2934converting them to the equivalent multibyte characters according to
2935the current language environment. As a result, they are displayed
2936according to the current fontset.
2937
2938** C-q's handling of codes in the range 0200 through 0377 is changed.
2939
2940The codes in the range 0200 through 0237 are inserted as one byte of
2941that code regardless of the values of nonascii-translation-table and
2942nonascii-insert-offset.
2943
2944For the codes in the range 0240 through 0377, if
2945enable-multibyte-characters is non-nil and nonascii-translation-table
2946nor nonascii-insert-offset can't convert them to valid multibyte
2947characters, they are converted to Latin-1 characters.
2948
2949** If you try to find a file that is not read-accessible, you now get
2950an error, rather than an empty buffer and a warning.
2951
2952** In the minibuffer history commands M-r and M-s, an upper case
2953letter in the regular expression forces case-sensitive search.
2954
2955** In the *Help* buffer, cross-references to commands and variables
2956are inferred and hyperlinked. Use C-h m in Help mode for the relevant
2957command keys.
2958
2959** M-x apropos-command, with a prefix argument, no longer looks for
2960user option variables--instead it looks for noninteractive functions.
2961
2962Meanwhile, the command apropos-variable normally searches for
2963user option variables; with a prefix argument, it looks at
2964all variables that have documentation.
2965
2966** When you type a long line in the minibuffer, and the minibuffer
2967shows just one line, automatically scrolling works in a special way
2968that shows you overlap with the previous line of text. The variable
2969minibuffer-scroll-overlap controls how many characters of overlap
2970it should show; the default is 20.
2971
2972Meanwhile, Resize Minibuffer mode is still available; in that mode,
2973the minibuffer grows taller (up to a point) as needed to show the whole
2974of your input.
2975
2976** The new command M-x customize-changed-options lets you customize
2977all the options whose meanings or default values have changed in
2978recent Emacs versions. You specify a previous Emacs version number as
2979argument, and the command creates a customization buffer showing all
2980the customizable options which were changed since that version.
2981Newly added options are included as well.
2982
2983If you don't specify a particular version number argument,
2984then the customization buffer shows all the customizable options
2985for which Emacs versions of changes are recorded.
2986
2987This function is also bound to the Changed Options entry in the
2988Customize menu.
2989
2990** When you run M-x grep with a prefix argument, it figures out
2991the tag around point and puts that into the default grep command.
2992
2993** The new command M-* (pop-tag-mark) pops back through a history of
2994buffer positions from which M-. or other tag-finding commands were
2995invoked.
2996
2997** The new variable comment-padding specifies the number of spaces
2998that `comment-region' will insert before the actual text of the comment.
2999The default is 1.
3000
3001** In Fortran mode the characters `.', `_' and `$' now have symbol
3002syntax, not word syntax. Fortran mode now supports `imenu' and has
3003new commands fortran-join-line (M-^) and fortran-narrow-to-subprogram
3004(C-x n d). M-q can be used to fill a statement or comment block
3005sensibly.
3006
3007** GUD now supports jdb, the Java debugger, and pdb, the Python debugger.
3008
3009** If you set the variable add-log-keep-changes-together to a non-nil
3010value, the command `C-x 4 a' will automatically notice when you make
3011two entries in one day for one file, and combine them.
3012
3013** You can use the command M-x diary-mail-entries to mail yourself a
3014reminder about upcoming diary entries. See the documentation string
3015for a sample shell script for calling this function automatically
3016every night.
3017
3018** All you need to do, to enable use of the Desktop package, is to set
3019the variable desktop-enable to t with Custom.
3020
3021** There is no need to do anything special, now, to enable Gnus to
3022read and post multi-lingual articles.
3023
3024** Outline mode has now support for showing hidden outlines when
3025doing an isearch. In order for this to happen search-invisible should
3026be set to open (the default). If an isearch match is inside a hidden
3027outline the outline is made visible. If you continue pressing C-s and
3028the match moves outside the formerly invisible outline, the outline is
79214ddf 3029made invisible again.
a933dad1
DL
3030
3031** Mail reading and sending changes
3032
3033*** The Rmail e command now switches to displaying the whole header of
3034the message before it lets you edit the message. This is so that any
3035changes you make in the header will not be lost if you subsequently
3036toggle.
3037
3038*** The w command in Rmail, which writes the message body into a file,
3039now works in the summary buffer as well. (The command to delete the
3040summary buffer is now Q.) The default file name for the w command, if
3041the message has no subject, is stored in the variable
3042rmail-default-body-file.
3043
3044*** Most of the commands and modes that operate on mail and netnews no
3045longer depend on the value of mail-header-separator. Instead, they
3046handle whatever separator the buffer happens to use.
3047
3048*** If you set mail-signature to a value which is not t, nil, or a string,
3049it should be an expression. When you send a message, this expression
3050is evaluated to insert the signature.
3051
3052*** The new Lisp library feedmail.el (version 8) enhances processing of
3053outbound email messages. It works in coordination with other email
3054handling packages (e.g., rmail, VM, gnus) and is responsible for
3055putting final touches on messages and actually submitting them for
3056transmission. Users of the emacs program "fakemail" might be
3057especially interested in trying feedmail.
3058
3059feedmail is not enabled by default. See comments at the top of
3060feedmail.el for set-up instructions. Among the bigger features
3061provided by feedmail are:
3062
3063**** you can park outgoing messages into a disk-based queue and
3064stimulate sending some or all of them later (handy for laptop users);
3065there is also a queue for draft messages
3066
3067**** you can get one last look at the prepped outbound message and
3068be prompted for confirmation
3069
3070**** does smart filling of address headers
3071
3072**** can generate a MESSAGE-ID: line and a DATE: line; the date can be
3073the time the message was written or the time it is being sent; this
3074can make FCC copies more closely resemble copies that recipients get
3075
3076**** you can specify an arbitrary function for actually transmitting
3077the message; included in feedmail are interfaces for /bin/[r]mail,
3078/usr/lib/sendmail, and elisp smtpmail; it's easy to write a new
3079function for something else (10-20 lines of elisp)
3080
3081** Dired changes
3082
3083*** The Dired function dired-do-toggle, which toggles marked and unmarked
3084files, is now bound to "t" instead of "T".
3085
3086*** dired-at-point has been added to ffap.el. It allows one to easily
3087run Dired on the directory name at point.
3088
3089*** Dired has a new command: %g. It searches the contents of
3090files in the directory and marks each file that contains a match
3091for a specified regexp.
3092
3093** VC Changes
3094
3095*** New option vc-ignore-vc-files lets you turn off version control
3096conveniently.
3097
3098*** VC Dired has been completely rewritten. It is now much
3099faster, especially for CVS, and works very similar to ordinary
3100Dired.
3101
3102VC Dired is invoked by typing C-x v d and entering the name of the
3103directory to display. By default, VC Dired gives you a recursive
3104listing of all files at or below the given directory which are
3105currently locked (for CVS, all files not up-to-date are shown).
3106
3107You can change the listing format by setting vc-dired-recurse to nil,
3108then it shows only the given directory, and you may also set
3109vc-dired-terse-display to nil, then it shows all files under version
3110control plus the names of any subdirectories, so that you can type `i'
3111on such lines to insert them manually, as in ordinary Dired.
3112
3113All Dired commands operate normally in VC Dired, except for `v', which
3114is redefined as the version control prefix. That means you may type
3115`v l', `v =' etc. to invoke `vc-print-log', `vc-diff' and the like on
3116the file named in the current Dired buffer line. `v v' invokes
3117`vc-next-action' on this file, or on all files currently marked.
3118
3119The new command `v t' (vc-dired-toggle-terse-mode) allows you to
3120toggle between terse display (only locked files) and full display (all
79214ddf 3121VC files plus subdirectories). There is also a special command,
a933dad1
DL
3122`* l', to mark all files currently locked.
3123
3124Giving a prefix argument to C-x v d now does the same thing as in
3125ordinary Dired: it allows you to supply additional options for the ls
3126command in the minibuffer, to fine-tune VC Dired's output.
3127
3128*** Under CVS, if you merge changes from the repository into a working
3129file, and CVS detects conflicts, VC now offers to start an ediff
3130session to resolve them.
3131
3132Alternatively, you can use the new command `vc-resolve-conflicts' to
3133resolve conflicts in a file at any time. It works in any buffer that
3134contains conflict markers as generated by rcsmerge (which is what CVS
3135uses as well).
3136
3137*** You can now transfer changes between branches, using the new
3138command vc-merge (C-x v m). It is implemented for RCS and CVS. When
3139you invoke it in a buffer under version-control, you can specify
3140either an entire branch or a pair of versions, and the changes on that
3141branch or between the two versions are merged into the working file.
3142If this results in any conflicts, they may be resolved interactively,
3143using ediff.
3144
3145** Changes in Font Lock
3146
3147*** The face and variable previously known as font-lock-reference-face
3148are now called font-lock-constant-face to better reflect their typical
3149use for highlighting constants and labels. (Its face properties are
3150unchanged.) The variable font-lock-reference-face remains for now for
3151compatibility reasons, but its value is font-lock-constant-face.
3152
3153** Frame name display changes
3154
3155*** The command set-frame-name lets you set the name of the current
3156frame. You can use the new command select-frame-by-name to select and
3157raise a frame; this is mostly useful on character-only terminals, or
3158when many frames are invisible or iconified.
3159
3160*** On character-only terminal (not a window system), changing the
3161frame name is now reflected on the mode line and in the Buffers/Frames
3162menu.
3163
3164** Comint (subshell) changes
3165
3166*** In Comint modes, the commands to kill, stop or interrupt a
3167subjob now also kill pending input. This is for compatibility
3168with ordinary shells, where the signal characters do this.
3169
3170*** There are new commands in Comint mode.
3171
3172C-c C-x fetches the "next" line from the input history;
3173that is, the line after the last line you got.
3174You can use this command to fetch successive lines, one by one.
3175
3176C-c SPC accumulates lines of input. More precisely, it arranges to
3177send the current line together with the following line, when you send
3178the following line.
3179
3180C-c C-a if repeated twice consecutively now moves to the process mark,
3181which separates the pending input from the subprocess output and the
3182previously sent input.
3183
3184C-c M-r now runs comint-previous-matching-input-from-input;
3185it searches for a previous command, using the current pending input
3186as the search string.
3187
3188*** New option compilation-scroll-output can be set to scroll
3189automatically in compilation-mode windows.
3190
3191** C mode changes
3192
3193*** Multiline macros are now handled, both as they affect indentation,
3194and as recognized syntax. New syntactic symbol cpp-macro-cont is
3195assigned to second and subsequent lines of a multiline macro
79214ddf 3196definition.
a933dad1
DL
3197
3198*** A new style "user" which captures all non-hook-ified
3199(i.e. top-level) .emacs file variable settings and customizations.
3200Style "cc-mode" is an alias for "user" and is deprecated. "gnu"
3201style is still the default however.
3202
3203*** "java" style now conforms to Sun's JDK coding style.
3204
3205*** There are new commands c-beginning-of-defun, c-end-of-defun which
3206are alternatives which you could bind to C-M-a and C-M-e if you prefer
3207them. They do not have key bindings by default.
3208
3209*** New and improved implementations of M-a (c-beginning-of-statement)
3210and M-e (c-end-of-statement).
3211
3212*** C++ namespace blocks are supported, with new syntactic symbols
3213namespace-open, namespace-close, and innamespace.
3214
3215*** File local variable settings of c-file-style and c-file-offsets
3216makes the style variables local to that buffer only.
3217
3218*** New indentation functions c-lineup-close-paren,
3219c-indent-one-line-block, c-lineup-dont-change.
3220
3221*** Improvements (hopefully!) to the way CC Mode is loaded. You
3222should now be able to do a (require 'cc-mode) to get the entire
3223package loaded properly for customization in your .emacs file. A new
3224variable c-initialize-on-load controls this and is t by default.
3225
3226** Changes to hippie-expand.
3227
79214ddf 3228*** New customization variable `hippie-expand-dabbrev-skip-space'. If
a933dad1
DL
3229non-nil, trailing spaces may be included in the abbreviation to search for,
3230which then gives the same behavior as the original `dabbrev-expand'.
3231
3232*** New customization variable `hippie-expand-dabbrev-as-symbol'. If
3233non-nil, characters of syntax '_' is considered part of the word when
3234expanding dynamically.
3235
3236*** New customization variable `hippie-expand-no-restriction'. If
3237non-nil, narrowed buffers are widened before they are searched.
3238
3239*** New customization variable `hippie-expand-only-buffers'. If
3240non-empty, buffers searched are restricted to the types specified in
3241this list. Useful for example when constructing new special-purpose
3242expansion functions with `make-hippie-expand-function'.
3243
3244*** Text properties of the expansion are no longer copied.
3245
3246** Changes in BibTeX mode.
3247
3248*** Any titleword matching a regexp in the new variable
3249bibtex-autokey-titleword-ignore (case sensitive) is ignored during
3250automatic key generation. This replaces variable
3251bibtex-autokey-titleword-first-ignore, which only checked for matches
3252against the first word in the title.
3253
3254*** Autokey generation now uses all words from the title, not just
3255capitalized words. To avoid conflicts with existing customizations,
3256bibtex-autokey-titleword-ignore is set up such that words starting with
79214ddf 3257lowerkey characters will still be ignored. Thus, if you want to use
a933dad1 3258lowercase words from the title, you will have to overwrite the
79214ddf 3259bibtex-autokey-titleword-ignore standard setting.
a933dad1
DL
3260
3261*** Case conversion of names and title words for automatic key
3262generation is more flexible. Variable bibtex-autokey-preserve-case is
3263replaced by bibtex-autokey-titleword-case-convert and
3264bibtex-autokey-name-case-convert.
3265
3266** Changes in vcursor.el.
3267
3268*** Support for character terminals is available: there is a new keymap
3269and the vcursor will appear as an arrow between buffer text. A
3270variable `vcursor-interpret-input' allows input from the vcursor to be
3271entered exactly as if typed. Numerous functions, including
3272`vcursor-compare-windows', have been rewritten to improve consistency
3273in the selection of windows and corresponding keymaps.
3274
3275*** vcursor options can now be altered with M-x customize under the
3276Editing group once the package is loaded.
3277
3278*** Loading vcursor now does not define keys by default, as this is
3279generally a bad side effect. Use M-x customize to set
3280vcursor-key-bindings to t to restore the old behaviour.
3281
3282*** vcursor-auto-disable can be `copy', which turns off copying from the
3283vcursor, but doesn't disable it, after any non-vcursor command.
3284
3285** Ispell changes.
3286
79214ddf
FP
3287*** You can now spell check comments and strings in the current
3288buffer with M-x ispell-comments-and-strings. Comments and strings
a933dad1
DL
3289are identified by syntax tables in effect.
3290
3291*** Generic region skipping implemented.
3292A single buffer can be broken into a number of regions where text will
3293and will not be checked. The definitions of the regions can be user
3294defined. New applications and improvements made available by this
79214ddf 3295include:
a933dad1
DL
3296
3297 o URLs are automatically skipped
3298 o EMail message checking is vastly improved.
3299
3300*** Ispell can highlight the erroneous word even on non-window terminals.
3301
3302** Changes to RefTeX mode
3303
3304RefTeX has been updated in order to make it more usable with very
3305large projects (like a several volume math book). The parser has been
3306re-written from scratch. To get maximum speed from RefTeX, check the
3307section `Optimizations' in the manual.
3308
3309*** New recursive parser.
3310
3311The old version of RefTeX created a single large buffer containing the
3312entire multifile document in order to parse the document. The new
3313recursive parser scans the individual files.
3314
3315*** Parsing only part of a document.
79214ddf 3316
a933dad1
DL
3317Reparsing of changed document parts can now be made faster by enabling
3318partial scans. To use this feature, read the documentation string of
3319the variable `reftex-enable-partial-scans' and set the variable to t.
3320
3321 (setq reftex-enable-partial-scans t)
3322
3323*** Storing parsing information in a file.
3324
3325This can improve startup times considerably. To turn it on, use
3326
3327 (setq reftex-save-parse-info t)
3328
3329*** Using multiple selection buffers
3330
3331If the creation of label selection buffers is too slow (this happens
3332for large documents), you can reuse these buffers by setting
3333
3334 (setq reftex-use-multiple-selection-buffers t)
3335
3336*** References to external documents.
3337
3338The LaTeX package `xr' allows to cross-reference labels in external
3339documents. RefTeX can provide information about the external
3340documents as well. To use this feature, set up the \externaldocument
3341macros required by the `xr' package and rescan the document with
3342RefTeX. The external labels can then be accessed with the `x' key in
3343the selection buffer provided by `reftex-reference' (bound to `C-c )').
3344The `x' key also works in the table of contents buffer.
3345
3346*** Many more labeled LaTeX environments are recognized by default.
3347
3348The builtin command list now covers all the standard LaTeX commands,
3349and all of the major packages included in the LaTeX distribution.
3350
3351Also, RefTeX now understands the \appendix macro and changes
3352the enumeration of sections in the *toc* buffer accordingly.
3353
3354*** Mouse support for selection and *toc* buffers
3355
3356The mouse can now be used to select items in the selection and *toc*
3357buffers. See also the new option `reftex-highlight-selection'.
3358
3359*** New keymaps for selection and table of contents modes.
3360
3361The selection processes for labels and citation keys, and the table of
3362contents buffer now have their own keymaps: `reftex-select-label-map',
3363`reftex-select-bib-map', `reftex-toc-map'. The selection processes
3364have a number of new keys predefined. In particular, TAB lets you
3365enter a label with completion. Check the on-the-fly help (press `?'
3366at the selection prompt) or read the Info documentation to find out
3367more.
3368
3369*** Support for the varioref package
3370
3371The `v' key in the label selection buffer toggles \ref versus \vref.
3372
3373*** New hooks
3374
3375Three new hooks can be used to redefine the way labels, references,
3376and citations are created. These hooks are
3377`reftex-format-label-function', `reftex-format-ref-function',
3378`reftex-format-cite-function'.
3379
3380*** Citations outside LaTeX
3381
3382The command `reftex-citation' may also be used outside LaTeX (e.g. in
3383a mail buffer). See the Info documentation for details.
3384
3385*** Short context is no longer fontified.
3386
3387The short context in the label menu no longer copies the
3388fontification from the text in the buffer. If you prefer it to be
3389fontified, use
3390
3391 (setq reftex-refontify-context t)
3392
3393** file-cache-minibuffer-complete now accepts a prefix argument.
3394With a prefix argument, it does not try to do completion of
3395the file name within its directory; it only checks for other
3396directories that contain the same file name.
3397
3398Thus, given the file name Makefile, and assuming that a file
3399Makefile.in exists in the same directory, ordinary
3400file-cache-minibuffer-complete will try to complete Makefile to
3401Makefile.in and will therefore never look for other directories that
3402have Makefile. A prefix argument tells it not to look for longer
3403names such as Makefile.in, so that instead it will look for other
3404directories--just as if the name were already complete in its present
3405directory.
3406
3407** New modes and packages
3408
3409*** There is a new alternative major mode for Perl, Cperl mode.
3410It has many more features than Perl mode, and some people prefer
3411it, but some do not.
3412
3413*** There is a new major mode, M-x vhdl-mode, for editing files of VHDL
3414code.
3415
3416*** M-x which-function-mode enables a minor mode that displays the
3417current function name continuously in the mode line, as you move
3418around in a buffer.
3419
3420Which Function mode is effective in major modes which support Imenu.
3421
3422*** Gametree is a major mode for editing game analysis trees. The author
3423uses it for keeping notes about his postal Chess games, but it should
3424be helpful for other two-player games as well, as long as they have an
3425established system of notation similar to Chess.
3426
3427*** The new minor mode checkdoc-minor-mode provides Emacs Lisp
3428documentation string checking for style and spelling. The style
3429guidelines are found in the Emacs Lisp programming manual.
3430
3431*** The net-utils package makes some common networking features
3432available in Emacs. Some of these functions are wrappers around
3433system utilities (ping, nslookup, etc); others are implementations of
3434simple protocols (finger, whois) in Emacs Lisp. There are also
3435functions to make simple connections to TCP/IP ports for debugging and
3436the like.
3437
3438*** highlight-changes-mode is a minor mode that uses colors to
3439identify recently changed parts of the buffer text.
3440
3441*** The new package `midnight' lets you specify things to be done
3442within Emacs at midnight--by default, kill buffers that you have not
3443used in a considerable time. To use this feature, customize
3444the user option `midnight-mode' to t.
3445
3446*** The file generic-x.el defines a number of simple major modes.
3447
3448 apache-generic-mode: For Apache and NCSA httpd configuration files
3449 samba-generic-mode: Samba configuration files
3450 fvwm-generic-mode: For fvwm initialization files
3451 x-resource-generic-mode: For X resource files
3452 hosts-generic-mode: For hosts files (.rhosts, /etc/hosts, etc)
3453 mailagent-rules-generic-mode: For mailagent .rules files
3454 javascript-generic-mode: For JavaScript files
3455 vrml-generic-mode: For VRML files
3456 java-manifest-generic-mode: For Java MANIFEST files
3457 java-properties-generic-mode: For Java property files
3458 mailrc-generic-mode: For .mailrc files
3459
3460 Platform-specific modes:
3461
3462 prototype-generic-mode: For Solaris/Sys V prototype files
3463 pkginfo-generic-mode: For Solaris/Sys V pkginfo files
3464 alias-generic-mode: For C shell alias files
3465 inf-generic-mode: For MS-Windows INF files
3466 ini-generic-mode: For MS-Windows INI files
3467 reg-generic-mode: For MS-Windows Registry files
3468 bat-generic-mode: For MS-Windows BAT scripts
3469 rc-generic-mode: For MS-Windows Resource files
3470 rul-generic-mode: For InstallShield scripts
3471\f
3472* Lisp changes in Emacs 20.3 since the Emacs Lisp Manual was published
3473
3474** If you want a Lisp file to be read in unibyte mode,
3475use -*-unibyte: t;-*- on its first line.
3476That will force Emacs to read that file in unibyte mode.
3477Otherwise, the file will be loaded and byte-compiled in multibyte mode.
3478
3479Thus, each lisp file is read in a consistent way regardless of whether
3480you started Emacs with --unibyte, so that a Lisp program gives
3481consistent results regardless of how Emacs was started.
3482
3483** The new function assoc-default is useful for searching an alist,
3484and using a default value if the key is not found there. You can
3485specify a comparison predicate, so this function is useful for
3486searching comparing a string against an alist of regular expressions.
3487
3488** The functions unibyte-char-to-multibyte and
3489multibyte-char-to-unibyte convert between unibyte and multibyte
3490character codes, in a way that is appropriate for the current language
3491environment.
3492
3493** The functions read-event, read-char and read-char-exclusive now
3494take two optional arguments. PROMPT, if non-nil, specifies a prompt
3495string. SUPPRESS-INPUT-METHOD, if non-nil, says to disable the
3496current input method for reading this one event.
3497
3498** Two new variables print-escape-nonascii and print-escape-multibyte
3499now control whether to output certain characters as
3500backslash-sequences. print-escape-nonascii applies to single-byte
3501non-ASCII characters; print-escape-multibyte applies to multibyte
3502characters. Both of these variables are used only when printing
3503in readable fashion (prin1 uses them, princ does not).
3504\f
3505* Lisp changes in Emacs 20.3 before the Emacs Lisp Manual was published
3506
3507** Compiled Emacs Lisp files made with the modified "MBSK" version
3508of Emacs 20.2 do not work in Emacs 20.3.
3509
3510** Buffer positions are now measured in characters, as they were
3511in Emacs 19 and before. This means that (forward-char 1)
3512always increases point by 1.
3513
3514The function chars-in-region now just subtracts its arguments. It is
3515considered obsolete. The function char-boundary-p has been deleted.
3516
3517See below for additional changes relating to multibyte characters.
3518
3519** defcustom, defface and defgroup now accept the keyword `:version'.
3520Use this to specify in which version of Emacs a certain variable's
3521default value changed. For example,
3522
3523 (defcustom foo-max 34 "*Maximum number of foo's allowed."
3524 :type 'integer
3525 :group 'foo
3526 :version "20.3")
3527
79214ddf 3528 (defgroup foo-group nil "The foo group."
a933dad1
DL
3529 :version "20.3")
3530
3531If an entire new group is added or the variables in it have the
3532default values changed, then just add a `:version' to that group. It
3533is recommended that new packages added to the distribution contain a
3534`:version' in the top level group.
3535
3536This information is used to control the customize-changed-options command.
3537
3538** It is now an error to change the value of a symbol whose name
3539starts with a colon--if it is interned in the standard obarray.
3540
3541However, setting such a symbol to its proper value, which is that
3542symbol itself, is not an error. This is for the sake of programs that
3543support previous Emacs versions by explicitly setting these variables
3544to themselves.
3545
3546If you set the variable keyword-symbols-constant-flag to nil,
3547this error is suppressed, and you can set these symbols to any
3548values whatever.
3549
3550** There is a new debugger command, R.
3551It evaluates an expression like e, but saves the result
3552in the buffer *Debugger-record*.
3553
3554** Frame-local variables.
3555
3556You can now make a variable local to various frames. To do this, call
3557the function make-variable-frame-local; this enables frames to have
3558local bindings for that variable.
3559
3560These frame-local bindings are actually frame parameters: you create a
3561frame-local binding in a specific frame by calling
3562modify-frame-parameters and specifying the variable name as the
3563parameter name.
3564
3565Buffer-local bindings take precedence over frame-local bindings.
3566Thus, if the current buffer has a buffer-local binding, that binding is
3567active; otherwise, if the selected frame has a frame-local binding,
3568that binding is active; otherwise, the default binding is active.
3569
3570It would not be hard to implement window-local bindings, but it is not
3571clear that this would be very useful; windows tend to come and go in a
3572very transitory fashion, so that trying to produce any specific effect
3573through a window-local binding would not be very robust.
3574
3575** `sregexq' and `sregex' are two new functions for constructing
3576"symbolic regular expressions." These are Lisp expressions that, when
3577evaluated, yield conventional string-based regexps. The symbolic form
3578makes it easier to construct, read, and maintain complex patterns.
3579See the documentation in sregex.el.
3580
3581** parse-partial-sexp's return value has an additional element which
3582is used to pass information along if you pass it to another call to
3583parse-partial-sexp, starting its scan where the first call ended.
3584The contents of this field are not yet finalized.
3585
3586** eval-region now accepts a fourth optional argument READ-FUNCTION.
3587If it is non-nil, that function is used instead of `read'.
3588
3589** unload-feature by default removes the feature's functions from
3590known hooks to avoid trouble, but a package providing FEATURE can
3591define a hook FEATURE-unload-hook to be run by unload-feature instead.
3592
3593** read-from-minibuffer no longer returns the argument DEFAULT-VALUE
3594when the user enters empty input. It now returns the null string, as
3595it did in Emacs 19. The default value is made available in the
3596history via M-n, but it is not applied here as a default.
3597
3598The other, more specialized minibuffer-reading functions continue to
3599return the default value (not the null string) when the user enters
3600empty input.
3601
3602** The new variable read-buffer-function controls which routine to use
3603for selecting buffers. For example, if you set this variable to
3604`iswitchb-read-buffer', iswitchb will be used to read buffer names.
3605Other functions can also be used if they accept the same arguments as
3606`read-buffer' and return the selected buffer name as a string.
3607
3608** The new function read-passwd reads a password from the terminal,
3609echoing a period for each character typed. It takes three arguments:
3610a prompt string, a flag which says "read it twice to make sure", and a
3611default password to use if the user enters nothing.
3612
3613** The variable fill-nobreak-predicate gives major modes a way to
3614specify not to break a line at certain places. Its value is a
3615function which is called with no arguments, with point located at the
3616place where a break is being considered. If the function returns
3617non-nil, then the line won't be broken there.
3618
3619** window-end now takes an optional second argument, UPDATE.
3620If this is non-nil, then the function always returns an accurate
3621up-to-date value for the buffer position corresponding to the
3622end of the window, even if this requires computation.
3623
3624** other-buffer now takes an optional argument FRAME
3625which specifies which frame's buffer list to use.
3626If it is nil, that means use the selected frame's buffer list.
3627
3628** The new variable buffer-display-time, always local in every buffer,
3629holds the value of (current-time) as of the last time that a window
3630was directed to display this buffer.
3631
3632** It is now meaningful to compare two window-configuration objects
3633with `equal'. Two window-configuration objects are equal if they
3634describe equivalent arrangements of windows, in the same frame--in
3635other words, if they would give the same results if passed to
3636set-window-configuration.
3637
3638** compare-window-configurations is a new function that compares two
3639window configurations loosely. It ignores differences in saved buffer
3640positions and scrolling, and considers only the structure and sizes of
3641windows and the choice of buffers to display.
3642
3643** The variable minor-mode-overriding-map-alist allows major modes to
3644override the key bindings of a minor mode. The elements of this alist
3645look like the elements of minor-mode-map-alist: (VARIABLE . KEYMAP).
3646
3647If the VARIABLE in an element of minor-mode-overriding-map-alist has a
3648non-nil value, the paired KEYMAP is active, and totally overrides the
3649map (if any) specified for the same variable in minor-mode-map-alist.
3650
3651minor-mode-overriding-map-alist is automatically local in all buffers,
3652and it is meant to be set by major modes.
3653
3654** The function match-string-no-properties is like match-string
3655except that it discards all text properties from the result.
3656
3657** The function load-average now accepts an optional argument
3658USE-FLOATS. If it is non-nil, the load average values are returned as
3659floating point numbers, rather than as integers to be divided by 100.
3660
3661** The new variable temporary-file-directory specifies the directory
3662to use for creating temporary files. The default value is determined
3663in a reasonable way for your operating system; on GNU and Unix systems
3664it is based on the TMP and TMPDIR environment variables.
3665
3666** Menu changes
3667
3668*** easymenu.el now uses the new menu item format and supports the
3669keywords :visible and :filter. The existing keyword :keys is now
3670better supported.
3671
3672The variable `easy-menu-precalculate-equivalent-keybindings' controls
3673a new feature which calculates keyboard equivalents for the menu when
3674you define the menu. The default is t. If you rarely use menus, you
3675can set the variable to nil to disable this precalculation feature;
3676then the calculation is done only if you use the menu bar.
3677
3678*** A new format for menu items is supported.
3679
3680In a keymap, a key binding that has the format
3681 (STRING . REAL-BINDING) or (STRING HELP-STRING . REAL-BINDING)
3682defines a menu item. Now a menu item definition may also be a list that
3683starts with the symbol `menu-item'.
3684
3685The format is:
3686 (menu-item ITEM-NAME) or
3687 (menu-item ITEM-NAME REAL-BINDING . ITEM-PROPERTY-LIST)
3688where ITEM-NAME is an expression which evaluates to the menu item
3689string, and ITEM-PROPERTY-LIST has the form of a property list.
3690The supported properties include
3691
3692:enable FORM Evaluate FORM to determine whether the
3693 item is enabled.
3694:visible FORM Evaluate FORM to determine whether the
3695 item should appear in the menu.
79214ddf 3696:filter FILTER-FN
a933dad1
DL
3697 FILTER-FN is a function of one argument,
3698 which will be REAL-BINDING.
3699 It should return a binding to use instead.
3700:keys DESCRIPTION
3701 DESCRIPTION is a string that describes an equivalent keyboard
3702 binding for for REAL-BINDING. DESCRIPTION is expanded with
3703 `substitute-command-keys' before it is used.
3704:key-sequence KEY-SEQUENCE
3705 KEY-SEQUENCE is a key-sequence for an equivalent
3706 keyboard binding.
3707:key-sequence nil
3708 This means that the command normally has no
3709 keyboard equivalent.
3710:help HELP HELP is the extra help string (not currently used).
3711:button (TYPE . SELECTED)
3712 TYPE is :toggle or :radio.
3713 SELECTED is a form, to be evaluated, and its
3714 value says whether this button is currently selected.
3715
3716Buttons are at the moment only simulated by prefixes in the menu.
3717Eventually ordinary X-buttons may be supported.
3718
3719(menu-item ITEM-NAME) defines unselectable item.
3720
3721** New event types
3722
3723*** The new event type `mouse-wheel' is generated by a wheel on a
3724mouse (such as the MS Intellimouse). The event contains a delta that
3725corresponds to the amount and direction that the wheel is rotated,
3726which is typically used to implement a scroll or zoom. The format is:
3727
3728 (mouse-wheel POSITION DELTA)
3729
3730where POSITION is a list describing the position of the event in the
3731same format as a mouse-click event, and DELTA is a signed number
3732indicating the number of increments by which the wheel was rotated. A
3733negative DELTA indicates that the wheel was rotated backwards, towards
3734the user, and a positive DELTA indicates that the wheel was rotated
3735forward, away from the user.
3736
3737As of now, this event type is generated only on MS Windows.
3738
3739*** The new event type `drag-n-drop' is generated when a group of
3740files is selected in an application outside of Emacs, and then dragged
3741and dropped onto an Emacs frame. The event contains a list of
3742filenames that were dragged and dropped, which are then typically
3743loaded into Emacs. The format is:
3744
3745 (drag-n-drop POSITION FILES)
3746
3747where POSITION is a list describing the position of the event in the
3748same format as a mouse-click event, and FILES is the list of filenames
3749that were dragged and dropped.
3750
3751As of now, this event type is generated only on MS Windows.
3752
3753** Changes relating to multibyte characters.
3754
3755*** The variable enable-multibyte-characters is now read-only;
3756any attempt to set it directly signals an error. The only way
3757to change this value in an existing buffer is with set-buffer-multibyte.
3758
3759*** In a string constant, `\ ' now stands for "nothing at all". You
3760can use it to terminate a hex escape which is followed by a character
3761that could otherwise be read as part of the hex escape.
3762
3763*** String indices are now measured in characters, as they were
3764in Emacs 19 and before.
3765
3766The function chars-in-string has been deleted.
3767The function concat-chars has been renamed to `string'.
3768
3769*** The function set-buffer-multibyte sets the flag in the current
3770buffer that says whether the buffer uses multibyte representation or
3771unibyte representation. If the argument is nil, it selects unibyte
3772representation. Otherwise it selects multibyte representation.
3773
3774This function does not change the contents of the buffer, viewed
3775as a sequence of bytes. However, it does change the contents
3776viewed as characters; a sequence of two bytes which is treated as
3777one character when the buffer uses multibyte representation
3778will count as two characters using unibyte representation.
3779
3780This function sets enable-multibyte-characters to record which
3781representation is in use. It also adjusts various data in the buffer
3782(including its markers, overlays and text properties) so that they are
3783consistent with the new representation.
3784
3785*** string-make-multibyte takes a string and converts it to multibyte
3786representation. Most of the time, you don't need to care
3787about the representation, because Emacs converts when necessary;
3788however, it makes a difference when you compare strings.
3789
3790The conversion of non-ASCII characters works by adding the value of
3791nonascii-insert-offset to each character, or by translating them
3792using the table nonascii-translation-table.
3793
3794*** string-make-unibyte takes a string and converts it to unibyte
3795representation. Most of the time, you don't need to care about the
3796representation, but it makes a difference when you compare strings.
3797
3798The conversion from multibyte to unibyte representation
3799loses information; the only time Emacs performs it automatically
3800is when inserting a multibyte string into a unibyte buffer.
3801
3802*** string-as-multibyte takes a string, and returns another string
3803which contains the same bytes, but treats them as multibyte.
3804
3805*** string-as-unibyte takes a string, and returns another string
3806which contains the same bytes, but treats them as unibyte.
3807
3808*** The new function compare-strings lets you compare
3809portions of two strings. Unibyte strings are converted to multibyte,
3810so that a unibyte string can match a multibyte string.
3811You can specify whether to ignore case or not.
3812
3813*** assoc-ignore-case now uses compare-strings so that
3814it can treat unibyte and multibyte strings as equal.
3815
3816*** Regular expression operations and buffer string searches now
3817convert the search pattern to multibyte or unibyte to accord with the
3818buffer or string being searched.
3819
3820One consequence is that you cannot always use \200-\377 inside of
3821[...] to match all non-ASCII characters. This does still work when
3822searching or matching a unibyte buffer or string, but not when
3823searching or matching a multibyte string. Unfortunately, there is no
3824obvious choice of syntax to use within [...] for that job. But, what
3825you want is just to match all non-ASCII characters, the regular
3826expression [^\0-\177] works for it.
3827
3828*** Structure of coding system changed.
3829
3830All coding systems (including aliases and subsidiaries) are named
3831by symbols; the symbol's `coding-system' property is a vector
3832which defines the coding system. Aliases share the same vector
3833as the principal name, so that altering the contents of this
3834vector affects the principal name and its aliases. You can define
3835your own alias name of a coding system by the function
3836define-coding-system-alias.
3837
3838The coding system definition includes a property list of its own. Use
3839the new functions `coding-system-get' and `coding-system-put' to
3840access such coding system properties as post-read-conversion,
3841pre-write-conversion, character-translation-table-for-decode,
3842character-translation-table-for-encode, mime-charset, and
3843safe-charsets. For instance, (coding-system-get 'iso-latin-1
3844'mime-charset) gives the corresponding MIME-charset parameter
3845`iso-8859-1'.
3846
3847Among the coding system properties listed above, safe-charsets is new.
3848The value of this property is a list of character sets which this
3849coding system can correctly encode and decode. For instance:
3850(coding-system-get 'iso-latin-1 'safe-charsets) => (ascii latin-iso8859-1)
3851
3852Here, "correctly encode" means that the encoded character sets can
3853also be handled safely by systems other than Emacs as far as they
3854are capable of that coding system. Though, Emacs itself can encode
3855the other character sets and read it back correctly.
3856
3857*** The new function select-safe-coding-system can be used to find a
3858proper coding system for encoding the specified region or string.
3859This function requires a user interaction.
3860
3861*** The new functions find-coding-systems-region and
3862find-coding-systems-string are helper functions used by
3863select-safe-coding-system. They return a list of all proper coding
3864systems to encode a text in some region or string. If you don't want
3865a user interaction, use one of these functions instead of
3866select-safe-coding-system.
3867
3868*** The explicit encoding and decoding functions, such as
3869decode-coding-region and encode-coding-string, now set
3870last-coding-system-used to reflect the actual way encoding or decoding
3871was done.
3872
3873*** The new function detect-coding-with-language-environment can be
3874used to detect a coding system of text according to priorities of
3875coding systems used by some specific language environment.
3876
3877*** The functions detect-coding-region and detect-coding-string always
3878return a list if the arg HIGHEST is nil. Thus, if only ASCII
3879characters are found, they now return a list of single element
3880`undecided' or its subsidiaries.
3881
3882*** The new functions coding-system-change-eol-conversion and
3883coding-system-change-text-conversion can be used to get a different
3884coding system than what specified only in how end-of-line or text is
3885converted.
3886
3887*** The new function set-selection-coding-system can be used to set a
3888coding system for communicating with other X clients.
3889
3890*** The function `map-char-table' now passes as argument only valid
3891character codes, plus generic characters that stand for entire
3892character sets or entire subrows of a character set. In other words,
3893each time `map-char-table' calls its FUNCTION argument, the key value
3894either will be a valid individual character code, or will stand for a
3895range of characters.
3896
3897*** The new function `char-valid-p' can be used for checking whether a
3898Lisp object is a valid character code or not.
3899
3900*** The new function `charset-after' returns a charset of a character
3901in the current buffer at position POS.
3902
3903*** Input methods are now implemented using the variable
3904input-method-function. If this is non-nil, its value should be a
3905function; then, whenever Emacs reads an input event that is a printing
3906character with no modifier bits, it calls that function, passing the
3907event as an argument. Often this function will read more input, first
3908binding input-method-function to nil.
3909
3910The return value should be a list of the events resulting from input
3911method processing. These events will be processed sequentially as
3912input, before resorting to unread-command-events. Events returned by
3913the input method function are not passed to the input method function,
3914not even if they are printing characters with no modifier bits.
3915
3916The input method function is not called when reading the second and
3917subsequent events of a key sequence.
3918
3919*** You can customize any language environment by using
3920set-language-environment-hook and exit-language-environment-hook.
3921
3922The hook `exit-language-environment-hook' should be used to undo
3923customizations that you made with set-language-environment-hook. For
3924instance, if you set up a special key binding for a specific language
3925environment by set-language-environment-hook, you should set up
3926exit-language-environment-hook to restore the normal key binding.
3927\f
3928* Changes in Emacs 20.1
3929
3930** Emacs has a new facility for customization of its many user
3931options. It is called M-x customize. With this facility you can look
3932at the many user options in an organized way; they are grouped into a
3933tree structure.
3934
3935M-x customize also knows what sorts of values are legitimate for each
3936user option and ensures that you don't use invalid values.
3937
3938With M-x customize, you can set options either for the present Emacs
3939session or permanently. (Permanent settings are stored automatically
3940in your .emacs file.)
3941
3942** Scroll bars are now on the left side of the window.
3943You can change this with M-x customize-option scroll-bar-mode.
3944
3945** The mode line no longer includes the string `Emacs'.
3946This makes more space in the mode line for other information.
3947
3948** When you select a region with the mouse, it is highlighted
3949immediately afterward. At that time, if you type the DELETE key, it
3950kills the region.
3951
3952The BACKSPACE key, and the ASCII character DEL, do not do this; they
3953delete the character before point, as usual.
3954
3955** In an incremental search the whole current match is highlighted
3956on terminals which support this. (You can disable this feature
3957by setting search-highlight to nil.)
3958
3959** In the minibuffer, in some cases, you can now use M-n to
3960insert the default value into the minibuffer as text. In effect,
3961the default value (if the minibuffer routines know it) is tacked
3962onto the history "in the future". (The more normal use of the
3963history list is to use M-p to insert minibuffer input used in the
3964past.)
3965
3966** In Text mode, now only blank lines separate paragraphs.
3967This makes it possible to get the full benefit of Adaptive Fill mode
3968in Text mode, and other modes derived from it (such as Mail mode).
3969TAB in Text mode now runs the command indent-relative; this
3970makes a practical difference only when you use indented paragraphs.
3971
3972As a result, the old Indented Text mode is now identical to Text mode,
3973and is an alias for it.
3974
3975If you want spaces at the beginning of a line to start a paragraph,
3976use the new mode, Paragraph Indent Text mode.
3977
3978** Scrolling changes
3979
3980*** Scroll commands to scroll a whole screen now preserve the screen
3981position of the cursor, if scroll-preserve-screen-position is non-nil.
3982
3983In this mode, if you scroll several screens back and forth, finishing
3984on the same screen where you started, the cursor goes back to the line
3985where it started.
3986
3987*** If you set scroll-conservatively to a small number, then when you
3988move point a short distance off the screen, Emacs will scroll the
3989screen just far enough to bring point back on screen, provided that
3990does not exceed `scroll-conservatively' lines.
3991
3992*** The new variable scroll-margin says how close point can come to the
3993top or bottom of a window. It is a number of screen lines; if point
3994comes within that many lines of the top or bottom of the window, Emacs
3995recenters the window.
3996
3997** International character set support (MULE)
3998
3999Emacs now supports a wide variety of international character sets,
4000including European variants of the Latin alphabet, as well as Chinese,
4001Devanagari (Hindi and Marathi), Ethiopian, Greek, IPA, Japanese,
4002Korean, Lao, Russian, Thai, Tibetan, and Vietnamese scripts. These
4003features have been merged from the modified version of Emacs known as
4004MULE (for "MULti-lingual Enhancement to GNU Emacs")
4005
4006Users of these scripts have established many more-or-less standard
4007coding systems for storing files. Emacs uses a single multibyte
4008character encoding within Emacs buffers; it can translate from a wide
4009variety of coding systems when reading a file and can translate back
4010into any of these coding systems when saving a file.
4011
4012Keyboards, even in the countries where these character sets are used,
4013generally don't have keys for all the characters in them. So Emacs
4014supports various "input methods", typically one for each script or
4015language, to make it possible to type them.
4016
4017The Emacs internal multibyte encoding represents a non-ASCII
4018character as a sequence of bytes in the range 0200 through 0377.
4019
4020The new prefix key C-x RET is used for commands that pertain
4021to multibyte characters, coding systems, and input methods.
4022
4023You can disable multibyte character support as follows:
4024
4025 (setq-default enable-multibyte-characters nil)
4026
4027Calling the function standard-display-european turns off multibyte
4028characters, unless you specify a non-nil value for the second
4029argument, AUTO. This provides compatibility for people who are
4030already using standard-display-european to continue using unibyte
4031characters for their work until they want to change.
4032
4033*** Input methods
4034
4035An input method is a kind of character conversion which is designed
4036specifically for interactive input. In Emacs, typically each language
4037has its own input method (though sometimes several languages which use
4038the same characters can share one input method). Some languages
4039support several input methods.
4040
4041The simplest kind of input method works by mapping ASCII letters into
4042another alphabet. This is how the Greek and Russian input methods
4043work.
4044
4045A more powerful technique is composition: converting sequences of
4046characters into one letter. Many European input methods use
4047composition to produce a single non-ASCII letter from a sequence which
4048consists of a letter followed by diacritics. For example, a' is one
4049sequence of two characters that might be converted into a single
4050letter.
4051
4052The input methods for syllabic scripts typically use mapping followed
4053by conversion. The input methods for Thai and Korean work this way.
4054First, letters are mapped into symbols for particular sounds or tone
4055marks; then, sequences of these which make up a whole syllable are
4056mapped into one syllable sign--most often a "composite character".
4057
4058None of these methods works very well for Chinese and Japanese, so
4059they are handled specially. First you input a whole word using
4060phonetic spelling; then, after the word is in the buffer, Emacs
4061converts it into one or more characters using a large dictionary.
4062
4063Since there is more than one way to represent a phonetically spelled
4064word using Chinese characters, Emacs can only guess which one to use;
4065typically these input methods give you a way to say "guess again" if
4066the first guess is wrong.
4067
4068*** The command C-x RET m (toggle-enable-multibyte-characters)
4069turns multibyte character support on or off for the current buffer.
4070
4071If multibyte character support is turned off in a buffer, then each
4072byte is a single character, even codes 0200 through 0377--exactly as
4073they did in Emacs 19.34. This includes the features for support for
4074the European characters, ISO Latin-1 and ISO Latin-2.
4075
4076However, there is no need to turn off multibyte character support to
4077use ISO Latin-1 or ISO Latin-2; the Emacs multibyte character set
4078includes all the characters in these character sets, and Emacs can
4079translate automatically to and from either one.
4080
4081*** Visiting a file in unibyte mode.
4082
4083Turning off multibyte character support in the buffer after visiting a
4084file with multibyte code conversion will display the multibyte
4085sequences already in the buffer, byte by byte. This is probably not
4086what you want.
4087
4088If you want to edit a file of unibyte characters (Latin-1, for
4089example), you can do it by specifying `no-conversion' as the coding
4090system when reading the file. This coding system also turns off
4091multibyte characters in that buffer.
4092
4093If you turn off multibyte character support entirely, this turns off
4094character conversion as well.
4095
4096*** Displaying international characters on X Windows.
4097
4098A font for X typically displays just one alphabet or script.
4099Therefore, displaying the entire range of characters Emacs supports
4100requires using many fonts.
4101
4102Therefore, Emacs now supports "fontsets". Each fontset is a
4103collection of fonts, each assigned to a range of character codes.
4104
4105A fontset has a name, like a font. Individual fonts are defined by
4106the X server; fontsets are defined within Emacs itself. But once you
4107have defined a fontset, you can use it in a face or a frame just as
4108you would use a font.
4109
4110If a fontset specifies no font for a certain character, or if it
4111specifies a font that does not exist on your system, then it cannot
4112display that character. It will display an empty box instead.
4113
4114The fontset height and width are determined by the ASCII characters
4115(that is, by the font in the fontset which is used for ASCII
4116characters). If another font in the fontset has a different height,
4117or the wrong width, then characters assigned to that font are clipped,
4118and displayed within a box if highlight-wrong-size-font is non-nil.
4119
4120*** Defining fontsets.
4121
4122Emacs does not use any fontset by default. Its default font is still
4123chosen as in previous versions. You can tell Emacs to use a fontset
4124with the `-fn' option or the `Font' X resource.
4125
4126Emacs creates a standard fontset automatically according to the value
4127of standard-fontset-spec. This fontset's short name is
4128`fontset-standard'. Bold, italic, and bold-italic variants of the
4129standard fontset are created automatically.
4130
4131If you specify a default ASCII font with the `Font' resource or `-fn'
4132argument, a fontset is generated from it. This works by replacing the
4133FOUNDARY, FAMILY, ADD_STYLE, and AVERAGE_WIDTH fields of the font name
4134with `*' then using this to specify a fontset. This fontset's short
4135name is `fontset-startup'.
4136
4137Emacs checks resources of the form Fontset-N where N is 0, 1, 2...
4138The resource value should have this form:
4139 FONTSET-NAME, [CHARSET-NAME:FONT-NAME]...
4140FONTSET-NAME should have the form of a standard X font name, except:
4141 * most fields should be just the wild card "*".
4142 * the CHARSET_REGISTRY field should be "fontset"
4143 * the CHARSET_ENCODING field can be any nickname of the fontset.
4144The construct CHARSET-NAME:FONT-NAME can be repeated any number
4145of times; each time specifies the font for one character set.
4146CHARSET-NAME should be the name name of a character set, and
4147FONT-NAME should specify an actual font to use for that character set.
4148
4149Each of these fontsets has an alias which is made from the
4150last two font name fields, CHARSET_REGISTRY and CHARSET_ENCODING.
4151You can refer to the fontset by that alias or by its full name.
4152
4153For any character sets that you don't mention, Emacs tries to choose a
4154font by substituting into FONTSET-NAME. For instance, with the
4155following resource,
4156 Emacs*Fontset-0: -*-fixed-medium-r-normal-*-24-*-*-*-*-*-fontset-24
4157the font for ASCII is generated as below:
4158 -*-fixed-medium-r-normal-*-24-*-ISO8859-1
4159Here is the substitution rule:
4160 Change CHARSET_REGISTRY and CHARSET_ENCODING to that of the charset
4161 defined in the variable x-charset-registries. For instance, ASCII has
4162 the entry (ascii . "ISO8859-1") in this variable. Then, reduce
4163 sequences of wild cards -*-...-*- with a single wildcard -*-.
4164 (This is to prevent use of auto-scaled fonts.)
4165
4166The function which processes the fontset resource value to create the
4167fontset is called create-fontset-from-fontset-spec. You can also call
4168that function explicitly to create a fontset.
4169
4170With the X resource Emacs.Font, you can specify a fontset name just
4171like an actual font name. But be careful not to specify a fontset
4172name in a wildcard resource like Emacs*Font--that tries to specify the
4173fontset for other purposes including menus, and they cannot handle
4174fontsets.
4175
4176*** The command M-x set-language-environment sets certain global Emacs
4177defaults for a particular choice of language.
4178
4179Selecting a language environment typically specifies a default input
4180method and which coding systems to recognize automatically when
4181visiting files. However, it does not try to reread files you have
4182already visited; the text in those buffers is not affected. The
4183language environment may also specify a default choice of coding
4184system for new files that you create.
4185
4186It makes no difference which buffer is current when you use
4187set-language-environment, because these defaults apply globally to the
4188whole Emacs session.
4189
4190For example, M-x set-language-environment RET Latin-1 RET
4191chooses the Latin-1 character set. In the .emacs file, you can do this
4192with (set-language-environment "Latin-1").
4193
4194*** The command C-x RET f (set-buffer-file-coding-system)
4195specifies the file coding system for the current buffer. This
4196specifies what sort of character code translation to do when saving
4197the file. As an argument, you must specify the name of one of the
4198coding systems that Emacs supports.
4199
4200*** The command C-x RET c (universal-coding-system-argument)
4201lets you specify a coding system when you read or write a file.
4202This command uses the minibuffer to read a coding system name.
4203After you exit the minibuffer, the specified coding system
4204is used for *the immediately following command*.
4205
4206So if the immediately following command is a command to read or
4207write a file, it uses the specified coding system for that file.
4208
4209If the immediately following command does not use the coding system,
4210then C-x RET c ultimately has no effect.
4211
4212For example, C-x RET c iso-8859-1 RET C-x C-f temp RET
4213visits the file `temp' treating it as ISO Latin-1.
4214
4215*** You can specify the coding system for a file using the -*-
4216construct. Include `coding: CODINGSYSTEM;' inside the -*-...-*-
4217to specify use of coding system CODINGSYSTEM. You can also
4218specify the coding system in a local variable list at the end
4219of the file.
4220
4221*** The command C-x RET t (set-terminal-coding-system) specifies
4222the coding system for terminal output. If you specify a character
4223code for terminal output, all characters output to the terminal are
4224translated into that character code.
4225
4226This feature is useful for certain character-only terminals built in
4227various countries to support the languages of those countries.
4228
4229By default, output to the terminal is not translated at all.
4230
4231*** The command C-x RET k (set-keyboard-coding-system) specifies
4232the coding system for keyboard input.
4233
4234Character code translation of keyboard input is useful for terminals
4235with keys that send non-ASCII graphic characters--for example,
4236some terminals designed for ISO Latin-1 or subsets of it.
4237
4238By default, keyboard input is not translated at all.
4239
4240Character code translation of keyboard input is similar to using an
4241input method, in that both define sequences of keyboard input that
4242translate into single characters. However, input methods are designed
4243to be convenient for interactive use, while the code translations are
4244designed to work with terminals.
4245
4246*** The command C-x RET p (set-buffer-process-coding-system)
4247specifies the coding system for input and output to a subprocess.
4248This command applies to the current buffer; normally, each subprocess
4249has its own buffer, and thus you can use this command to specify
4250translation to and from a particular subprocess by giving the command
4251in the corresponding buffer.
4252
4253By default, process input and output are not translated at all.
4254
4255*** The variable file-name-coding-system specifies the coding system
4256to use for encoding file names before operating on them.
4257It is also used for decoding file names obtained from the system.
4258
4259*** The command C-\ (toggle-input-method) activates or deactivates
4260an input method. If no input method has been selected before, the
4261command prompts for you to specify the language and input method you
4262want to use.
4263
4264C-u C-\ (select-input-method) lets you switch to a different input
4265method. C-h C-\ (or C-h I) describes the current input method.
4266
4267*** Some input methods remap the keyboard to emulate various keyboard
4268layouts commonly used for particular scripts. How to do this
4269remapping properly depends on your actual keyboard layout. To specify
4270which layout your keyboard has, use M-x quail-set-keyboard-layout.
4271
4272*** The command C-h C (describe-coding-system) displays
4273the coding systems currently selected for various purposes, plus
4274related information.
4275
4276*** The command C-h h (view-hello-file) displays a file called
4277HELLO, which has examples of text in many languages, using various
4278scripts.
4279
4280*** The command C-h L (describe-language-support) displays
4281information about the support for a particular language.
4282You specify the language as an argument.
4283
4284*** The mode line now contains a letter or character that identifies
4285the coding system used in the visited file. It normally follows the
4286first dash.
4287
4288A dash indicates the default state of affairs: no code conversion
4289(except CRLF => newline if appropriate). `=' means no conversion
4290whatsoever. The ISO 8859 coding systems are represented by digits
42911 through 9. Other coding systems are represented by letters:
4292
4293 A alternativnyj (Russian)
4294 B big5 (Chinese)
4295 C cn-gb-2312 (Chinese)
4296 C iso-2022-cn (Chinese)
4297 D in-is13194-devanagari (Indian languages)
4298 E euc-japan (Japanese)
4299 I iso-2022-cjk or iso-2022-ss2 (Chinese, Japanese, Korean)
4300 J junet (iso-2022-7) or old-jis (iso-2022-jp-1978-irv) (Japanese)
4301 K euc-korea (Korean)
4302 R koi8 (Russian)
4303 Q tibetan
4304 S shift_jis (Japanese)
4305 T lao
4306 T tis620 (Thai)
4307 V viscii or vscii (Vietnamese)
4308 i iso-2022-lock (Chinese, Japanese, Korean)
4309 k iso-2022-kr (Korean)
4310 v viqr (Vietnamese)
4311 z hz (Chinese)
4312
4313When you are using a character-only terminal (not a window system),
4314two additional characters appear in between the dash and the file
4315coding system. These two characters describe the coding system for
4316keyboard input, and the coding system for terminal output.
4317
4318*** The new variable rmail-file-coding-system specifies the code
4319conversion to use for RMAIL files. The default value is nil.
4320
4321When you read mail with Rmail, each message is decoded automatically
4322into Emacs' internal format. This has nothing to do with
4323rmail-file-coding-system. That variable controls reading and writing
4324Rmail files themselves.
4325
4326*** The new variable sendmail-coding-system specifies the code
4327conversion for outgoing mail. The default value is nil.
4328
4329Actually, there are three different ways of specifying the coding system
4330for sending mail:
4331
4332- If you use C-x RET f in the mail buffer, that takes priority.
4333- Otherwise, if you set sendmail-coding-system non-nil, that specifies it.
4334- Otherwise, the default coding system for new files is used,
4335 if that is non-nil. That comes from your language environment.
4336- Otherwise, Latin-1 is used.
4337
4338*** The command C-h t (help-with-tutorial) accepts a prefix argument
4339to specify the language for the tutorial file. Currently, English,
4340Japanese, Korean and Thai are supported. We welcome additional
4341translations.
4342
4343** An easy new way to visit a file with no code or format conversion
4344of any kind: Use M-x find-file-literally. There is also a command
4345insert-file-literally which inserts a file into the current buffer
4346without any conversion.
4347
4348** C-q's handling of octal character codes is changed.
4349You can now specify any number of octal digits.
4350RET terminates the digits and is discarded;
4351any other non-digit terminates the digits and is then used as input.
4352
4353** There are new commands for looking up Info documentation for
4354functions, variables and file names used in your programs.
4355
4356Type M-x info-lookup-symbol to look up a symbol in the buffer at point.
4357Type M-x info-lookup-file to look up a file in the buffer at point.
4358
4359Precisely which Info files are used to look it up depends on the major
4360mode. For example, in C mode, the GNU libc manual is used.
4361
4362** M-TAB in most programming language modes now runs the command
4363complete-symbol. This command performs completion on the symbol name
4364in the buffer before point.
4365
4366With a numeric argument, it performs completion based on the set of
4367symbols documented in the Info files for the programming language that
4368you are using.
4369
4370With no argument, it does completion based on the current tags tables,
4371just like the old binding of M-TAB (complete-tag).
4372
4373** File locking works with NFS now.
4374
4375The lock file for FILENAME is now a symbolic link named .#FILENAME,
4376in the same directory as FILENAME.
4377
4378This means that collision detection between two different machines now
4379works reasonably well; it also means that no file server or directory
4380can become a bottleneck.
4381
4382The new method does have drawbacks. It means that collision detection
4383does not operate when you edit a file in a directory where you cannot
4384create new files. Collision detection also doesn't operate when the
4385file server does not support symbolic links. But these conditions are
4386rare, and the ability to have collision detection while using NFS is
4387so useful that the change is worth while.
4388
4389When Emacs or a system crashes, this may leave behind lock files which
4390are stale. So you may occasionally get warnings about spurious
4391collisions. When you determine that the collision is spurious, just
4392tell Emacs to go ahead anyway.
4393
4394** If you wish to use Show Paren mode to display matching parentheses,
4395it is no longer sufficient to load paren.el. Instead you must call
4396show-paren-mode.
4397
4398** If you wish to use Delete Selection mode to replace a highlighted
4399selection when you insert new text, it is no longer sufficient to load
4400delsel.el. Instead you must call the function delete-selection-mode.
4401
4402** If you wish to use Partial Completion mode to complete partial words
4403within symbols or filenames, it is no longer sufficient to load
4404complete.el. Instead you must call the function partial-completion-mode.
4405
4406** If you wish to use uniquify to rename buffers for you,
4407it is no longer sufficient to load uniquify.el. You must also
4408set uniquify-buffer-name-style to one of the non-nil legitimate values.
4409
4410** Changes in View mode.
4411
4412*** Several new commands are available in View mode.
4413Do H in view mode for a list of commands.
4414
4415*** There are two new commands for entering View mode:
4416view-file-other-frame and view-buffer-other-frame.
4417
4418*** Exiting View mode does a better job of restoring windows to their
4419previous state.
4420
4421*** New customization variable view-scroll-auto-exit. If non-nil,
4422scrolling past end of buffer makes view mode exit.
4423
4424*** New customization variable view-exits-all-viewing-windows. If
4425non-nil, view-mode will at exit restore all windows viewing buffer,
4426not just the selected window.
4427
4428*** New customization variable view-read-only. If non-nil, visiting a
4429read-only file automatically enters View mode, and toggle-read-only
4430turns View mode on or off.
4431
4432*** New customization variable view-remove-frame-by-deleting controls
4433how to remove a not needed frame at view mode exit. If non-nil,
4434delete the frame, if nil make an icon of it.
4435
4436** C-x v l, the command to print a file's version control log,
4437now positions point at the entry for the file's current branch version.
4438
4439** C-x v =, the command to compare a file with the last checked-in version,
4440has a new feature. If the file is currently not locked, so that it is
4441presumably identical to the last checked-in version, the command now asks
4442which version to compare with.
4443
4444** When using hideshow.el, incremental search can temporarily show hidden
79214ddf 4445blocks if a match is inside the block.
a933dad1
DL
4446
4447The block is hidden again if the search is continued and the next match
4448is outside the block. By customizing the variable
4449isearch-hide-immediately you can choose to hide all the temporarily
4450shown blocks only when exiting from incremental search.
4451
4452By customizing the variable hs-isearch-open you can choose what kind
4453of blocks to temporarily show during isearch: comment blocks, code
4454blocks, all of them or none.
4455
4456** The new command C-x 4 0 (kill-buffer-and-window) kills the
4457current buffer and deletes the selected window. It asks for
4458confirmation first.
4459
4460** C-x C-w, which saves the buffer into a specified file name,
4461now changes the major mode according to that file name.
4462However, the mode will not be changed if
4463(1) a local variables list or the `-*-' line specifies a major mode, or
4464(2) the current major mode is a "special" mode,
4465 not suitable for ordinary files, or
4466(3) the new file name does not particularly specify any mode.
4467
4468This applies to M-x set-visited-file-name as well.
4469
4470However, if you set change-major-mode-with-file-name to nil, then
4471these commands do not change the major mode.
4472
4473** M-x occur changes.
4474
4475*** If the argument to M-x occur contains upper case letters,
4476it performs a case-sensitive search.
4477
4478*** In the *Occur* buffer made by M-x occur,
4479if you type g or M-x revert-buffer, this repeats the search
4480using the same regular expression and the same buffer as before.
4481
4482** In Transient Mark mode, the region in any one buffer is highlighted
4483in just one window at a time. At first, it is highlighted in the
4484window where you set the mark. The buffer's highlighting remains in
4485that window unless you select to another window which shows the same
4486buffer--then the highlighting moves to that window.
4487
4488** The feature to suggest key bindings when you use M-x now operates
4489after the command finishes. The message suggesting key bindings
4490appears temporarily in the echo area. The previous echo area contents
4491come back after a few seconds, in case they contain useful information.
4492
4493** Each frame now independently records the order for recently
4494selected buffers, so that the default for C-x b is now based on the
4495buffers recently selected in the selected frame.
4496
4497** Outline mode changes.
4498
4499*** Outline mode now uses overlays (this is the former noutline.el).
4500
4501*** Incremental searches skip over invisible text in Outline mode.
4502
4503** When a minibuffer window is active but not the selected window, if
4504you try to use the minibuffer, you used to get a nested minibuffer.
4505Now, this not only gives an error, it also cancels the minibuffer that
4506was already active.
4507
4508The motive for this change is so that beginning users do not
4509unknowingly move away from minibuffers, leaving them active, and then
4510get confused by it.
4511
4512If you want to be able to have recursive minibuffers, you must
4513set enable-recursive-minibuffers to non-nil.
4514
4515** Changes in dynamic abbrevs.
4516
4517*** Expanding dynamic abbrevs with M-/ is now smarter about case
4518conversion. If the expansion has mixed case not counting the first
4519character, and the abbreviation matches the beginning of the expansion
4520including case, then the expansion is copied verbatim.
4521
4522The expansion is also copied verbatim if the abbreviation itself has
4523mixed case. And using SPC M-/ to copy an additional word always
4524copies it verbatim except when the previous copied word is all caps.
4525
4526*** The values of `dabbrev-case-replace' and `dabbrev-case-fold-search'
4527are no longer Lisp expressions. They have simply three possible
4528values.
4529
4530`dabbrev-case-replace' has these three values: nil (don't preserve
4531case), t (do), or `case-replace' (do like M-x query-replace).
4532`dabbrev-case-fold-search' has these three values: nil (don't ignore
4533case), t (do), or `case-fold-search' (do like search).
4534
4535** Minibuffer history lists are truncated automatically now to a
4536certain length. The variable history-length specifies how long they
4537can be. The default value is 30.
4538
4539** Changes in Mail mode.
4540
4541*** The key C-x m no longer runs the `mail' command directly.
4542Instead, it runs the command `compose-mail', which invokes the mail
4543composition mechanism you have selected with the variable
4544`mail-user-agent'. The default choice of user agent is
4545`sendmail-user-agent', which gives behavior compatible with the old
4546behavior.
4547
4548C-x 4 m now runs compose-mail-other-window, and C-x 5 m runs
4549compose-mail-other-frame.
4550
4551*** While composing a reply to a mail message, from Rmail, you can use
4552the command C-c C-r to cite just the region from the message you are
4553replying to. This copies the text which is the selected region in the
4554buffer that shows the original message.
4555
4556*** The command C-c C-i inserts a file at the end of the message,
4557with separator lines around the contents.
4558
4559*** The command M-x expand-mail-aliases expands all mail aliases
4560in suitable mail headers. Emacs automatically extracts mail alias
4561definitions from your mail alias file (e.g., ~/.mailrc). You do not
4562need to expand mail aliases yourself before sending mail.
4563
4564*** New features in the mail-complete command.
4565
4566**** The mail-complete command now inserts the user's full name,
4567for local users or if that is known. The variable mail-complete-style
4568controls the style to use, and whether to do this at all.
4569Its values are like those of mail-from-style.
4570
4571**** The variable mail-passwd-command lets you specify a shell command
4572to run to fetch a set of password-entries that add to the ones in
4573/etc/passwd.
4574
4575**** The variable mail-passwd-file now specifies a list of files to read
4576to get the list of user ids. By default, one file is used:
4577/etc/passwd.
4578
4579** You can "quote" a file name to inhibit special significance of
4580special syntax, by adding `/:' to the beginning. Thus, if you have a
4581directory named `/foo:', you can prevent it from being treated as a
4582reference to a remote host named `foo' by writing it as `/:/foo:'.
4583
4584Emacs uses this new construct automatically when necessary, such as
4585when you start it with a working directory whose name might otherwise
4586be taken to be magic.
4587
4588** There is a new command M-x grep-find which uses find to select
4589files to search through, and grep to scan them. The output is
4590available in a Compile mode buffer, as with M-x grep.
4591
4592M-x grep now uses the -e option if the grep program supports that.
4593(-e prevents problems if the search pattern starts with a dash.)
4594
4595** In Dired, the & command now flags for deletion the files whose names
4596suggest they are probably not needed in the long run.
4597
4598In Dired, * is now a prefix key for mark-related commands.
4599
4600new key dired.el binding old key
4601------- ---------------- -------
4602 * c dired-change-marks c
4603 * m dired-mark m
4604 * * dired-mark-executables * (binding deleted)
4605 * / dired-mark-directories / (binding deleted)
4606 * @ dired-mark-symlinks @ (binding deleted)
4607 * u dired-unmark u
4608 * DEL dired-unmark-backward DEL
4609 * ? dired-unmark-all-files M-C-?
4610 * ! dired-unmark-all-marks
4611 * % dired-mark-files-regexp % m
4612 * C-n dired-next-marked-file M-}
4613 * C-p dired-prev-marked-file M-{
4614
4615** Rmail changes.
4616
4617*** When Rmail cannot convert your incoming mail into Babyl format, it
4618saves the new mail in the file RMAILOSE.n, where n is an integer
4619chosen to make a unique name. This way, Rmail will not keep crashing
4620each time you run it.
4621
4622*** In Rmail, the variable rmail-summary-line-count-flag now controls
4623whether to include the line count in the summary. Non-nil means yes.
4624
4625*** In Rmail summary buffers, d and C-d (the commands to delete
4626messages) now take repeat counts as arguments. A negative argument
4627means to move in the opposite direction.
4628
4629*** In Rmail, the t command now takes an optional argument which lets
4630you specify whether to show the message headers in full or pruned.
4631
4632*** In Rmail, the new command w (rmail-output-body-to-file) writes
4633just the body of the current message into a file, without the headers.
4634It takes the file name from the message subject, by default, but you
4635can edit that file name in the minibuffer before it is actually used
4636for output.
4637
4638** Gnus changes.
4639
4640*** nntp.el has been totally rewritten in an asynchronous fashion.
4641
79214ddf
FP
4642*** Article prefetching functionality has been moved up into
4643Gnus.
a933dad1 4644
79214ddf 4645*** Scoring can now be performed with logical operators like
a933dad1
DL
4646`and', `or', `not', and parent redirection.
4647
4648*** Article washing status can be displayed in the
4649article mode line.
4650
4651*** gnus.el has been split into many smaller files.
4652
4653*** Suppression of duplicate articles based on Message-ID.
4654
4655(setq gnus-suppress-duplicates t)
4656
4657*** New variables for specifying what score and adapt files
4658are to be considered home score and adapt files. See
4659`gnus-home-score-file' and `gnus-home-adapt-files'.
4660
4661*** Groups can inherit group parameters from parent topics.
4662
4663*** Article editing has been revamped and is now usable.
4664
4665*** Signatures can be recognized in more intelligent fashions.
4666See `gnus-signature-separator' and `gnus-signature-limit'.
4667
4668*** Summary pick mode has been made to look more nn-like.
4669Line numbers are displayed and the `.' command can be
4670used to pick articles.
4671
4672*** Commands for moving the .newsrc.eld from one server to
4673another have been added.
4674
4675 `M-x gnus-change-server'
4676
4677*** A way to specify that "uninteresting" fields be suppressed when
4678generating lines in buffers.
4679
4680*** Several commands in the group buffer can be undone with
4681`M-C-_'.
4682
4683*** Scoring can be done on words using the new score type `w'.
4684
4685*** Adaptive scoring can be done on a Subject word-by-word basis:
4686
4687 (setq gnus-use-adaptive-scoring '(word))
4688
4689*** Scores can be decayed.
79214ddf 4690
a933dad1
DL
4691 (setq gnus-decay-scores t)
4692
4693*** Scoring can be performed using a regexp on the Date header. The
4694Date is normalized to compact ISO 8601 format first.
4695
4696*** A new command has been added to remove all data on articles from
4697the native server.
4698
4699 `M-x gnus-group-clear-data-on-native-groups'
4700
4701*** A new command for reading collections of documents
4702(nndoc with nnvirtual on top) has been added -- `M-C-d'.
4703
4704*** Process mark sets can be pushed and popped.
4705
4706*** A new mail-to-news backend makes it possible to post
4707even when the NNTP server doesn't allow posting.
4708
4709*** A new backend for reading searches from Web search engines
4710(DejaNews, Alta Vista, InReference) has been added.
4711
4712 Use the `G w' command in the group buffer to create such
4713 a group.
4714
4715*** Groups inside topics can now be sorted using the standard
4716sorting functions, and each topic can be sorted independently.
4717
4718 See the commands under the `T S' submap.
4719
4720*** Subsets of the groups can be sorted independently.
4721
4722 See the commands under the `G P' submap.
4723
4724*** Cached articles can be pulled into the groups.
79214ddf 4725
a933dad1
DL
4726 Use the `Y c' command.
4727
4728*** Score files are now applied in a more reliable order.
4729
4730*** Reports on where mail messages end up can be generated.
4731
4732 `M-x nnmail-split-history'
4733
4734*** More hooks and functions have been added to remove junk
4735from incoming mail before saving the mail.
79214ddf 4736
a933dad1
DL
4737 See `nnmail-prepare-incoming-header-hook'.
4738
4739*** The nnml mail backend now understands compressed article files.
4740
4741*** To enable Gnus to read/post multi-lingual articles, you must execute
4742the following code, for instance, in your .emacs.
4743
4744 (add-hook 'gnus-startup-hook 'gnus-mule-initialize)
4745
4746Then, when you start Gnus, it will decode non-ASCII text automatically
4747and show appropriate characters. (Note: if you are using gnus-mime
4748from the SEMI package, formerly known as TM, you should NOT add this
4749hook to gnus-startup-hook; gnus-mime has its own method of handling
4750this issue.)
4751
4752Since it is impossible to distinguish all coding systems
4753automatically, you may need to specify a choice of coding system for a
4754particular news group. This can be done by:
4755
4756 (gnus-mule-add-group NEWSGROUP 'CODING-SYSTEM)
4757
4758Here NEWSGROUP should be a string which names a newsgroup or a tree
4759of newsgroups. If NEWSGROUP is "XXX.YYY", all news groups under
4760"XXX.YYY" (including "XXX.YYY.ZZZ") will use the specified coding
4761system. CODING-SYSTEM specifies which coding system to use (for both
4762for reading and posting).
4763
4764CODING-SYSTEM can also be a cons cell of the form
4765 (READ-CODING-SYSTEM . POST-CODING-SYSTEM)
4766Then READ-CODING-SYSTEM is used when you read messages from the
4767newsgroups, while POST-CODING-SYSTEM is used when you post messages
4768there.
4769
4770Emacs knows the right coding systems for certain newsgroups by
4771default. Here are some of these default settings:
4772
4773 (gnus-mule-add-group "fj" 'iso-2022-7)
4774 (gnus-mule-add-group "alt.chinese.text" 'hz-gb-2312)
4775 (gnus-mule-add-group "alt.hk" 'hz-gb-2312)
4776 (gnus-mule-add-group "alt.chinese.text.big5" 'cn-big5)
4777 (gnus-mule-add-group "soc.culture.vietnamese" '(nil . viqr))
4778
4779When you reply by mail to an article, these settings are ignored;
4780the mail is encoded according to sendmail-coding-system, as usual.
4781
4782** CC mode changes.
4783
4784*** If you edit primarily one style of C (or C++, Objective-C, Java)
4785code, you may want to make the CC Mode style variables have global
4786values so that you can set them directly in your .emacs file. To do
4787this, set c-style-variables-are-local-p to nil in your .emacs file.
4788Note that this only takes effect if you do it *before* cc-mode.el is
4789loaded.
4790
4791If you typically edit more than one style of C (or C++, Objective-C,
79214ddf 4792Java) code in a single Emacs session, you may want to make the CC Mode
a933dad1 4793style variables have buffer local values. By default, all buffers
79214ddf
FP
4794share the same style variable settings; to make them buffer local, set
4795c-style-variables-are-local-p to t in your .emacs file. Note that you
a933dad1
DL
4796must do this *before* CC Mode is loaded.
4797
4798*** The new variable c-indentation-style holds the C style name
4799of the current buffer.
4800
4801*** The variable c-block-comments-indent-p has been deleted, because
4802it is no longer necessary. C mode now handles all the supported styles
4803of block comments, with no need to say which one you will use.
4804
4805*** There is a new indentation style "python", which specifies the C
4806style that the Python developers like.
4807
4808*** There is a new c-cleanup-list option: brace-elseif-brace.
4809This says to put ...} else if (...) {... on one line,
4810just as brace-else-brace says to put ...} else {... on one line.
4811
4812** VC Changes [new]
4813
4814** In vc-retrieve-snapshot (C-x v r), if you don't specify a snapshot
4815name, it retrieves the *latest* versions of all files in the current
4816directory and its subdirectories (aside from files already locked).
4817
4818This feature is useful if your RCS directory is a link to a common
4819master directory, and you want to pick up changes made by other
4820developers.
4821
4822You can do the same thing for an individual file by typing C-u C-x C-q
4823RET in a buffer visiting that file.
4824
4825*** VC can now handle files under CVS that are being "watched" by
4826other developers. Such files are made read-only by CVS. To get a
4827writable copy, type C-x C-q in a buffer visiting such a file. VC then
4828calls "cvs edit", which notifies the other developers of it.
4829
4830*** vc-version-diff (C-u C-x v =) now suggests reasonable defaults for
4831version numbers, based on the current state of the file.
4832
4833** Calendar changes.
4834
4835A new function, list-holidays, allows you list holidays or subclasses
4836of holidays for ranges of years. Related menu items allow you do this
4837for the year of the selected date, or the following/previous years.
4838
4839** ps-print changes
4840
79214ddf 4841There are some new user variables for customizing the page layout.
a933dad1
DL
4842
4843*** Paper size, paper orientation, columns
4844
4845The variable `ps-paper-type' determines the size of paper ps-print
4846formats for; it should contain one of the symbols:
4847`a4' `a3' `letter' `legal' `letter-small' `tabloid'
4848`ledger' `statement' `executive' `a4small' `b4' `b5'
4849It defaults to `letter'.
4850If you need other sizes, see the variable `ps-page-dimensions-database'.
4851
4852The variable `ps-landscape-mode' determines the orientation
79214ddf 4853of the printing on the page. nil, the default, means "portrait" mode,
a933dad1
DL
4854non-nil means "landscape" mode.
4855
4856The variable `ps-number-of-columns' must be a positive integer.
4857It determines the number of columns both in landscape and portrait mode.
79214ddf 4858It defaults to 1.
a933dad1
DL
4859
4860*** Horizontal layout
4861
4862The horizontal layout is determined by the variables
4863`ps-left-margin', `ps-inter-column', and `ps-right-margin'.
4864All are measured in points.
4865
4866*** Vertical layout
4867
4868The vertical layout is determined by the variables
4869`ps-bottom-margin', `ps-top-margin', and `ps-header-offset'.
4870All are measured in points.
4871
4872*** Headers
4873
4874If the variable `ps-print-header' is nil, no header is printed. Then
4875`ps-header-offset' is not relevant and `ps-top-margin' represents the
4876margin above the text.
4877
79214ddf 4878If the variable `ps-print-header-frame' is non-nil, a gaudy
a933dad1
DL
4879framing box is printed around the header.
4880
4881The contents of the header are determined by `ps-header-lines',
4882`ps-show-n-of-n', `ps-left-header' and `ps-right-header'.
4883
79214ddf
FP
4884The height of the header is determined by `ps-header-line-pad',
4885`ps-header-font-family', `ps-header-title-font-size' and
a933dad1
DL
4886`ps-header-font-size'.
4887
4888*** Font managing
4889
4890The variable `ps-font-family' determines which font family is to be
4891used for ordinary text. Its value must be a key symbol in the alist
4892`ps-font-info-database'. You can add other font families by adding
4893elements to this alist.
4894
79214ddf 4895The variable `ps-font-size' determines the size of the font
a933dad1
DL
4896for ordinary text. It defaults to 8.5 points.
4897
4898** hideshow changes.
4899
4900*** now supports hiding of blocks of single line comments (like // for
79214ddf 4901C++, ; for lisp).
a933dad1
DL
4902
4903*** Support for java-mode added.
4904
4905*** When doing `hs-hide-all' it is now possible to also hide the comments
4906in the file if `hs-hide-comments-when-hiding-all' is set.
4907
4908*** The new function `hs-hide-initial-comment' hides the the comments at
4909the beginning of the files. Finally those huge RCS logs don't stay in your
4910way! This is run by default when entering the `hs-minor-mode'.
4911
4912*** Now uses overlays instead of `selective-display', so is more
4913robust and a lot faster.
4914
79214ddf 4915*** A block beginning can span multiple lines.
a933dad1
DL
4916
4917*** The new variable `hs-show-hidden-short-form' if t, directs hideshow
4918to show only the beginning of a block when it is hidden. See the
4919documentation for more details.
4920
4921** Changes in Enriched mode.
4922
4923*** When you visit a file in enriched-mode, Emacs will make sure it is
4924filled to the current fill-column. This behavior is now independent
4925of the size of the window. When you save the file, the fill-column in
4926use is stored as well, so that the whole buffer need not be refilled
4927the next time unless the fill-column is different.
4928
4929*** use-hard-newlines is now a minor mode. When it is enabled, Emacs
4930distinguishes between hard and soft newlines, and treats hard newlines
4931as paragraph boundaries. Otherwise all newlines inserted are marked
4932as soft, and paragraph boundaries are determined solely from the text.
4933
4934** Font Lock mode
4935
4936*** Custom support
4937
4938The variables font-lock-face-attributes, font-lock-display-type and
4939font-lock-background-mode are now obsolete; the recommended way to specify the
4940faces to use for Font Lock mode is with M-x customize-group on the new custom
4941group font-lock-highlighting-faces. If you set font-lock-face-attributes in
4942your ~/.emacs file, Font Lock mode will respect its value. However, you should
4943consider converting from setting that variable to using M-x customize.
4944
4945You can still use X resources to specify Font Lock face appearances.
4946
4947*** Maximum decoration
4948
4949Fontification now uses the maximum level of decoration supported by
4950default. Previously, fontification used a mode-specific default level
4951of decoration, which is typically the minimum level of decoration
4952supported. You can set font-lock-maximum-decoration to nil
4953to get the old behavior.
4954
4955*** New support
4956
4957Support is now provided for Java, Objective-C, AWK and SIMULA modes.
4958
4959Note that Font Lock mode can be turned on without knowing exactly what modes
4960support Font Lock mode, via the command global-font-lock-mode.
4961
4962*** Configurable support
4963
4964Support for C, C++, Objective-C and Java can be more easily configured for
4965additional types and classes via the new variables c-font-lock-extra-types,
4966c++-font-lock-extra-types, objc-font-lock-extra-types and, you guessed it,
4967java-font-lock-extra-types. These value of each of these variables should be a
4968list of regexps matching the extra type names. For example, the default value
4969of c-font-lock-extra-types is ("\\sw+_t") which means fontification follows the
4970convention that C type names end in _t. This results in slower fontification.
4971
4972Of course, you can change the variables that specify fontification in whatever
4973way you wish, typically by adding regexps. However, these new variables make
4974it easier to make specific and common changes for the fontification of types.
4975
4976*** Adding highlighting patterns to existing support
4977
4978You can use the new function font-lock-add-keywords to add your own
4979highlighting patterns, such as for project-local or user-specific constructs,
4980for any mode.
4981
4982For example, to highlight `FIXME:' words in C comments, put:
4983
4984 (font-lock-add-keywords 'c-mode '(("\\<FIXME:" 0 font-lock-warning-face t)))
4985
4986in your ~/.emacs.
4987
4988*** New faces
4989
4990Font Lock now defines two new faces, font-lock-builtin-face and
4991font-lock-warning-face. These are intended to highlight builtin keywords,
4992distinct from a language's normal keywords, and objects that should be brought
4993to user attention, respectively. Various modes now use these new faces.
4994
4995*** Changes to fast-lock support mode
4996
4997The fast-lock package, one of the two Font Lock support modes, can now process
4998cache files silently. You can use the new variable fast-lock-verbose, in the
4999same way as font-lock-verbose, to control this feature.
5000
5001*** Changes to lazy-lock support mode
5002
5003The lazy-lock package, one of the two Font Lock support modes, can now fontify
5004according to the true syntactic context relative to other lines. You can use
5005the new variable lazy-lock-defer-contextually to control this feature. If
5006non-nil, changes to the buffer will cause subsequent lines in the buffer to be
5007refontified after lazy-lock-defer-time seconds of idle time. If nil, then only
5008the modified lines will be refontified; this is the same as the previous Lazy
5009Lock mode behaviour and the behaviour of Font Lock mode.
5010
5011This feature is useful in modes where strings or comments can span lines.
5012For example, if a string or comment terminating character is deleted, then if
5013this feature is enabled subsequent lines in the buffer will be correctly
5014refontified to reflect their new syntactic context. Previously, only the line
5015containing the deleted character would be refontified and you would have to use
5016the command M-g M-g (font-lock-fontify-block) to refontify some lines.
5017
5018As a consequence of this new feature, two other variables have changed:
5019
5020Variable `lazy-lock-defer-driven' is renamed `lazy-lock-defer-on-scrolling'.
5021Variable `lazy-lock-defer-time' can now only be a time, i.e., a number.
5022Buffer modes for which on-the-fly deferral applies can be specified via the
5023new variable `lazy-lock-defer-on-the-fly'.
5024
5025If you set these variables in your ~/.emacs, then you may have to change those
5026settings.
5027
5028** Ada mode changes.
5029
5030*** There is now better support for using find-file.el with Ada mode.
5031If you switch between spec and body, the cursor stays in the same
5032procedure (modulo overloading). If a spec has no body file yet, but
5033you try to switch to its body file, Ada mode now generates procedure
5034stubs.
5035
5036*** There are two new commands:
5037 - `ada-make-local' : invokes gnatmake on the current buffer
5038 - `ada-check-syntax' : check syntax of current buffer.
5039
5040The user options `ada-compiler-make', `ada-make-options',
5041`ada-language-version', `ada-compiler-syntax-check', and
79214ddf 5042`ada-compile-options' are used within these commands.
a933dad1
DL
5043
5044*** Ada mode can now work with Outline minor mode. The outline level
5045is calculated from the indenting, not from syntactic constructs.
5046Outlining does not work if your code is not correctly indented.
5047
5048*** The new function `ada-gnat-style' converts the buffer to the style of
5049formatting used in GNAT. It places two blanks after a comment start,
5050places one blank between a word end and an opening '(', and puts one
5051space between a comma and the beginning of a word.
5052
5053** Scheme mode changes.
5054
5055*** Scheme mode indentation now uses many of the facilities of Lisp
5056mode; therefore, the variables to customize it are the variables used
5057for Lisp mode which have names starting with `lisp-'. The variables
5058with names starting with `scheme-' which used to do this no longer
5059have any effect.
5060
5061If you want to use different indentation for Scheme and Lisp, this is
5062still possible, but now you must do it by adding a hook to
5063scheme-mode-hook, which could work by setting the `lisp-' indentation
5064variables as buffer-local variables.
5065
5066*** DSSSL mode is a variant of Scheme mode, for editing DSSSL scripts.
5067Use M-x dsssl-mode.
5068
5069** The emacsclient program now accepts an option --no-wait which tells
5070it to return immediately without waiting for you to "finish" the
5071buffer in Emacs.
5072
5073** M-x eldoc-mode enables a minor mode in which the echo area
5074constantly shows the parameter list for function being called at point
5075(in Emacs Lisp and Lisp Interaction modes only).
5076
5077** C-x n d now runs the new command narrow-to-defun,
5078which narrows the accessible parts of the buffer to just
5079the current defun.
5080
5081** Emacs now handles the `--' argument in the standard way; all
5082following arguments are treated as ordinary file names.
5083
5084** On MSDOS and Windows, the bookmark file is now called _emacs.bmk,
5085and the saved desktop file is now called _emacs.desktop (truncated if
5086necessary).
5087
5088** When you kill a buffer that visits a file,
5089if there are any registers that save positions in the file,
5090these register values no longer become completely useless.
5091If you try to go to such a register with C-x j, then you are
5092asked whether to visit the file again. If you say yes,
5093it visits the file and then goes to the same position.
5094
5095** When you visit a file that changes frequently outside Emacs--for
5096example, a log of output from a process that continues to run--it may
5097be useful for Emacs to revert the file without querying you whenever
5098you visit the file afresh with C-x C-f.
5099
5100You can request this behavior for certain files by setting the
5101variable revert-without-query to a list of regular expressions. If a
5102file's name matches any of these regular expressions, find-file and
5103revert-buffer revert the buffer without asking for permission--but
5104only if you have not edited the buffer text yourself.
5105
5106** set-default-font has been renamed to set-frame-font
5107since it applies only to the current frame.
5108
5109** In TeX mode, you can use the variable tex-main-file to specify the
5110file for tex-file to run TeX on. (By default, tex-main-file is nil,
5111and tex-file runs TeX on the current visited file.)
5112
5113This is useful when you are editing a document that consists of
5114multiple files. In each of the included files, you can set up a local
5115variable list which specifies the top-level file of your document for
5116tex-main-file. Then tex-file will run TeX on the whole document
5117instead of just the file you are editing.
5118
5119** RefTeX mode
5120
5121RefTeX mode is a new minor mode with special support for \label, \ref
5122and \cite macros in LaTeX documents. RefTeX distinguishes labels of
5123different environments (equation, figure, ...) and has full support for
5124multifile documents. To use it, select a buffer with a LaTeX document and
5125turn the mode on with M-x reftex-mode. Here are the main user commands:
5126
79214ddf 5127C-c ( reftex-label
a933dad1
DL
5128 Creates a label semi-automatically. RefTeX is context sensitive and
5129 knows which kind of label is needed.
5130
5131C-c ) reftex-reference
5132 Offers in a menu all labels in the document, along with context of the
5133 label definition. The selected label is referenced as \ref{LABEL}.
5134
5135C-c [ reftex-citation
5136 Prompts for a regular expression and displays a list of matching BibTeX
5137 database entries. The selected entry is cited with a \cite{KEY} macro.
5138
5139C-c & reftex-view-crossref
5140 Views the cross reference of a \ref or \cite command near point.
5141
5142C-c = reftex-toc
5143 Shows a table of contents of the (multifile) document. From there you
5144 can quickly jump to every section.
79214ddf 5145
a933dad1
DL
5146Under X, RefTeX installs a "Ref" menu in the menu bar, with additional
5147commands. Press `?' to get help when a prompt mentions this feature.
5148Full documentation and customization examples are in the file
5149reftex.el. You can use the finder to view the file documentation:
5150C-h p --> tex --> reftex.el
5151
5152** Changes in BibTeX mode.
5153
5154*** Info documentation is now available.
5155
5156*** Don't allow parentheses in string constants anymore. This confused
5157both the BibTeX program and Emacs BibTeX mode.
5158
5159*** Renamed variable bibtex-mode-user-optional-fields to
5160bibtex-user-optional-fields.
5161
5162*** Removed variable bibtex-include-OPTannote
5163(use bibtex-user-optional-fields instead).
5164
5165*** New interactive functions to copy and kill fields and complete
5166entries to the BibTeX kill ring, from where they can be yanked back by
5167appropriate functions.
5168
5169*** New interactive functions for repositioning and marking of
5170entries. They are bound by default to M-C-l and M-C-h.
5171
5172*** New hook bibtex-clean-entry-hook. It is called after entry has
5173been cleaned.
5174
5175*** New variable bibtex-field-delimiters, which replaces variables
5176bibtex-field-{left|right}-delimiter.
5177
5178*** New variable bibtex-entry-delimiters to determine how entries
5179shall be delimited.
5180
5181*** Allow preinitialization of fields. See documentation of
5182bibtex-user-optional-fields, bibtex-entry-field-alist, and
5183bibtex-include-OPTkey for details.
5184
5185*** Book and InBook entries require either an author or an editor
5186field. This is now supported by bibtex.el. Alternative fields are
5187prefixed with `ALT'.
5188
5189*** New variable bibtex-entry-format, which replaces variable
5190bibtex-clean-entry-zap-empty-opts and allows specification of many
5191formatting options performed on cleaning an entry (see variable
5192documentation).
5193
5194*** Even more control on how automatic keys are generated. See
5195documentation of bibtex-generate-autokey for details. Transcriptions
5196for foreign languages other than German are now handled, too.
5197
5198*** New boolean user option bibtex-comma-after-last-field to decide if
5199comma should be inserted at end of last field.
5200
5201*** New boolean user option bibtex-align-at-equal-sign to determine if
5202alignment should be made at left side of field contents or at equal
5203signs. New user options to control entry layout (e.g. indentation).
5204
5205*** New function bibtex-fill-entry to realign entries.
5206
5207*** New function bibtex-reformat to reformat region or buffer.
5208
5209*** New function bibtex-convert-alien to convert a BibTeX database
5210from alien sources.
5211
5212*** New function bibtex-complete-key (similar to bibtex-complete-string)
5213to complete prefix to a key defined in buffer. Mainly useful in
5214crossref entries.
5215
5216*** New function bibtex-count-entries to count entries in buffer or
5217region.
5218
5219*** Added support for imenu.
5220
5221*** The function `bibtex-validate' now checks current region instead
5222of buffer if mark is active. Now it shows all errors of buffer in a
5223`compilation mode' buffer. You can use the normal commands (e.g.
5224`next-error') for compilation modes to jump to errors.
5225
5226*** New variable `bibtex-string-file-path' to determine where the files
5227from `bibtex-string-files' are searched.
5228
5229** Iso Accents mode now supports Latin-3 as an alternative.
5230
5231** The function using-unix-filesystems has been replaced by the
5232functions add-untranslated-filesystem and remove-untranslated-filesystem.
5233Each of these functions takes the name of a drive letter or directory
5234as an argument.
5235
5236When a filesystem is added as untranslated, all files on it are read
5237and written in binary mode (no cr/lf translation is performed).
5238
5239** browse-url changes
5240
5241*** New methods for: Grail (browse-url-generic), MMM (browse-url-mmm),
5242Lynx in a separate xterm (browse-url-lynx-xterm) or in an Emacs window
5243(browse-url-lynx-emacs), remote W3 (browse-url-w3-gnudoit), generic
5244non-remote-controlled browsers (browse-url-generic) and associated
5245customization variables.
5246
5247*** New commands `browse-url-of-region' and `browse-url'.
5248
5249*** URLs marked up with <URL:...> (RFC1738) work if broken across
5250lines. Browsing methods can be associated with URL regexps
5251(e.g. mailto: URLs) via `browse-url-browser-function'.
5252
5253** Changes in Ediff
5254
5255*** Clicking Mouse-2 on a brief command description in Ediff control panel
5256pops up the Info file for this command.
5257
5258*** There is now a variable, ediff-autostore-merges, which controls whether
5259the result of a merge is saved in a file. By default, this is done only when
5260merge is done from a session group (eg, when merging files in two different
5261directories).
5262
5263*** Since Emacs 19.31 (this hasn't been announced before), Ediff can compare
5264and merge groups of files residing in different directories, or revisions of
5265files in the same directory.
5266
5267*** Since Emacs 19.31, Ediff can apply multi-file patches interactively.
5268The patches must be in the context format or GNU unified format. (The bug
5269related to the GNU format has now been fixed.)
5270
5271** Changes in Viper
5272
5273*** The startup file is now .viper instead of .vip
79214ddf 5274*** All variable/function names have been changed to start with viper-
a933dad1
DL
5275 instead of vip-.
5276*** C-\ now simulates the meta-key in all Viper states.
79214ddf 5277*** C-z in Insert state now escapes to Vi for the duration of the next
a933dad1
DL
5278Viper command. In Vi and Insert states, C-z behaves as before.
5279*** C-c \ escapes to Vi for one command if Viper is in Insert or Emacs states.
5280*** _ is no longer the meta-key in Vi state.
5281*** The variable viper-insert-state-cursor-color can be used to change cursor
5282color when Viper is in insert state.
5283*** If search lands the cursor near the top or the bottom of the window,
5284Viper pulls the window up or down to expose more context. The variable
5285viper-adjust-window-after-search controls this behavior.
5286
5287** Etags changes.
5288
5289*** In C, C++, Objective C and Java, Etags tags global variables by
5290default. The resulting tags files are inflated by 30% on average.
5291Use --no-globals to turn this feature off. Etags can also tag
5292variables which are members of structure-like constructs, but it does
5293not by default. Use --members to turn this feature on.
5294
5295*** C++ member functions are now recognized as tags.
5296
5297*** Java is tagged like C++. In addition, "extends" and "implements"
5298constructs are tagged. Files are recognised by the extension .java.
5299
5300*** Etags can now handle programs written in Postscript. Files are
5301recognised by the extensions .ps and .pdb (Postscript with C syntax).
5302In Postscript, tags are lines that start with a slash.
5303
5304*** Etags now handles Objective C and Objective C++ code. The usual C and
5305C++ tags are recognized in these languages; in addition, etags
5306recognizes special Objective C syntax for classes, class categories,
5307methods and protocols.
5308
5309*** Etags also handles Cobol. Files are recognised by the extension
5310.cobol. The tagged lines are those containing a word that begins in
5311column 8 and ends in a full stop, i.e. anything that could be a
5312paragraph name.
5313
5314*** Regexps in Etags now support intervals, as in ed or grep. The syntax of
5315an interval is \{M,N\}, and it means to match the preceding expression
5316at least M times and as many as N times.
5317
5318** The format for specifying a custom format for time-stamp to insert
5319in files has changed slightly.
5320
5321With the new enhancements to the functionality of format-time-string,
5322time-stamp-format will change to be eventually compatible with it.
5323This conversion is being done in two steps to maintain compatibility
5324with old time-stamp-format values.
5325
5326In the new scheme, alternate case is signified by the number-sign
5327(`#') modifier, rather than changing the case of the format character.
5328This feature is as yet incompletely implemented for compatibility
5329reasons.
5330
5331In the old time-stamp-format, all numeric fields defaulted to their
5332natural width. (With format-time-string, each format has a
5333fixed-width default.) In this version, you can specify the colon
5334(`:') modifier to a numeric conversion to mean "give me the historical
5335time-stamp-format width default." Do not use colon if you are
5336specifying an explicit width, as in "%02d".
5337
5338Numbers are no longer truncated to the requested width, except in the
5339case of "%02y", which continues to give a two-digit year. Digit
5340truncation probably wasn't being used for anything else anyway.
5341
5342The new formats will work with old versions of Emacs. New formats are
5343being recommended now to allow time-stamp-format to change in the
5344future to be compatible with format-time-string. The new forms being
5345recommended now will continue to work then.
5346
5347See the documentation string for the variable time-stamp-format for
5348details.
5349
5350** There are some additional major modes:
5351
5352dcl-mode, for editing VMS DCL files.
5353m4-mode, for editing files of m4 input.
5354meta-mode, for editing MetaFont and MetaPost source files.
5355
5356** In Shell mode, the command shell-copy-environment-variable lets you
5357copy the value of a specified environment variable from the subshell
5358into Emacs.
5359
5360** New Lisp packages include:
5361
5362*** battery.el displays battery status for laptops.
5363
5364*** M-x bruce (named after Lenny Bruce) is a program that might
5365be used for adding some indecent words to your email.
5366
5367*** M-x crisp-mode enables an emulation for the CRiSP editor.
5368
5369*** M-x dirtrack arranges for better tracking of directory changes
5370in shell buffers.
5371
5372*** The new library elint.el provides for linting of Emacs Lisp code.
5373See the documentation for `elint-initialize', `elint-current-buffer'
5374and `elint-defun'.
5375
5376*** M-x expand-add-abbrevs defines a special kind of abbrev which is
5377meant for programming constructs. These abbrevs expand like ordinary
5378ones, when you type SPC, but only at the end of a line and not within
5379strings or comments.
5380
5381These abbrevs can act as templates: you can define places within an
5382abbrev for insertion of additional text. Once you expand the abbrev,
5383you can then use C-x a p and C-x a n to move back and forth to these
5384insertion points. Thus you can conveniently insert additional text
5385at these points.
5386
5387*** filecache.el remembers the location of files so that you
5388can visit them by short forms of their names.
5389
5390*** find-func.el lets you find the definition of the user-loaded
5391Emacs Lisp function at point.
5392
5393*** M-x handwrite converts text to a "handwritten" picture.
5394
5395*** M-x iswitchb-buffer is a command for switching to a buffer, much like
5396switch-buffer, but it reads the argument in a more helpful way.
5397
5398*** M-x landmark implements a neural network for landmark learning.
5399
5400*** M-x locate provides a convenient interface to the `locate' program.
5401
5402*** M4 mode is a new mode for editing files of m4 input.
5403
5404*** mantemp.el creates C++ manual template instantiations
5405from the GCC error messages which indicate which instantiations are needed.
5406
5407*** mouse-copy.el provides a one-click copy and move feature.
5408You can drag a region with M-mouse-1, and it is automatically
5409inserted at point. M-Shift-mouse-1 deletes the text from its
5410original place after inserting the copy.
5411
5412*** mouse-drag.el lets you do scrolling by dragging Mouse-2
5413on the buffer.
5414
5415You click the mouse and move; that distance either translates into the
5416velocity to scroll (with mouse-drag-throw) or the distance to scroll
5417(with mouse-drag-drag). Horizontal scrolling is enabled when needed.
5418
5419Enable mouse-drag with:
5420 (global-set-key [down-mouse-2] 'mouse-drag-throw)
5421-or-
5422 (global-set-key [down-mouse-2] 'mouse-drag-drag)
5423
5424*** mspools.el is useful for determining which mail folders have
5425mail waiting to be read in them. It works with procmail.
5426
5427*** Octave mode is a major mode for editing files of input for Octave.
5428It comes with a facility for communicating with an Octave subprocess.
5429
5430*** ogonek
5431
5432The ogonek package provides functions for changing the coding of
5433Polish diacritic characters in buffers. Codings known from various
5434platforms are supported such as ISO8859-2, Mazovia, IBM Latin2, and
5435TeX. For example, you can change the coding from Mazovia to
5436ISO8859-2. Another example is a change of coding from ISO8859-2 to
5437prefix notation (in which `/a' stands for the aogonek character, for
5438instance) and vice versa.
5439
5440To use this package load it using
5441 M-x load-library [enter] ogonek
5442Then, you may get an explanation by calling one of
79214ddf 5443 M-x ogonek-jak -- in Polish
a933dad1
DL
5444 M-x ogonek-how -- in English
5445The info specifies the commands and variables provided as well as the
5446ways of customization in `.emacs'.
5447
5448*** Interface to ph.
5449
5450Emacs provides a client interface to CCSO Nameservers (ph/qi)
5451
5452The CCSO nameserver is used in many universities to provide directory
5453services about people. ph.el provides a convenient Emacs interface to
5454these servers.
5455
5456*** uce.el is useful for replying to unsolicited commercial email.
5457
5458*** vcursor.el implements a "virtual cursor" feature.
5459You can move the virtual cursor with special commands
5460while the real cursor does not move.
5461
5462*** webjump.el is a "hot list" package which you can set up
5463for visiting your favorite web sites.
5464
5465*** M-x winner-mode is a minor mode which saves window configurations,
5466so you can move back to other configurations that you have recently used.
5467
5468** movemail change
5469
5470Movemail no longer needs to be installed setuid root in order for POP
5471mail retrieval to function properly. This is because it no longer
5472supports the RPOP (reserved-port POP) protocol; instead, it uses the
5473user's POP password to authenticate to the mail server.
5474
5475This change was made earlier, but not reported in NEWS before.
5476\f
5477* Emacs 20.1 changes for MS-DOS and MS-Windows.
5478
5479** Changes in handling MS-DOS/MS-Windows text files.
5480
5481Emacs handles three different conventions for representing
5482end-of-line: CRLF for MSDOS, LF for Unix and GNU, and CR (used on the
5483Macintosh). Emacs determines which convention is used in a specific
5484file based on the contents of that file (except for certain special
5485file names), and when it saves the file, it uses the same convention.
5486
5487To save the file and change the end-of-line convention, you can use
5488C-x RET f (set-buffer-file-coding-system) to specify a different
5489coding system for the buffer. Then, when you save the file, the newly
5490specified coding system will take effect. For example, to save with
5491LF, specify undecided-unix (or some other ...-unix coding system); to
5492save with CRLF, specify undecided-dos.
5493\f
5494* Lisp Changes in Emacs 20.1
5495
5496** Byte-compiled files made with Emacs 20 will, in general, work in
5497Emacs 19 as well, as long as the source code runs in Emacs 19. And
5498vice versa: byte-compiled files made with Emacs 19 should also run in
5499Emacs 20, as long as the program itself works in Emacs 20.
5500
5501** Windows-specific functions and variables have been renamed
5502to start with w32- instead of win32-.
5503
5504In hacker language, calling something a "win" is a form of praise. We
5505don't want to praise a non-free Microsoft system, so we don't call it
5506"win".
5507
5508** Basic Lisp changes
5509
5510*** A symbol whose name starts with a colon now automatically
5511evaluates to itself. Therefore such a symbol can be used as a constant.
5512
5513*** The defined purpose of `defconst' has been changed. It should now
5514be used only for values that should not be changed whether by a program
5515or by the user.
5516
5517The actual behavior of defconst has not been changed.
5518
5519*** There are new macros `when' and `unless'
5520
5521(when CONDITION BODY...) is short for (if CONDITION (progn BODY...))
5522(unless CONDITION BODY...) is short for (if CONDITION nil BODY...)
5523
5524*** Emacs now defines functions caar, cadr, cdar and cddr with their
5525usual Lisp meanings. For example, caar returns the car of the car of
5526its argument.
5527
5528*** equal, when comparing strings, now ignores their text properties.
5529
5530*** The new function `functionp' tests whether an object is a function.
5531
5532*** arrayp now returns t for char-tables and bool-vectors.
5533
5534*** Certain primitives which use characters (as integers) now get an
5535error if the integer is not a valid character code. These primitives
5536include insert-char, char-to-string, and the %c construct in the
5537`format' function.
5538
5539*** The `require' function now insists on adding a suffix, either .el
5540or .elc, to the file name. Thus, (require 'foo) will not use a file
5541whose name is just foo. It insists on foo.el or foo.elc.
5542
5543*** The `autoload' function, when the file name does not contain
5544either a directory name or the suffix .el or .elc, insists on
5545adding one of these suffixes.
5546
5547*** string-to-number now takes an optional second argument BASE
5548which specifies the base to use when converting an integer.
79214ddf 5549If BASE is omitted, base 10 is used.
a933dad1
DL
5550
5551We have not implemented other radices for floating point numbers,
5552because that would be much more work and does not seem useful.
5553
5554*** substring now handles vectors as well as strings.
5555
5556*** The Common Lisp function eql is no longer defined normally.
5557You must load the `cl' library to define it.
5558
5559*** The new macro `with-current-buffer' lets you evaluate an expression
5560conveniently with a different current buffer. It looks like this:
5561
5562 (with-current-buffer BUFFER BODY-FORMS...)
5563
5564BUFFER is the expression that says which buffer to use.
5565BODY-FORMS say what to do in that buffer.
5566
5567*** The new primitive `save-current-buffer' saves and restores the
5568choice of current buffer, like `save-excursion', but without saving or
5569restoring the value of point or the mark. `with-current-buffer'
5570works using `save-current-buffer'.
5571
5572*** The new macro `with-temp-file' lets you do some work in a new buffer and
5573write the output to a specified file. Like `progn', it returns the value
5574of the last form.
5575
5576*** The new macro `with-temp-buffer' lets you do some work in a new buffer,
5577which is discarded after use. Like `progn', it returns the value of the
5578last form. If you wish to return the buffer contents, use (buffer-string)
5579as the last form.
5580
5581*** The new function split-string takes a string, splits it at certain
5582characters, and returns a list of the substrings in between the
5583matches.
5584
5585For example, (split-string "foo bar lose" " +") returns ("foo" "bar" "lose").
5586
5587*** The new macro with-output-to-string executes some Lisp expressions
5588with standard-output set up so that all output feeds into a string.
5589Then it returns that string.
5590
5591For example, if the current buffer name is `foo',
5592
5593(with-output-to-string
5594 (princ "The buffer is ")
5595 (princ (buffer-name)))
5596
5597returns "The buffer is foo".
5598
5599** Non-ASCII characters are now supported, if enable-multibyte-characters
5600is non-nil.
5601
5602These characters have character codes above 256. When inserted in the
5603buffer or stored in a string, they are represented as multibyte
5604characters that occupy several buffer positions each.
5605
5606*** When enable-multibyte-characters is non-nil, a single character in
5607a buffer or string can be two or more bytes (as many as four).
5608
5609Buffers and strings are still made up of unibyte elements;
5610character positions and string indices are always measured in bytes.
5611Therefore, moving forward one character can increase the buffer
5612position by 2, 3 or 4. The function forward-char moves by whole
5613characters, and therefore is no longer equivalent to
5614 (lambda (n) (goto-char (+ (point) n))).
5615
5616ASCII characters (codes 0 through 127) are still single bytes, always.
5617Sequences of byte values 128 through 255 are used to represent
5618non-ASCII characters. These sequences are called "multibyte
5619characters".
5620
5621The first byte of a multibyte character is always in the range 128
5622through 159 (octal 0200 through 0237). These values are called
5623"leading codes". The second and subsequent bytes are always in the
5624range 160 through 255 (octal 0240 through 0377). The first byte, the
5625leading code, determines how many bytes long the sequence is.
5626
5627*** The function forward-char moves over characters, and therefore
5628(forward-char 1) may increase point by more than 1 if it moves over a
5629multibyte character. Likewise, delete-char always deletes a
5630character, which may be more than one buffer position.
5631
5632This means that some Lisp programs, which assume that a character is
5633always one buffer position, need to be changed.
5634
5635However, all ASCII characters are always one buffer position.
79214ddf 5636
a933dad1
DL
5637*** The regexp [\200-\377] no longer matches all non-ASCII characters,
5638because when enable-multibyte-characters is non-nil, these characters
5639have codes that are not in the range octal 200 to octal 377. However,
5640the regexp [^\000-\177] does match all non-ASCII characters,
5641guaranteed.
5642
5643*** The function char-boundary-p returns non-nil if position POS is
5644between two characters in the buffer (not in the middle of a
5645character).
5646
5647When the value is non-nil, it says what kind of character follows POS:
5648
5649 0 if POS is at an ASCII character or at the end of range,
5650 1 if POS is before a 2-byte length multi-byte form,
5651 2 if POS is at a head of 3-byte length multi-byte form,
5652 3 if POS is at a head of 4-byte length multi-byte form,
5653 4 if POS is at a head of multi-byte form of a composite character.
5654
5655*** The function char-bytes returns how many bytes the character CHAR uses.
5656
5657*** Strings can contain multibyte characters. The function
5658`length' returns the string length counting bytes, which may be
5659more than the number of characters.
5660
5661You can include a multibyte character in a string constant by writing
5662it literally. You can also represent it with a hex escape,
5663\xNNNNNNN..., using as many digits as necessary. Any character which
5664is not a valid hex digit terminates this construct. If you want to
5665follow it with a character that is a hex digit, write backslash and
5666newline in between; that will terminate the hex escape.
5667
5668*** The function concat-chars takes arguments which are characters
5669and returns a string containing those characters.
5670
5671*** The function sref access a multibyte character in a string.
5672(sref STRING INDX) returns the character in STRING at INDEX. INDEX
5673counts from zero. If INDEX is at a position in the middle of a
5674character, sref signals an error.
5675
5676*** The function chars-in-string returns the number of characters
5677in a string. This is less than the length of the string, if the
5678string contains multibyte characters (the length counts bytes).
5679
5680*** The function chars-in-region returns the number of characters
5681in a region from BEG to END. This is less than (- END BEG) if the
5682region contains multibyte characters (the length counts bytes).
5683
5684*** The function string-to-list converts a string to a list of
5685the characters in it. string-to-vector converts a string
5686to a vector of the characters in it.
5687
5688*** The function store-substring alters part of the contents
5689of a string. You call it as follows:
5690
5691 (store-substring STRING IDX OBJ)
5692
5693This says to alter STRING, by storing OBJ starting at index IDX in
5694STRING. OBJ may be either a character or a (smaller) string.
5695This function really does alter the contents of STRING.
5696Since it is impossible to change the length of an existing string,
5697it is an error if OBJ doesn't fit within STRING's actual length.
5698
5699*** char-width returns the width (in columns) of the character CHAR,
5700if it were displayed in the current buffer and the selected window.
5701
5702*** string-width returns the width (in columns) of the text in STRING,
5703if it were displayed in the current buffer and the selected window.
5704
5705*** truncate-string-to-width shortens a string, if necessary,
5706to fit within a certain number of columns. (Of course, it does
5707not alter the string that you give it; it returns a new string
5708which contains all or just part of the existing string.)
5709
5710(truncate-string-to-width STR END-COLUMN &optional START-COLUMN PADDING)
5711
5712This returns the part of STR up to column END-COLUMN.
5713
5714The optional argument START-COLUMN specifies the starting column.
5715If this is non-nil, then the first START-COLUMN columns of the string
5716are not included in the resulting value.
5717
5718The optional argument PADDING, if non-nil, is a padding character to be added
5719at the beginning and end the resulting string, to extend it to exactly
5720WIDTH columns. If PADDING is nil, that means do not pad; then, if STRING
5721is narrower than WIDTH, the value is equal to STRING.
5722
5723If PADDING and START-COLUMN are both non-nil, and if there is no clean
5724place in STRING that corresponds to START-COLUMN (because one
5725character extends across that column), then the padding character
5726PADDING is added one or more times at the beginning of the result
5727string, so that its columns line up as if it really did start at
5728column START-COLUMN.
5729
5730*** When the functions in the list after-change-functions are called,
5731the third argument is the number of bytes in the pre-change text, not
5732necessarily the number of characters. It is, in effect, the
5733difference in buffer position between the beginning and the end of the
5734changed text, before the change.
5735
5736*** The characters Emacs uses are classified in various character
5737sets, each of which has a name which is a symbol. In general there is
5738one character set for each script, not for each language.
5739
5740**** The function charsetp tests whether an object is a character set name.
5741
5742**** The variable charset-list holds a list of character set names.
5743
5744**** char-charset, given a character code, returns the name of the character
5745set that the character belongs to. (The value is a symbol.)
5746
5747**** split-char, given a character code, returns a list containing the
5748name of the character set, followed by one or two byte-values
5749which identify the character within that character set.
5750
5751**** make-char, given a character set name and one or two subsequent
5752byte-values, constructs a character code. This is roughly the
5753opposite of split-char.
5754
5755**** find-charset-region returns a list of the character sets
5756of all the characters between BEG and END.
5757
5758**** find-charset-string returns a list of the character sets
5759of all the characters in a string.
5760
5761*** Here are the Lisp facilities for working with coding systems
5762and specifying coding systems.
5763
5764**** The function coding-system-list returns a list of all coding
5765system names (symbols). With optional argument t, it returns a list
5766of all distinct base coding systems, not including variants.
5767(Variant coding systems are those like latin-1-dos, latin-1-unix
5768and latin-1-mac which specify the end-of-line conversion as well
5769as what to do about code conversion.)
5770
5771**** coding-system-p tests a symbol to see if it is a coding system
5772name. It returns t if so, nil if not.
5773
5774**** file-coding-system-alist specifies which coding systems to use
5775for certain file names. It works like network-coding-system-alist,
5776except that the PATTERN is matched against the file name.
5777
5778Each element has the format (PATTERN . VAL), where PATTERN determines
5779which file names the element applies to. PATTERN should be a regexp
5780to match against a file name.
5781
5782VAL is a coding system, a cons cell containing two coding systems, or
5783a function symbol. If VAL is a coding system, it is used for both
5784decoding what received from the network stream and encoding what sent
5785to the network stream. If VAL is a cons cell containing two coding
5786systems, the car specifies the coding system for decoding, and the cdr
5787specifies the coding system for encoding.
5788
5789If VAL is a function symbol, the function must return a coding system
5790or a cons cell containing two coding systems, which is used as above.
5791
5792**** The variable network-coding-system-alist specifies
5793the coding system to use for network sockets.
5794
5795Each element has the format (PATTERN . VAL), where PATTERN determines
5796which network sockets the element applies to. PATTERN should be
5797either a port number or a regular expression matching some network
5798service names.
5799
5800VAL is a coding system, a cons cell containing two coding systems, or
5801a function symbol. If VAL is a coding system, it is used for both
5802decoding what received from the network stream and encoding what sent
5803to the network stream. If VAL is a cons cell containing two coding
5804systems, the car specifies the coding system for decoding, and the cdr
5805specifies the coding system for encoding.
5806
5807If VAL is a function symbol, the function must return a coding system
5808or a cons cell containing two coding systems, which is used as above.
5809
5810**** process-coding-system-alist specifies which coding systems to use
5811for certain subprocess. It works like network-coding-system-alist,
5812except that the PATTERN is matched against the program name used to
5813start the subprocess.
5814
5815**** The variable default-process-coding-system specifies the coding
5816systems to use for subprocess (and net connection) input and output,
5817when nothing else specifies what to do. The value is a cons cell
5818(OUTPUT-CODING . INPUT-CODING). OUTPUT-CODING applies to output
5819to the subprocess, and INPUT-CODING applies to input from it.
5820
5821**** The variable coding-system-for-write, if non-nil, specifies the
5822coding system to use for writing a file, or for output to a synchronous
5823subprocess.
5824
5825It also applies to any asynchronous subprocess or network connection,
5826but in a different way: the value of coding-system-for-write when you
5827start the subprocess or connection affects that subprocess or
5828connection permanently or until overridden.
5829
5830The variable coding-system-for-write takes precedence over
5831file-coding-system-alist, process-coding-system-alist and
5832network-coding-system-alist, and all other methods of specifying a
5833coding system for output. But most of the time this variable is nil.
5834It exists so that Lisp programs can bind it to a specific coding
5835system for one operation at a time.
5836
5837**** coding-system-for-read applies similarly to input from
5838files, subprocesses or network connections.
5839
5840**** The function process-coding-system tells you what
5841coding systems(s) an existing subprocess is using.
5842The value is a cons cell,
5843 (DECODING-CODING-SYSTEM . ENCODING-CODING-SYSTEM)
5844where DECODING-CODING-SYSTEM is used for decoding output from
5845the subprocess, and ENCODING-CODING-SYSTEM is used for encoding
5846input to the subprocess.
5847
5848**** The function set-process-coding-system can be used to
5849change the coding systems in use for an existing subprocess.
5850
5851** Emacs has a new facility to help users manage the many
5852customization options. To make a Lisp program work with this facility,
5853you need to use the new macros defgroup and defcustom.
5854
5855You use defcustom instead of defvar, for defining a user option
5856variable. The difference is that you specify two additional pieces of
5857information (usually): the "type" which says what values are
5858legitimate, and the "group" which specifies the hierarchy for
5859customization.
5860
5861Thus, instead of writing
5862
5863 (defvar foo-blurgoze nil
5864 "*Non-nil means that foo will act very blurgozely.")
5865
5866you would now write this:
5867
5868 (defcustom foo-blurgoze nil
5869 "*Non-nil means that foo will act very blurgozely."
5870 :type 'boolean
5871 :group foo)
5872
5873The type `boolean' means that this variable has only
5874two meaningful states: nil and non-nil. Other type values
5875describe other possibilities; see the manual for Custom
5876for a description of them.
5877
5878The "group" argument is used to specify a group which the option
5879should belong to. You define a new group like this:
5880
5881 (defgroup ispell nil
5882 "Spell checking using Ispell."
5883 :group 'processes)
5884
5885The "group" argument in defgroup specifies the parent group. The root
5886group is called `emacs'; it should not contain any variables itself,
5887but only other groups. The immediate subgroups of `emacs' correspond
5888to the keywords used by C-h p. Under these subgroups come
5889second-level subgroups that belong to individual packages.
5890
5891Each Emacs package should have its own set of groups. A simple
5892package should have just one group; a more complex package should
5893have a hierarchy of its own groups. The sole or root group of a
5894package should be a subgroup of one or more of the "keyword"
5895first-level subgroups.
5896
5897** New `widget' library for inserting UI components in buffers.
5898
5899This library, used by the new custom library, is documented in a
5900separate manual that accompanies Emacs.
5901
5902** easy-mmode
5903
5904The easy-mmode package provides macros and functions that make
5905developing minor modes easier. Roughly, the programmer has to code
5906only the functionality of the minor mode. All the rest--toggles,
5907predicate, and documentation--can be done in one call to the macro
5908`easy-mmode-define-minor-mode' (see the documentation). See also
5909`easy-mmode-define-keymap'.
5910
5911** Text property changes
5912
5913*** The `intangible' property now works on overlays as well as on a
5914text property.
5915
5916*** The new functions next-char-property-change and
5917previous-char-property-change scan through the buffer looking for a
5918place where either a text property or an overlay might change. The
5919functions take two arguments, POSITION and LIMIT. POSITION is the
5920starting position for the scan. LIMIT says where to stop the scan.
5921
5922If no property change is found before LIMIT, the value is LIMIT. If
5923LIMIT is nil, scan goes to the beginning or end of the accessible part
5924of the buffer. If no property change is found, the value is the
5925position of the beginning or end of the buffer.
5926
5927*** In the `local-map' text property or overlay property, the property
5928value can now be a symbol whose function definition is a keymap. This
5929is an alternative to using the keymap itself.
5930
5931** Changes in invisibility features
5932
5933*** Isearch can now temporarily show parts of the buffer which are
5934hidden by an overlay with a invisible property, when the search match
5935is inside that portion of the buffer. To enable this the overlay
5936should have a isearch-open-invisible property which is a function that
5937would be called having the overlay as an argument, the function should
5938make the overlay visible.
5939
5940During incremental search the overlays are shown by modifying the
5941invisible and intangible properties, if beside this more actions are
5942needed the overlay should have a isearch-open-invisible-temporary
5943which is a function. The function is called with 2 arguments: one is
5944the overlay and the second is nil when it should show the overlay and
5945t when it should hide it.
5946
5947*** add-to-invisibility-spec, remove-from-invisibility-spec
5948
5949Modes that use overlays to hide portions of a buffer should set the
79214ddf
FP
5950invisible property of the overlay to the mode's name (or another symbol)
5951and modify the `buffer-invisibility-spec' to include that symbol.
a933dad1 5952Use `add-to-invisibility-spec' and `remove-from-invisibility-spec' to
79214ddf 5953manipulate the `buffer-invisibility-spec'.
a933dad1
DL
5954Here is an example of how to do this:
5955
5956 ;; If we want to display an ellipsis:
79214ddf 5957 (add-to-invisibility-spec '(my-symbol . t))
a933dad1 5958 ;; If you don't want ellipsis:
79214ddf 5959 (add-to-invisibility-spec 'my-symbol)
a933dad1
DL
5960
5961 ...
5962 (overlay-put (make-overlay beginning end) 'invisible 'my-symbol)
5963
5964 ...
5965 ;; When done with the overlays:
5966 (remove-from-invisibility-spec '(my-symbol . t))
5967 ;; Or respectively:
5968 (remove-from-invisibility-spec 'my-symbol)
5969
5970** Changes in syntax parsing.
5971
5972*** The syntax-directed buffer-scan functions (such as
5973`parse-partial-sexp', `forward-word' and similar functions) can now
5974obey syntax information specified by text properties, if the variable
5975`parse-sexp-lookup-properties' is non-nil.
5976
5977If the value of `parse-sexp-lookup-properties' is nil, the behavior
5978is as before: the syntax-table of the current buffer is always
5979used to determine the syntax of the character at the position.
5980
5981When `parse-sexp-lookup-properties' is non-nil, the syntax of a
5982character in the buffer is calculated thus:
5983
5984 a) if the `syntax-table' text-property of that character
5985 is a cons, this cons becomes the syntax-type;
5986
5987 Valid values of `syntax-table' text-property are: nil, a valid
5988 syntax-table, and a valid syntax-table element, i.e.,
5989 a cons cell of the form (SYNTAX-CODE . MATCHING-CHAR).
5990
5991 b) if the character's `syntax-table' text-property
5992 is a syntax table, this syntax table is used
5993 (instead of the syntax-table of the current buffer) to
5994 determine the syntax type of the character.
5995
5996 c) otherwise the syntax-type is determined by the syntax-table
5997 of the current buffer.
5998
5999*** The meaning of \s in regular expressions is also affected by the
6000value of `parse-sexp-lookup-properties'. The details are the same as
6001for the syntax-directed buffer-scan functions.
6002
6003*** There are two new syntax-codes, `!' and `|' (numeric values 14
6004and 15). A character with a code `!' starts a comment which is ended
6005only by another character with the same code (unless quoted). A
6006character with a code `|' starts a string which is ended only by
6007another character with the same code (unless quoted).
6008
6009These codes are mainly meant for use as values of the `syntax-table'
6010text property.
6011
6012*** The function `parse-partial-sexp' has new semantics for the sixth
6013arg COMMENTSTOP. If it is `syntax-table', parse stops after the start
6014of a comment or a string, or after end of a comment or a string.
6015
6016*** The state-list which the return value from `parse-partial-sexp'
6017(and can also be used as an argument) now has an optional ninth
6018element: the character address of the start of last comment or string;
6019nil if none. The fourth and eighth elements have special values if the
6020string/comment is started by a "!" or "|" syntax-code.
6021
6022*** Since new features of `parse-partial-sexp' allow a complete
6023syntactic parsing, `font-lock' no longer supports
6024`font-lock-comment-start-regexp'.
6025
6026** Changes in face features
6027
6028*** The face functions are now unconditionally defined in Emacs, even
6029if it does not support displaying on a device that supports faces.
6030
6031*** The function face-documentation returns the documentation string
6032of a face (or nil if it doesn't have one).
6033
6034*** The function face-bold-p returns t if a face should be bold.
6035set-face-bold-p sets that flag.
6036
6037*** The function face-italic-p returns t if a face should be italic.
6038set-face-italic-p sets that flag.
6039
6040*** You can now specify foreground and background colors for text
6041by adding elements of the form (foreground-color . COLOR-NAME)
6042and (background-color . COLOR-NAME) to the list of faces in
6043the `face' property (either the character's text property or an
6044overlay property).
6045
6046This means that you no longer need to create named faces to use
6047arbitrary colors in a Lisp package.
6048
6049** Changes in file-handling functions
6050
6051*** File-access primitive functions no longer discard an extra redundant
6052directory name from the beginning of the file name. In other words,
6053they no longer do anything special with // or /~. That conversion
6054is now done only in substitute-in-file-name.
6055
6056This makes it possible for a Lisp program to open a file whose name
6057begins with ~.
6058
6059*** If copy-file is unable to set the date of the output file,
6060it now signals an error with the condition file-date-error.
6061
6062*** The inode number returned by file-attributes may be an integer (if
6063the number fits in a Lisp integer) or a list of integers.
6064
6065*** insert-file-contents can now read from a special file,
6066as long as the arguments VISIT and REPLACE are nil.
6067
6068*** The RAWFILE arg to find-file-noselect, if non-nil, now suppresses
6069character code conversion as well as other things.
6070
6071Meanwhile, this feature does work with remote file names
6072(formerly it did not).
6073
6074*** Lisp packages which create temporary files should use the TMPDIR
6075environment variable to decide which directory to put them in.
6076
6077*** interpreter-mode-alist elements now specify regexps
6078instead of constant strings.
6079
6080*** expand-file-name no longer treats `//' or `/~' specially. It used
6081to delete all the text of a file name up through the first slash of
6082any `//' or `/~' sequence. Now it passes them straight through.
6083
6084substitute-in-file-name continues to treat those sequences specially,
6085in the same way as before.
6086
6087*** The variable `format-alist' is more general now.
6088The FROM-FN and TO-FN in a format definition can now be strings
6089which specify shell commands to use as filters to perform conversion.
6090
6091*** The new function access-file tries to open a file, and signals an
6092error if that fails. If the open succeeds, access-file does nothing
6093else, and returns nil.
6094
6095*** The function insert-directory now signals an error if the specified
6096directory cannot be listed.
6097
6098** Changes in minibuffer input
6099
6100*** The functions read-buffer, read-variable, read-command, read-string
6101read-file-name, read-from-minibuffer and completing-read now take an
6102additional argument which specifies the default value. If this
6103argument is non-nil, it should be a string; that string is used in two
6104ways:
6105
6106 It is returned if the user enters empty input.
6107 It is available through the history command M-n.
6108
6109*** The functions read-string, read-from-minibuffer,
6110read-no-blanks-input and completing-read now take an additional
6111argument INHERIT-INPUT-METHOD. If this is non-nil, then the
6112minibuffer inherits the current input method and the setting of
6113enable-multibyte-characters from the previously current buffer.
6114
6115In an interactive spec, you can use M instead of s to read an
6116argument in this way.
6117
6118*** All minibuffer input functions discard text properties
6119from the text you enter in the minibuffer, unless the variable
6120minibuffer-allow-text-properties is non-nil.
6121
6122** Echo area features
6123
6124*** Clearing the echo area now runs the normal hook
6125echo-area-clear-hook. Note that the echo area can be used while the
6126minibuffer is active; in that case, the minibuffer is still active
6127after the echo area is cleared.
6128
6129*** The function current-message returns the message currently displayed
6130in the echo area, or nil if there is none.
6131
6132** Keyboard input features
6133
6134*** tty-erase-char is a new variable that reports which character was
6135set up as the terminal's erase character when time Emacs was started.
6136
6137*** num-nonmacro-input-events is the total number of input events
6138received so far from the terminal. It does not count those generated
6139by keyboard macros.
6140
6141** Frame-related changes
6142
6143*** make-frame runs the normal hook before-make-frame-hook just before
6144creating a frame, and just after creating a frame it runs the abnormal
6145hook after-make-frame-functions with the new frame as arg.
6146
6147*** The new hook window-configuration-change-hook is now run every time
6148the window configuration has changed. The frame whose configuration
6149has changed is the selected frame when the hook is run.
6150
6151*** Each frame now independently records the order for recently
6152selected buffers, in its buffer-list frame parameter, so that the
6153value of other-buffer is now based on the buffers recently displayed
6154in the selected frame.
6155
6156*** The value of the frame parameter vertical-scroll-bars
6157is now `left', `right' or nil. A non-nil value specifies
6158which side of the window to put the scroll bars on.
6159
6160** X Windows features
6161
6162*** You can examine X resources for other applications by binding
6163x-resource-class around a call to x-get-resource. The usual value of
6164x-resource-class is "Emacs", which is the correct value for Emacs.
6165
6166*** In menus, checkboxes and radio buttons now actually work.
6167The menu displays the current status of the box or button.
6168
6169*** The function x-list-fonts now takes an optional fourth argument
6170MAXIMUM which sets a limit on how many matching fonts to return.
6171A smaller value of MAXIMUM makes the function faster.
6172
6173If the only question is whether *any* font matches the pattern,
6174it is good to supply 1 for this argument.
6175
6176** Subprocess features
6177
6178*** A reminder: it is no longer necessary for subprocess filter
6179functions and sentinels to do save-match-data, because Emacs does this
6180automatically.
6181
6182*** The new function shell-command-to-string executes a shell command
6183and returns the output from the command as a string.
6184
6185*** The new function process-contact returns t for a child process,
6186and (HOSTNAME SERVICE) for a net connection.
6187
6188** An error in running pre-command-hook or post-command-hook
6189does clear the variable to nil. The documentation was wrong before.
6190
6191** In define-key-after, if AFTER is t, the new binding now always goes
6192at the end of the keymap. If the keymap is a menu, this means it
6193goes after the other menu items.
6194
6195** If you have a program that makes several changes in the same area
79214ddf 6196of the buffer, you can use the macro combine-after-change-calls
a933dad1
DL
6197around that Lisp code to make it faster when after-change hooks
6198are in use.
6199
6200The macro arranges to call the after-change functions just once for a
6201series of several changes--if that seems safe.
6202
6203Don't alter the variables after-change-functions and
6204after-change-function within the body of a combine-after-change-calls
6205form.
6206
6207** If you define an abbrev (with define-abbrev) whose EXPANSION
6208is not a string, then the abbrev does not expand in the usual sense,
6209but its hook is still run.
6210
6211** Normally, the Lisp debugger is not used (even if you have enabled it)
6212for errors that are handled by condition-case.
6213
6214If you set debug-on-signal to a non-nil value, then the debugger is called
6215regardless of whether there is a handler for the condition. This is
6216useful for debugging problems that happen inside of a condition-case.
6217
6218This mode of operation seems to be unreliable in other ways. Errors that
6219are normal and ought to be handled, perhaps in timers or process
6220filters, will instead invoke the debugger. So don't say you weren't
6221warned.
6222
6223** The new variable ring-bell-function lets you specify your own
6224way for Emacs to "ring the bell".
6225
6226** If run-at-time's TIME argument is t, the action is repeated at
6227integral multiples of REPEAT from the epoch; this is useful for
6228functions like display-time.
6229
6230** You can use the function locate-library to find the precise file
6231name of a Lisp library. This isn't new, but wasn't documented before.
6232
6233** Commands for entering view mode have new optional arguments that
6234can be used from Lisp. Low-level entrance to and exit from view mode
6235is done by functions view-mode-enter and view-mode-exit.
6236
6237** batch-byte-compile-file now makes Emacs return a nonzero status code
6238if there is an error in compilation.
6239
6240** pop-to-buffer, switch-to-buffer-other-window and
6241switch-to-buffer-other-frame now accept an additional optional
6242argument NORECORD, much like switch-to-buffer. If it is non-nil,
6243they don't put the buffer at the front of the buffer list.
6244
6245** If your .emacs file leaves the *scratch* buffer non-empty,
6246Emacs does not display the startup message, so as to avoid changing
6247the *scratch* buffer.
6248
6249** The new function regexp-opt returns an efficient regexp to match a string.
6250The arguments are STRINGS and (optionally) PAREN. This function can be used
6251where regexp matching or searching is intensively used and speed is important,
6252e.g., in Font Lock mode.
6253
6254** The variable buffer-display-count is local to each buffer,
6255and is incremented each time the buffer is displayed in a window.
6256It starts at 0 when the buffer is created.
6257
6258** The new function compose-mail starts composing a mail message
6259using the user's chosen mail composition agent (specified with the
6260variable mail-user-agent). It has variants compose-mail-other-window
6261and compose-mail-other-frame.
6262
6263** The `user-full-name' function now takes an optional parameter which
6264can either be a number (the UID) or a string (the login name). The
6265full name of the specified user will be returned.
6266
6267** Lisp packages that load files of customizations, or any other sort
6268of user profile, should obey the variable init-file-user in deciding
6269where to find it. They should load the profile of the user name found
6270in that variable. If init-file-user is nil, meaning that the -q
6271option was used, then Lisp packages should not load the customization
6272files at all.
6273
6274** format-time-string now allows you to specify the field width
6275and type of padding. This works as in printf: you write the field
6276width as digits in the middle of a %-construct. If you start
6277the field width with 0, it means to pad with zeros.
6278
6279For example, %S normally specifies the number of seconds since the
6280minute; %03S means to pad this with zeros to 3 positions, %_3S to pad
6281with spaces to 3 positions. Plain %3S pads with zeros, because that
6282is how %S normally pads to two positions.
6283
6284** thing-at-point now supports a new kind of "thing": url.
6285
6286** imenu.el changes.
6287
6288You can now specify a function to be run when selecting an
79214ddf 6289item from menu created by imenu.
a933dad1
DL
6290
6291An example of using this feature: if we define imenu items for the
6292#include directives in a C file, we can open the included file when we
6293select one of those items.
6294\f
6295* Emacs 19.34 is a bug-fix release with no user-visible changes.
6296\f
6297* Changes in Emacs 19.33.
6298
6299** Bibtex mode no longer turns on Auto Fill automatically. (No major
6300mode should do that--it is the user's choice.)
6301
6302** The variable normal-auto-fill-function specifies the function to
6303use for auto-fill-function, if and when Auto Fill is turned on.
6304Major modes can set this locally to alter how Auto Fill works.
6305\f
6306* Editing Changes in Emacs 19.32
6307
6308** C-x f with no argument now signals an error.
6309To set the fill column at the current column, use C-u C-x f.
6310
6311** Expanding dynamic abbrevs with M-/ is now smarter about case
6312conversion. If you type the abbreviation with mixed case, and it
6313matches the beginning of the expansion including case, then the
6314expansion is copied verbatim. Using SPC M-/ to copy an additional
6315word always copies it verbatim except when the previous copied word is
6316all caps.
6317
6318** On a non-windowing terminal, which can display only one Emacs frame
6319at a time, creating a new frame with C-x 5 2 also selects that frame.
6320
6321When using a display that can show multiple frames at once, C-x 5 2
6322does make the frame visible, but does not select it. This is the same
6323as in previous Emacs versions.
6324
6325** You can use C-x 5 2 to create multiple frames on MSDOS, just as on a
6326non-X terminal on Unix. Of course, only one frame is visible at any
6327time, since your terminal doesn't have the ability to display multiple
6328frames.
6329
6330** On Windows, set win32-pass-alt-to-system to a non-nil value
6331if you would like tapping the Alt key to invoke the Windows menu.
6332This feature is not enabled by default; since the Alt key is also the
6333Meta key, it is too easy and painful to activate this feature by
6334accident.
6335
6336** The command apply-macro-to-region-lines repeats the last defined
6337keyboard macro once for each complete line within the current region.
6338It does this line by line, by moving point to the beginning of that
6339line and then executing the macro.
6340
6341This command is not new, but was never documented before.
6342
6343** You can now use Mouse-1 to place the region around a string constant
6344(something surrounded by doublequote characters or other delimiter
6345characters of like syntax) by double-clicking on one of the delimiting
6346characters.
6347
6348** Font Lock mode
6349
6350*** Font Lock support modes
6351
6352Font Lock can be configured to use Fast Lock mode and Lazy Lock mode (see
6353below) in a flexible way. Rather than adding the appropriate function to the
6354hook font-lock-mode-hook, you can use the new variable font-lock-support-mode
6355to control which modes have Fast Lock mode or Lazy Lock mode turned on when
6356Font Lock mode is enabled.
6357
6358For example, to use Fast Lock mode when Font Lock mode is turned on, put:
6359
6360 (setq font-lock-support-mode 'fast-lock-mode)
6361
6362in your ~/.emacs.
6363
6364*** lazy-lock
6365
6366The lazy-lock package speeds up Font Lock mode by making fontification occur
6367only when necessary, such as when a previously unfontified part of the buffer
6368becomes visible in a window. When you create a buffer with Font Lock mode and
6369Lazy Lock mode turned on, the buffer is not fontified. When certain events
6370occur (such as scrolling), Lazy Lock makes sure that the visible parts of the
6371buffer are fontified. Lazy Lock also defers on-the-fly fontification until
6372Emacs has been idle for a given amount of time.
6373
6374To use this package, put in your ~/.emacs:
6375
6376 (setq font-lock-support-mode 'lazy-lock-mode)
6377
6378To control the package behaviour, see the documentation for `lazy-lock-mode'.
6379
6380** Changes in BibTeX mode.
6381
6382*** For all entries allow spaces and tabs between opening brace or
6383paren and key.
6384
6385*** Non-escaped double-quoted characters (as in `Sch"of') are now
6386supported.
6387
6388** Gnus changes.
6389
6390Gnus, the Emacs news reader, has undergone further rewriting. Many new
6391commands and variables have been added. There should be no
6392significant incompatibilities between this Gnus version and the
6393previously released version, except in the message composition area.
6394
6395Below is a list of the more user-visible changes. Coding changes
6396between Gnus 5.1 and 5.2 are more extensive.
6397
79214ddf 6398*** A new message composition mode is used. All old customization
a933dad1
DL
6399variables for mail-mode, rnews-reply-mode and gnus-msg are now
6400obsolete.
6401
6402*** Gnus is now able to generate "sparse" threads -- threads where
6403missing articles are represented by empty nodes.
6404
6405 (setq gnus-build-sparse-threads 'some)
6406
6407*** Outgoing articles are stored on a special archive server.
6408
6409 To disable this: (setq gnus-message-archive-group nil)
6410
6411*** Partial thread regeneration now happens when articles are
79214ddf 6412referred.
a933dad1
DL
6413
6414*** Gnus can make use of GroupLens predictions:
6415
6416 (setq gnus-use-grouplens t)
6417
6418*** A trn-line tree buffer can be displayed.
6419
6420 (setq gnus-use-trees t)
6421
6422*** An nn-like pick-and-read minor mode is available for the summary
79214ddf 6423buffers.
a933dad1
DL
6424
6425 (add-hook 'gnus-summary-mode-hook 'gnus-pick-mode)
6426
6427*** In binary groups you can use a special binary minor mode:
6428
6429 `M-x gnus-binary-mode'
6430
6431*** Groups can be grouped in a folding topic hierarchy.
6432
6433 (add-hook 'gnus-group-mode-hook 'gnus-topic-mode)
6434
6435*** Gnus can re-send and bounce mail.
6436
6437 Use the `S D r' and `S D b'.
6438
6439*** Groups can now have a score, and bubbling based on entry frequency
6440is possible.
6441
6442 (add-hook 'gnus-summary-exit-hook 'gnus-summary-bubble-group)
6443
6444*** Groups can be process-marked, and commands can be performed on
6445groups of groups.
6446
6447*** Caching is possible in virtual groups.
6448
6449*** nndoc now understands all kinds of digests, mail boxes, rnews news
79214ddf 6450batches, ClariNet briefs collections, and just about everything else.
a933dad1
DL
6451
6452*** Gnus has a new backend (nnsoup) to create/read SOUP packets.
6453
6454*** The Gnus cache is much faster.
6455
6456*** Groups can be sorted according to many criteria.
6457
6458 For instance: (setq gnus-group-sort-function 'gnus-group-sort-by-rank)
6459
6460*** New group parameters have been introduced to set list-address and
6461expiration times.
6462
6463*** All formatting specs allow specifying faces to be used.
6464
6465*** There are several more commands for setting/removing/acting on
6466process marked articles on the `M P' submap.
6467
6468*** The summary buffer can be limited to show parts of the available
6469articles based on a wide range of criteria. These commands have been
6470bound to keys on the `/' submap.
6471
6472*** Articles can be made persistent -- as an alternative to saving
6473articles with the `*' command.
6474
6475*** All functions for hiding article elements are now toggles.
6476
6477*** Article headers can be buttonized.
6478
6479 (add-hook 'gnus-article-display-hook 'gnus-article-add-buttons-to-head)
6480
6481*** All mail backends support fetching articles by Message-ID.
6482
79214ddf 6483*** Duplicate mail can now be treated properly. See the
a933dad1
DL
6484`nnmail-treat-duplicates' variable.
6485
6486*** All summary mode commands are available directly from the article
79214ddf 6487buffer.
a933dad1
DL
6488
6489*** Frames can be part of `gnus-buffer-configuration'.
6490
6491*** Mail can be re-scanned by a daemonic process.
6492
6493*** Gnus can make use of NoCeM files to filter spam.
6494
6495 (setq gnus-use-nocem t)
6496
79214ddf 6497*** Groups can be made permanently visible.
a933dad1
DL
6498
6499 (setq gnus-permanently-visible-groups "^nnml:")
6500
79214ddf 6501*** Many new hooks have been introduced to make customizing easier.
a933dad1
DL
6502
6503*** Gnus respects the Mail-Copies-To header.
6504
79214ddf 6505*** Threads can be gathered by looking at the References header.
a933dad1 6506
79214ddf 6507 (setq gnus-summary-thread-gathering-function
a933dad1
DL
6508 'gnus-gather-threads-by-references)
6509
6510*** Read articles can be stored in a special backlog buffer to avoid
79214ddf 6511refetching.
a933dad1
DL
6512
6513 (setq gnus-keep-backlog 50)
6514
6515*** A clean copy of the current article is always stored in a separate
6516buffer to allow easier treatment.
6517
6518*** Gnus can suggest where to save articles. See `gnus-split-methods'.
6519
6520*** Gnus doesn't have to do as much prompting when saving.
6521
6522 (setq gnus-prompt-before-saving t)
6523
6524*** gnus-uu can view decoded files asynchronously while fetching
79214ddf 6525articles.
a933dad1
DL
6526
6527 (setq gnus-uu-grabbed-file-functions 'gnus-uu-grab-view)
6528
79214ddf 6529*** Filling in the article buffer now works properly on cited text.
a933dad1
DL
6530
6531*** Hiding cited text adds buttons to toggle hiding, and how much
6532cited text to hide is now customizable.
6533
6534 (setq gnus-cited-lines-visible 2)
6535
6536*** Boring headers can be hidden.
6537
6538 (add-hook 'gnus-article-display-hook 'gnus-article-hide-boring-headers)
6539
6540*** Default scoring values can now be set from the menu bar.
6541
6542*** Further syntax checking of outgoing articles have been added.
6543
6544The Gnus manual has been expanded. It explains all these new features
6545in greater detail.
6546\f
6547* Lisp Changes in Emacs 19.32
6548
6549** The function set-visited-file-name now accepts an optional
6550second argument NO-QUERY. If it is non-nil, then the user is not
6551asked for confirmation in the case where the specified file already
6552exists.
6553
6554** The variable print-length applies to printing vectors and bitvectors,
6555as well as lists.
6556
6557** The new function keymap-parent returns the parent keymap
6558of a given keymap.
6559
6560** The new function set-keymap-parent specifies a new parent for a
6561given keymap. The arguments are KEYMAP and PARENT. PARENT must be a
6562keymap or nil.
6563
6564** Sometimes menu keymaps use a command name, a symbol, which is really
6565an automatically generated alias for some other command, the "real"
6566name. In such a case, you should give that alias symbol a non-nil
6567menu-alias property. That property tells the menu system to look for
6568equivalent keys for the real name instead of equivalent keys for the
6569alias.
6570\f
6571* Editing Changes in Emacs 19.31
6572
6573** Freedom of the press restricted in the United States.
6574
6575Emacs has been censored in accord with the Communications Decency Act.
6576This includes removing some features of the doctor program. That law
6577was described by its supporters as a ban on pornography, but it bans
6578far more than that. The Emacs distribution has never contained any
6579pornography, but parts of it were nonetheless prohibited.
6580
6581For information on US government censorship of the Internet, and what
6582you can do to bring back freedom of the press, see the web site
6583`http://www.vtw.org/'.
6584
6585** A note about C mode indentation customization.
6586
6587The old (Emacs 19.29) ways of specifying a C indentation style
6588do not normally work in the new implementation of C mode.
6589It has its own methods of customizing indentation, which are
6590much more powerful than the old C mode. See the Editing Programs
6591chapter of the manual for details.
6592
6593However, you can load the library cc-compat to make the old
6594customization variables take effect.
6595
6596** Marking with the mouse.
6597
6598When you mark a region with the mouse, the region now remains
6599highlighted until the next input event, regardless of whether you are
6600using M-x transient-mark-mode.
6601
6602** Improved Windows NT/95 support.
6603
6604*** Emacs now supports scroll bars on Windows NT and Windows 95.
6605
6606*** Emacs now supports subprocesses on Windows 95. (Subprocesses used
6607to work on NT only and not on 95.)
6608
6609*** There are difficulties with subprocesses, though, due to problems
6610in Windows, beyond the control of Emacs. They work fine as long as
6611you run Windows applications. The problems arise when you run a DOS
6612application in a subprocesses. Since current shells run as DOS
6613applications, these problems are significant.
6614
6615If you run a DOS application in a subprocess, then the application is
6616likely to busy-wait, which means that your machine will be 100% busy.
6617However, if you don't mind the temporary heavy load, the subprocess
6618will work OK as long as you tell it to terminate before you start any
6619other DOS application as a subprocess.
6620
6621Emacs is unable to terminate or interrupt a DOS subprocess.
6622You have to do this by providing input directly to the subprocess.
6623
6624If you run two DOS applications at the same time in two separate
6625subprocesses, even if one of them is asynchronous, you will probably
6626have to reboot your machine--until then, it will remain 100% busy.
6627Windows simply does not cope when one Windows process tries to run two
6628separate DOS subprocesses. Typing CTL-ALT-DEL and then choosing
6629Shutdown seems to work although it may take a few minutes.
6630
6631** M-x resize-minibuffer-mode.
6632
6633This command, not previously mentioned in NEWS, toggles a mode in
6634which the minibuffer window expands to show as many lines as the
6635minibuffer contains.
6636
6637** `title' frame parameter and resource.
6638
6639The `title' X resource now specifies just the frame title, nothing else.
6640It does not affect the name used for looking up other X resources.
6641It works by setting the new `title' frame parameter, which likewise
6642affects just the displayed title of the frame.
6643
6644The `name' parameter continues to do what it used to do:
6645it specifies the frame name for looking up X resources,
6646and also serves as the default for the displayed title
6647when the `title' parameter is unspecified or nil.
6648
6649** Emacs now uses the X toolkit by default, if you have a new
6650enough version of X installed (X11R5 or newer).
6651
6652** When you compile Emacs with the Motif widget set, Motif handles the
6653F10 key by activating the menu bar. To avoid confusion, the usual
6654Emacs binding of F10 is replaced with a no-op when using Motif.
6655
6656If you want to be able to use F10 in Emacs, you can rebind the Motif
6657menubar to some other key which you don't use. To do so, add
6658something like this to your X resources file. This example rebinds
6659the Motif menu bar activation key to S-F12:
6660
6661 Emacs*defaultVirtualBindings: osfMenuBar : Shift<Key>F12
6662
6663** In overwrite mode, DEL now inserts spaces in most cases
6664to replace the characters it "deletes".
6665
6666** The Rmail summary now shows the number of lines in each message.
6667
6668** Rmail has a new command M-x unforward-rmail-message, which extracts
6669a forwarded message from the message that forwarded it. To use it,
6670select a message which contains a forwarded message and then type the command.
6671It inserts the forwarded message as a separate Rmail message
6672immediately after the selected one.
6673
6674This command also undoes the textual modifications that are standardly
6675made, as part of forwarding, by Rmail and other mail reader programs.
6676
6677** Turning off saving of .saves-... files in your home directory.
6678
6679Each Emacs session writes a file named .saves-... in your home
6680directory to record which files M-x recover-session should recover.
6681If you exit Emacs normally with C-x C-c, it deletes that file. If
6682Emacs or the operating system crashes, the file remains for M-x
6683recover-session.
6684
6685You can turn off the writing of these files by setting
6686auto-save-list-file-name to nil. If you do this, M-x recover-session
6687will not work.
6688
6689Some previous Emacs versions failed to delete these files even on
6690normal exit. This is fixed now. If you are thinking of turning off
6691this feature because of past experiences with versions that had this
6692bug, it would make sense to check whether you still want to do so
6693now that the bug is fixed.
6694
6695** Changes to Version Control (VC)
6696
6697There is a new variable, vc-follow-symlinks. It indicates what to do
6698when you visit a link to a file that is under version control.
6699Editing the file through the link bypasses the version control system,
6700which is dangerous and probably not what you want.
6701
6702If this variable is t, VC follows the link and visits the real file,
6703telling you about it in the echo area. If it is `ask' (the default),
6704VC asks for confirmation whether it should follow the link. If nil,
6705the link is visited and a warning displayed.
6706
6707** iso-acc.el now lets you specify a choice of language.
6708Languages include "latin-1" (the default) and "latin-2" (which
6709is designed for entering ISO Latin-2 characters).
6710
6711There are also choices for specific human languages such as French and
6712Portuguese. These are subsets of Latin-1, which differ in that they
6713enable only the accent characters needed for particular language.
6714The other accent characters, not needed for the chosen language,
6715remain normal.
6716
6717** Posting articles and sending mail now has M-TAB completion on various
6718header fields (Newsgroups, To, CC, ...).
6719
6720Completion in the Newsgroups header depends on the list of groups
6721known to your news reader. Completion in the Followup-To header
6722offers those groups which are in the Newsgroups header, since
6723Followup-To usually just holds one of those.
6724
6725Completion in fields that hold mail addresses works based on the list
6726of local users plus your aliases. Additionally, if your site provides
6727a mail directory or a specific host to use for any unrecognized user
6728name, you can arrange to query that host for completion also. (See the
6729documentation of variables `mail-directory-process' and
6730`mail-directory-stream'.)
6731
6732** A greatly extended sgml-mode offers new features such as (to be configured)
6733skeletons with completing read for tags and attributes, typing named
6734characters including optionally all 8bit characters, making tags invisible
6735with optional alternate display text, skipping and deleting tag(pair)s.
6736
6737Note: since Emacs' syntax feature cannot limit the special meaning of ', " and
6738- to inside <>, for some texts the result, especially of font locking, may be
6739wrong (see `sgml-specials' if you get wrong results).
6740
6741The derived html-mode configures this with tags and attributes more or
6742less HTML3ish. It also offers optional quick keys like C-c 1 for
6743headline or C-c u for unordered list (see `html-quick-keys'). Edit /
6744Text Properties / Face or M-g combinations create tags as applicable.
6745Outline minor mode is supported and level 1 font-locking tries to
6746fontify tag contents (which only works when they fit on one line, due
6747to a limitation in font-lock).
6748
6749External viewing via browse-url can occur automatically upon saving.
6750
6751** M-x imenu-add-to-menubar now adds to the menu bar for the current
6752buffer only. If you want to put an Imenu item in the menu bar for all
6753buffers that use a particular major mode, use the mode hook, as in
6754this example:
6755
6756 (add-hook 'emacs-lisp-mode-hook
6757 '(lambda () (imenu-add-to-menubar "Index")))
6758
6759** Changes in BibTeX mode.
6760
6761*** Field names may now contain digits, hyphens, and underscores.
6762
6763*** Font Lock mode is now supported.
6764
6765*** bibtex-make-optional-field is no longer interactive.
6766
6767*** If bibtex-maintain-sorted-entries is non-nil, inserting new
6768entries is now done with a faster algorithm. However, inserting
6769will fail in this case if the buffer contains invalid entries or
6770isn't in sorted order, so you should finish each entry with C-c C-c
6771(bibtex-close-entry) after you have inserted or modified it.
6772The default value of bibtex-maintain-sorted-entries is nil.
6773
6774*** Function `show-all' is no longer bound to a key, since C-u C-c C-q
6775does the same job.
6776
6777*** Entries with quotes inside quote-delimited fields (as `author =
6778"Stefan Sch{\"o}f"') are now supported.
6779
6780*** Case in field names doesn't matter anymore when searching for help
6781text.
6782
6783** Font Lock mode
6784
6785*** Global Font Lock mode
6786
6787Font Lock mode can be turned on globally, in buffers that support it, by the
6788new command global-font-lock-mode. You can use the new variable
6789font-lock-global-modes to control which modes have Font Lock mode automagically
6790turned on. By default, this variable is set so that Font Lock mode is turned
6791on globally where the buffer mode supports it.
6792
6793For example, to automagically turn on Font Lock mode where supported, put:
6794
6795 (global-font-lock-mode t)
6796
6797in your ~/.emacs.
6798
6799*** Local Refontification
6800
6801In Font Lock mode, editing a line automatically refontifies that line only.
6802However, if your change alters the syntactic context for following lines,
6803those lines remain incorrectly fontified. To refontify them, use the new
6804command M-g M-g (font-lock-fontify-block).
6805
6806In certain major modes, M-g M-g refontifies the entire current function.
6807(The variable font-lock-mark-block-function controls how to find the
6808current function.) In other major modes, M-g M-g refontifies 16 lines
6809above and below point.
6810
6811With a prefix argument N, M-g M-g refontifies N lines above and below point.
6812
6813** Follow mode
6814
6815Follow mode is a new minor mode combining windows showing the same
6816buffer into one tall "virtual window". The windows are typically two
6817side-by-side windows. Follow mode makes them scroll together as if
6818they were a unit. To use it, go to a frame with just one window,
6819split it into two side-by-side windows using C-x 3, and then type M-x
6820follow-mode.
6821
6822M-x follow-mode turns off Follow mode if it is already enabled.
6823
6824To display two side-by-side windows and activate Follow mode, use the
6825command M-x follow-delete-other-windows-and-split.
6826
6827** hide-show changes.
6828
6829The hooks hs-hide-hooks and hs-show-hooks have been renamed
6830to hs-hide-hook and hs-show-hook, to follow the convention for
6831normal hooks.
6832
6833** Simula mode now has a menu containing the most important commands.
6834The new command simula-indent-exp is bound to C-M-q.
6835
6836** etags can now handle programs written in Erlang. Files are
6837recognised by the extensions .erl and .hrl. The tagged lines are
6838those that begin a function, record, or macro.
6839
6840** MSDOS Changes
6841
6842*** It is now possible to compile Emacs with the version 2 of DJGPP.
6843Compilation with DJGPP version 1 also still works.
6844
6845*** The documentation of DOS-specific aspects of Emacs was rewritten
6846and expanded; see the ``MS-DOS'' node in the on-line docs.
6847
6848*** Emacs now uses ~ for backup file names, not .bak.
6849
6850*** You can simulate mouse-3 on two-button mice by simultaneously
6851pressing both mouse buttons.
6852
6853*** A number of packages and commands which previously failed or had
6854restricted functionality on MS-DOS, now work. The most important ones
79214ddf 6855are:
a933dad1
DL
6856
6857**** Printing (both with `M-x lpr-buffer' and with `ps-print' package)
6858now works.
6859
6860**** `Ediff' works (in a single-frame mode).
6861
6862**** `M-x display-time' can be used on MS-DOS (due to the new
6863implementation of Emacs timers, see below).
6864
6865**** `Dired' supports Unix-style shell wildcards.
6866
6867**** The `c-macro-expand' command now works as on other platforms.
6868
6869**** `M-x recover-session' works.
6870
6871**** `M-x list-colors-display' displays all the available colors.
6872
6873**** The `TPU-EDT' package works.
6874\f
6875* Lisp changes in Emacs 19.31.
6876
6877** The function using-unix-filesystems on Windows NT and Windows 95
6878tells Emacs to read and write files assuming that they reside on a
6879remote Unix filesystem. No CR/LF translation is done on any files in
6880this case. Invoking using-unix-filesystems with t activates this
6881behavior, and invoking it with any other value deactivates it.
6882
6883** Change in system-type and system-configuration values.
6884
6885The value of system-type on a Linux-based GNU system is now `lignux',
6886not `linux'. This means that some programs which use `system-type'
6887need to be changed. The value of `system-configuration' will also
6888be different.
6889
6890It is generally recommended to use `system-configuration' rather
6891than `system-type'.
6892
6893See the file LINUX-GNU in this directory for more about this.
6894
6895** The functions shell-command and dired-call-process
6896now run file name handlers for default-directory, if it has them.
6897
6898** Undoing the deletion of text now restores the positions of markers
6899that pointed into or next to the deleted text.
6900
6901** Timers created with run-at-time now work internally to Emacs, and
6902no longer use a separate process. Therefore, they now work more
6903reliably and can be used for shorter time delays.
6904
6905The new function run-with-timer is a convenient way to set up a timer
6906to run a specified amount of time after the present. A call looks
6907like this:
6908
6909 (run-with-timer SECS REPEAT FUNCTION ARGS...)
6910
6911SECS says how many seconds should elapse before the timer happens.
6912It may be an integer or a floating point number. When the timer
6913becomes ripe, the action is to call FUNCTION with arguments ARGS.
6914
6915REPEAT gives the interval for repeating the timer (measured in
6916seconds). It may be an integer or a floating point number. nil or 0
6917means don't repeat at all--call FUNCTION just once.
6918
6919*** with-timeout provides an easy way to do something but give
6920up if too much time passes.
6921
6922 (with-timeout (SECONDS TIMEOUT-FORMS...) BODY...)
6923
6924This executes BODY, but gives up after SECONDS seconds.
6925If it gives up, it runs the TIMEOUT-FORMS and returns the value
6926of the last one of them. Normally it returns the value of the last
6927form in BODY.
6928
6929*** You can now arrange to call a function whenever Emacs is idle for
6930a certain length of time. To do this, call run-with-idle-timer. A
6931call looks like this:
6932
6933 (run-with-idle-timer SECS REPEAT FUNCTION ARGS...)
6934
6935SECS says how many seconds of idleness should elapse before the timer
6936runs. It may be an integer or a floating point number. When the
6937timer becomes ripe, the action is to call FUNCTION with arguments
6938ARGS.
6939
6940Emacs becomes idle whenever it finishes executing a keyboard or mouse
6941command. It remains idle until it receives another keyboard or mouse
6942command.
6943
6944REPEAT, if non-nil, means this timer should be activated again each
6945time Emacs becomes idle and remains idle for SECS seconds The timer
6946does not repeat if Emacs *remains* idle; it runs at most once after
6947each time Emacs becomes idle.
6948
6949If REPEAT is nil, the timer runs just once, the first time Emacs is
6950idle for SECS seconds.
6951
6952*** post-command-idle-hook is now obsolete; you shouldn't use it at
6953all, because it interferes with the idle timer mechanism. If your
6954programs use post-command-idle-hook, convert them to use idle timers
6955instead.
6956
6957*** y-or-n-p-with-timeout lets you ask a question but give up if
6958there is no answer within a certain time.
6959
6960 (y-or-n-p-with-timeout PROMPT SECONDS DEFAULT-VALUE)
6961
6962asks the question PROMPT (just like y-or-n-p). If the user answers
6963within SECONDS seconds, it returns the answer that the user gave.
6964Otherwise it gives up after SECONDS seconds, and returns DEFAULT-VALUE.
6965
6966** Minor change to `encode-time': you can now pass more than seven
6967arguments. If you do that, the first six arguments have the usual
6968meaning, the last argument is interpreted as the time zone, and the
6969arguments in between are ignored.
6970
6971This means that it works to use the list returned by `decode-time' as
6972the list of arguments for `encode-time'.
6973
6974** The default value of load-path now includes the directory
6975/usr/local/share/emacs/VERSION/site-lisp In addition to
6976/usr/local/share/emacs/site-lisp. You can use this new directory for
6977site-specific Lisp packages that belong with a particular Emacs
6978version.
6979
6980It is not unusual for a Lisp package that works well in one Emacs
6981version to cause trouble in another. Sometimes packages need updating
6982for incompatible changes; sometimes they look at internal data that
6983has changed; sometimes the package has been installed in Emacs itself
6984and the installed version should be used. Whatever the reason for the
6985problem, this new feature makes it easier to solve.
6986
6987** When your program contains a fixed file name (like .completions or
6988.abbrev.defs), the file name usually needs to be different on operating
6989systems with limited file name syntax.
6990
6991Now you can avoid ad-hoc conditionals by using the function
6992convert-standard-filename to convert the file name to a proper form
6993for each operating system. Here is an example of use, from the file
6994completions.el:
6995
6996(defvar save-completions-file-name
6997 (convert-standard-filename "~/.completions")
6998 "*The filename to save completions to.")
6999
7000This sets the variable save-completions-file-name to a value that
7001depends on the operating system, because the definition of
7002convert-standard-filename depends on the operating system. On
7003Unix-like systems, it returns the specified file name unchanged. On
7004MS-DOS, it adapts the name to fit the limitations of that system.
7005
7006** The interactive spec N now returns the numeric prefix argument
7007rather than the raw prefix argument. (It still reads a number using the
7008minibuffer if there is no prefix argument at all.)
7009
7010** When a process is deleted, this no longer disconnects the process
7011marker from its buffer position.
7012
7013** The variable garbage-collection-messages now controls whether
7014Emacs displays a message at the beginning and end of garbage collection.
7015The default is nil, meaning there are no messages.
7016
7017** The variable debug-ignored-errors specifies certain kinds of errors
7018that should not enter the debugger. Its value is a list of error
7019condition symbols and/or regular expressions. If the error has any
7020of the condition symbols listed, or if any of the regular expressions
7021matches the error message, then that error does not enter the debugger,
7022regardless of the value of debug-on-error.
7023
7024This variable is initialized to match certain common but uninteresting
7025errors that happen often during editing.
7026
7027** The new function error-message-string converts an error datum
7028into its error message. The error datum is what condition-case
7029puts into the variable, to describe the error that happened.
7030
7031** Anything that changes which buffer appears in a given window
7032now runs the window-scroll-functions for that window.
7033
7034** The new function get-buffer-window-list returns a list of windows displaying
7035a buffer. The function is called with the buffer (a buffer object or a buffer
7036name) and two optional arguments specifying the minibuffer windows and frames
7037to search. Therefore this function takes optional args like next-window etc.,
7038and not get-buffer-window.
7039
7040** buffer-substring now runs the hook buffer-access-fontify-functions,
7041calling each function with two arguments--the range of the buffer
7042being accessed. buffer-substring-no-properties does not call them.
7043
7044If you use this feature, you should set the variable
7045buffer-access-fontified-property to a non-nil symbol, which is a
7046property name. Then, if all the characters in the buffer range have a
7047non-nil value for that property, the buffer-access-fontify-functions
7048are not called. When called, these functions should put a non-nil
7049property on the text that they fontify, so that they won't get called
7050over and over for the same text.
7051
7052** Changes in lisp-mnt.el
7053
7054*** The lisp-mnt package can now recognize file headers that are written
7055in the formats used by the `what' command and the RCS `ident' command:
7056
7057;; @(#) HEADER: text
7058;; $HEADER: text $
7059
7060in addition to the normal
7061
7062;; HEADER: text
7063
7064*** The commands lm-verify and lm-synopsis are now interactive. lm-verify
7065checks that the library file has proper sections and headers, and
7066lm-synopsis extracts first line "synopsis'"information.
7067\f
7068* For older news, see the file ONEWS.
7069
7070----------------------------------------------------------------------
7071Copyright information:
7072
7073Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
7074
7075 Permission is granted to anyone to make or distribute verbatim copies
7076 of this document as received, in any medium, provided that the
7077 copyright notice and this permission notice are preserved,
7078 thus giving the recipient permission to redistribute in turn.
7079
7080 Permission is granted to distribute modified versions
7081 of this document, or of portions of it,
7082 under the above conditions, provided also that they
7083 carry prominent notices stating who last changed them.
7084\f
7085Local variables:
7086mode: outline
7087paragraph-separate: "[ \f]*$"
7088end: