comparison etc/NEWS.22 @ 91073:4bc33ffdda1a

Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 902-908) - Update from CVS - Merge from emacs--rel--22 * emacs--rel--22 (patch 131-137) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 261-262) - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-278
author Miles Bader <miles@gnu.org>
date Sat, 27 Oct 2007 09:12:07 +0000
parents 4b09bb044f38 b210bba3f477
children 880960b70474
comparison
equal deleted inserted replaced
91072:74ab3ea909f9 91073:4bc33ffdda1a
57 ** Scrollbars follow the system theme on Windows XP and later. 57 ** Scrollbars follow the system theme on Windows XP and later.
58 Windows XP introduced themed scrollbars, but applications have to take 58 Windows XP introduced themed scrollbars, but applications have to take
59 special steps to use them. Emacs now has the appropriate resources linked 59 special steps to use them. Emacs now has the appropriate resources linked
60 in to make it use the scrollbars from the system theme. 60 in to make it use the scrollbars from the system theme.
61 61
62 ** focus-follows-mouse defaults to nil on MS Windows 62 ** focus-follows-mouse defaults to nil on MS Windows.
63 Previously this variable was incorrectly documented as having no effect 63 Previously this variable was incorrectly documented as having no effect
64 on MS Windows, and the default was inappropriate for the majority of 64 on MS Windows, and the default was inappropriate for the majority of
65 Windows installations. Users of software which modifies the behaviour of 65 Windows installations. Users of software which modifies the behaviour of
66 Windows to cause focus to follow the mouse will now need to explicitly set 66 Windows to cause focus to follow the mouse will now need to explicitly set
67 this variable. 67 this variable.
68 68
69 ** The command gdba has been removed as gdb works now for those cases where it 69 ** The command gdba has been removed as gdb works now for those cases where it
70 was needed. In text command mode, if you have problems before execution has 70 was needed. In text command mode, if you have problems before execution has
71 started, use M-x gud-gdb. 71 started, use M-x gud-gdb.
72 72
73 ** desktop.el now detects conflicting uses of the desktop file.
74 When loading the desktop, desktop.el can now detect that the file is already
75 in use. The default behavior is to ask the user what to do, but you can
76 customize it with the new option `desktop-load-locked-desktop'. When saving,
77 desktop.el warns about attempts to overwrite a desktop file if it determines
78 that the desktop being saved is not an update of the one on disk.
79
73 * New Modes and Packages in Emacs 22.2 80 * New Modes and Packages in Emacs 22.2
74 81
75 ** bibtex-style-mode helps you write BibTeX's *.bst files. 82 ** bibtex-style-mode helps you write BibTeX's *.bst files.
76 83
77 ** The new package css-mode.el provides a major mode for editing CSS files. 84 ** The new package css-mode.el provides a major mode for editing CSS files.
95 102
96 *** VC has some support for Git. 103 *** VC has some support for Git.
97 104
98 * Lisp Changes in Emacs 22.2. 105 * Lisp Changes in Emacs 22.2.
99 106
100 ** The command `repeat' no longer attempts to repeat a command bound 107 ** Frame-local variables are deprecated and are slated for removal.
101 to an input event. 108 Use frame parameters instead.
102
103 ** The function invisible-p returns non-nil if the character 109 ** The function invisible-p returns non-nil if the character
104 after a specified position is invisible. 110 after a specified position is invisible.
105 111
106 +++ 112 +++
107 ** inhibit-modification-hooks is bound to t while running modification hooks. 113 ** inhibit-modification-hooks is bound to t while running modification hooks.
108 As a happy consequence, after-change-functions and before-change-functions 114 As a happy consequence, after-change-functions and before-change-functions
109 are not bound to nil any more while running an (after|before)-change-function. 115 are not bound to nil any more while running an (after|before)-change-function.