Changeset 4111 for trunk/etc/NEWS
- Timestamp:
- 07/16/06 08:36:52 (2 years ago)
- Files:
-
- trunk/etc/NEWS (modified) (11 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/etc/NEWS
r4098 r4111 23 23 24 24 * Installation Changes in Emacs 22.1 25 26 --- 27 ** Emacs comes with a new set of icons. 28 These icons are displayed on the taskbar and/or titlebar when Emacs 29 runs in a graphical environment. Source files for these icons can be 30 found in etc/images/icons. (You can't change the icons displayed by 31 Emacs by changing these files directly. On X, the icon is compiled 32 into the Emacs executable; see gnu.h in the source tree. On MS 33 Windows, see nt/icons/emacs.ico.) 25 34 26 35 --- … … 137 146 --- 138 147 ** Emacs Lisp source files are compressed by default if `gzip' is available. 148 149 --- 150 ** All images used in Emacs have been consolidated in etc/images and subdirs. 151 See also the changes to `find-image', documented below. 139 152 140 153 … … 438 451 439 452 C-h d runs apropos-documentation. 453 454 C-h r visits the Emacs Manual in Info. 440 455 441 456 C-h followed by a control character is used for displaying files … … 1997 2012 - refuse to create "containment discontinuities", where a 1998 2013 topic is shifted deeper than the offspring-depth of its' container 2014 - auto-fill-mode is now left inactive when allout-mode starts, if it 2015 already was inactive. also, `allout-inhibit-auto-fill' custom 2016 configuration variable makes it easy to disable auto fill in allout 2017 outlines in general or on a per-buffer basis. 2018 - new hook `allout-mode-deactivate-hook', for coordinating with 2019 deactivation of allout-mode. 1999 2020 - bulleting variation is simpler and more accommodating, both in the 2000 2021 default behavior and in ability to vary when creating new topics 2001 - many internal fixes and refinements 2002 - many module and function docstring clarifications 2022 - mode deactivation now does cleans up effectively, more properly 2023 restoring affected variables and hooks to former state, removing 2024 overlays, etc. 2025 - included a few unit-tests for interior functionality. developers can 2026 have them automatically run at the end of module load by customizing 2027 the option `allout-run-unit-tests-on-load'. 2028 - many, many minor tweaks and fixes. many internal fixes and 2029 refinements of docstrings. 2003 2030 - version number incremented to 2.2 2004 2031 … … 3035 3062 renewenvironment. 3036 3063 3064 **** In C and derived languages, etags creates tags for #undef 3065 3037 3066 *** Honor #line directives. 3038 3067 … … 3149 3178 ** MH-E changes. 3150 3179 3151 Upgraded to MH-E version 8.0. 1. There have been major changes since3180 Upgraded to MH-E version 8.0.2. There have been major changes since 3152 3181 version 5.0.2; see MH-E-NEWS for details. 3153 3182 … … 3495 3524 (ewoc-create 'PP "start\n\n" "\n" t) 3496 3525 3526 ** Locate changes 3527 3528 --- 3529 *** By default, reverting the *Locate* buffer now just runs the last 3530 `locate' command back over again without offering to update the locate 3531 database (which normally only works if you have root privileges). If 3532 you prefer the old behavior, set the new customizable option 3533 `locate-update-when-revert' to t. 3534 3497 3535 3498 3536 * Changes in Emacs 22.1 on non-free operating systems … … 3646 3684 there is no longer a shortage of memory. 3647 3685 3686 ** When Emacs receives a USR1 or USR2 signal, this generates 3687 an input event: usr1-signal or usr2-signal. 3648 3688 3649 3689 * Lisp Changes in Emacs 22.1 … … 4479 4519 (kbd "C-x C-f") => "\^x\^f" 4480 4520 4521 Actually, this format has existed since Emacs 20.1. 4522 4481 4523 *** Interactive commands can be remapped through keymaps. 4482 4524 … … 4875 4917 4876 4918 +++ 4877 *** `sit-for' called with a negative SECONDS value now forces an 4878 immediate redisplay even if input is pending. 4919 *** Iconifying or deiconifying a frame no longer makes sit-for return. 4920 4921 +++ 4922 *** New function `redisplay' causes an immediate redisplay if no input is 4923 available, equivalent to (sit-for 0). The call (redisplay t) forces 4924 an immediate redisplay even if input is pending. 4879 4925 4880 4926 +++ … … 5171 5217 5172 5218 ** Face changes 5219 5220 +++ 5221 *** The variable `facemenu-unlisted-faces' has been removed. 5222 Emacs has a lot more faces than in the past, and nearly all of them 5223 needed to be excluded. The new variable `facemenu-listed-faces' lists 5224 the faces to include in the face menu. 5173 5225 5174 5226 +++
