Mercurial > emacs
comparison etc/NEWS.22 @ 90979:988f1edc9674
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 803-805)
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-227
author | Miles Bader <miles@gnu.org> |
---|---|
date | Mon, 09 Jul 2007 08:00:55 +0000 |
parents | e9f94688a064 91e9b5441176 |
children | a66921565bcb |
comparison
equal
deleted
inserted
replaced
90978:f866074aedc4 | 90979:988f1edc9674 |
---|---|
48 | 48 |
49 * New Modes and Packages in Emacs 22.2 | 49 * New Modes and Packages in Emacs 22.2 |
50 | 50 |
51 ** The new package css-mode.el provides a major mode for editing CSS files. | 51 ** The new package css-mode.el provides a major mode for editing CSS files. |
52 | 52 |
53 ** The new package vera-mode.el provides a major mode for editing Vera files. | |
54 | |
53 ** The new package socks.el implements the SOCKS v5 protocol. | 55 ** The new package socks.el implements the SOCKS v5 protocol. |
56 | |
57 ** VC | |
58 | |
59 *** VC has some support for Mercurial (hg). | |
54 | 60 |
55 | 61 |
56 * Installation Changes in Emacs 22.1 | 62 * Installation Changes in Emacs 22.1 |
57 | 63 |
58 ** You can build Emacs with Gtk+ widgets by specifying `--with-x-toolkit=gtk' | 64 ** You can build Emacs with Gtk+ widgets by specifying `--with-x-toolkit=gtk' |
256 ** When Emacs prompts for file names, SPC no longer completes the file name. | 262 ** When Emacs prompts for file names, SPC no longer completes the file name. |
257 This is so filenames with embedded spaces could be input without the | 263 This is so filenames with embedded spaces could be input without the |
258 need to quote the space with a C-q. The underlying changes in the | 264 need to quote the space with a C-q. The underlying changes in the |
259 keymaps that are active in the minibuffer are described below under | 265 keymaps that are active in the minibuffer are described below under |
260 "New keymaps for typing file names". | 266 "New keymaps for typing file names". |
267 | |
268 If you want the old behavior back, put these two key bindings to your | |
269 ~/.emacs init file: | |
270 | |
271 (define-key minibuffer-local-filename-completion-map | |
272 " " 'minibuffer-complete-word) | |
273 (define-key minibuffer-local-must-match-filename-map | |
274 " " 'minibuffer-complete-word) | |
261 | 275 |
262 ** The completion commands TAB, SPC and ? in the minibuffer apply only | 276 ** The completion commands TAB, SPC and ? in the minibuffer apply only |
263 to the text before point. If there is text in the buffer after point, | 277 to the text before point. If there is text in the buffer after point, |
264 it remains unchanged. | 278 it remains unchanged. |
265 | 279 |