comparison etc/NEWS @ 90519:138ce2701550

Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 320-342) - Update from CVS - Merge from gnus--rel--5.10 - lisp/play/cookie1.el (cookie): Work properly when there's only one entry - Add note about "link" button-class to etc/TODO * gnus--rel--5.10 (patch 108-112) - Merge from emacs--devo--0 - Clean up merge mistakes - Update from CVS - Update from CVS: texi/gnus.texi (Summary Buffer Lines): Fix typo. Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-86
author Miles Bader <miles@gnu.org>
date Thu, 06 Jul 2006 08:59:39 +0000
parents 138027c8c982 94186fc5fd79
children 8a8e69664178
comparison
equal deleted inserted replaced
90518:64c755511769 90519:138ce2701550
97 128-255. 97 128-255.
98 98
99 * Installation Changes in Emacs 22.1 99 * Installation Changes in Emacs 22.1
100 100
101 --- 101 ---
102 ** Emacs comes with a new set of icons.
103 These icons are displayed on the taskbar and/or titlebar when Emacs
104 runs in a graphical environment. Source files for these icons can be
105 found in etc/images/icons. (You can't change the icons displayed by
106 Emacs by changing these files directly. On X, the icon is compiled
107 into the Emacs executable; see gnu.h in the source tree. On MS
108 Windows, see nt/icons/emacs.ico.)
109
110 ---
102 ** Emacs now supports new configure options `--program-prefix', 111 ** Emacs now supports new configure options `--program-prefix',
103 `--program-suffix' and `--program-transform-name' that affect the names of 112 `--program-suffix' and `--program-transform-name' that affect the names of
104 installed programs. 113 installed programs.
105 114
106 --- 115 ---
209 The Emacs terminal emulation in term.el now uses "eterm-color" as its 218 The Emacs terminal emulation in term.el now uses "eterm-color" as its
210 terminfo name, since term.el now supports color. 219 terminfo name, since term.el now supports color.
211 220
212 --- 221 ---
213 ** Emacs Lisp source files are compressed by default if `gzip' is available. 222 ** Emacs Lisp source files are compressed by default if `gzip' is available.
223
224 ---
225 ** All images used in Emacs have been consolidated in etc/images and subdirs.
226 See also the changes to `find-image', documented below.
214 227
215 228
216 * Startup Changes in Emacs 22.1 229 * Startup Changes in Emacs 22.1
217 230
218 +++ 231 +++
451 `same-window'. 464 `same-window'.
452 465
453 +++ 466 +++
454 ** The default for the paper size (variable ps-paper-type) is taken 467 ** The default for the paper size (variable ps-paper-type) is taken
455 from the locale. 468 from the locale.
456
457 ** The command `list-faces-display' now accepts a prefix arg.
458 When passed, the function prompts for a regular expression and lists
459 only faces matching this regexp.
460 469
461 ** Mark command changes: 470 ** Mark command changes:
462 471
463 +++ 472 +++
464 *** A prefix argument is no longer required to repeat a jump to a 473 *** A prefix argument is no longer required to repeat a jump to a
2016 for pager-like scrolling. Keys which normally move point by line or 2025 for pager-like scrolling. Keys which normally move point by line or
2017 paragraph will scroll the buffer by the respective amount of lines 2026 paragraph will scroll the buffer by the respective amount of lines
2018 instead and point will be kept vertically fixed relative to window 2027 instead and point will be kept vertically fixed relative to window
2019 boundaries during scrolling. 2028 boundaries during scrolling.
2020 2029
2030 +++
2021 ** The file t-mouse.el is now part of Emacs and provides access to mouse 2031 ** The file t-mouse.el is now part of Emacs and provides access to mouse
2022 events from the console. It still requires gpm to work but has been updated 2032 events from the console. It still requires gpm to work but has been updated
2023 for Emacs 22. In particular, the mode-line is now position sensitive. 2033 for Emacs 22. In particular, the mode-line is now position sensitive.
2024 2034
2025 * Changes in Specialized Modes and Packages in Emacs 22.1: 2035 * Changes in Specialized Modes and Packages in Emacs 22.1:
3224 See the file GNUS-NEWS or the node "Oort Gnus" in the Gnus manual for details. 3234 See the file GNUS-NEWS or the node "Oort Gnus" in the Gnus manual for details.
3225 3235
3226 --- 3236 ---
3227 ** MH-E changes. 3237 ** MH-E changes.
3228 3238
3229 Upgraded to MH-E version 8.0. There have been major changes since 3239 Upgraded to MH-E version 8.0.2. There have been major changes since
3230 version 5.0.2; see MH-E-NEWS for details. 3240 version 5.0.2; see MH-E-NEWS for details.
3231 3241
3232 ** Calendar changes: 3242 ** Calendar changes:
3233 3243
3234 +++ 3244 +++
3569 (ewoc-create 'PP "start\n") 3579 (ewoc-create 'PP "start\n")
3570 3580
3571 ;; NOSEP t 3581 ;; NOSEP t
3572 (defun PP (data) (insert (format "%S\n" data))) 3582 (defun PP (data) (insert (format "%S\n" data)))
3573 (ewoc-create 'PP "start\n\n" "\n" t) 3583 (ewoc-create 'PP "start\n\n" "\n" t)
3584
3585 ** Locate changes
3586
3587 ---
3588 *** By default, reverting the *Locate* buffer now just runs the last
3589 `locate' command back over again without offering to update the locate
3590 database (which normally only works if you have root privileges). If
3591 you prefer the old behavior, set the new customizable option
3592 `locate-update-when-revert' to t.
3574 3593
3575 3594
3576 * Changes in Emacs 22.1 on non-free operating systems 3595 * Changes in Emacs 22.1 on non-free operating systems
3577 3596
3578 +++ 3597 +++
4801 4820
4802 This is like `window-height' but does not count the mode line or the 4821 This is like `window-height' but does not count the mode line or the
4803 header line. 4822 header line.
4804 4823
4805 +++ 4824 +++
4806 *** New function `window-body-height'.
4807
4808 This is like `window-height' but does not count the mode line
4809 or the header line.
4810
4811 +++
4812 *** You can now make a window as short as one line. 4825 *** You can now make a window as short as one line.
4813 4826
4814 A window that is just one line tall does not display either a mode 4827 A window that is just one line tall does not display either a mode
4815 line or a header line, even if the variables `mode-line-format' and 4828 line or a header line, even if the variables `mode-line-format' and
4816 `header-line-format' call for them. A window that is two lines tall 4829 `header-line-format' call for them. A window that is two lines tall
5252 5265
5253 It is like `remove-text-properties' except that it takes a list of 5266 It is like `remove-text-properties' except that it takes a list of
5254 property names as argument rather than a property list. 5267 property names as argument rather than a property list.
5255 5268
5256 ** Face changes 5269 ** Face changes
5270
5271 +++
5272 *** The variable `facemenu-unlisted-faces' has been removed.
5273 Emacs has a lot more faces than in the past, and nearly all of them
5274 needed to be excluded. The new variable `facemenu-listed-faces' lists
5275 the faces to include in the face menu.
5257 5276
5258 +++ 5277 +++
5259 *** The new face attribute condition `min-colors' can be used to tailor 5278 *** The new face attribute condition `min-colors' can be used to tailor
5260 the face color to the number of colors supported by a display, and 5279 the face color to the number of colors supported by a display, and
5261 define the foreground and background colors accordingly so that they 5280 define the foreground and background colors accordingly so that they