diff options
| author | Miles Bader | 2007-10-19 00:00:21 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-10-19 00:00:21 +0000 |
| commit | 9c8020a8df03dc67a56d7df15664dcf7ace54bf0 (patch) | |
| tree | 09b0646addff3c39f9e96ba89c04bdcc038a87a7 /etc | |
| parent | dfc3268dfa133a2e0a677f1af7c1ee548eae065d (diff) | |
| parent | bd3164743080f3eb5fc316aca7cc5322ca58fe33 (diff) | |
| download | emacs-9c8020a8df03dc67a56d7df15664dcf7ace54bf0.tar.gz emacs-9c8020a8df03dc67a56d7df15664dcf7ace54bf0.zip | |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 890-898)
- Update from CVS
- Merge from emacs--rel--22
* emacs--rel--22 (patch 122-128)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 257-258)
- Merge from emacs--rel--22
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-270
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/NEWS | 10 | ||||
| -rw-r--r-- | etc/NEWS.22 | 2 | ||||
| -rw-r--r-- | etc/PROBLEMS | 7 |
3 files changed, 17 insertions, 2 deletions
| @@ -83,6 +83,9 @@ recenter the visited source file. Its value can be a number (for example, | |||
| 83 | ** The mode-line displays a `@' if the default-directory for the current buffer | 83 | ** The mode-line displays a `@' if the default-directory for the current buffer |
| 84 | is on a remote machine, or a hyphen otherwise. | 84 | is on a remote machine, or a hyphen otherwise. |
| 85 | 85 | ||
| 86 | ** The mode-line displays a mode menu when mouse-1 is clicked on a minor mode, | ||
| 87 | in the same way as it already did for major modes. | ||
| 88 | |||
| 86 | ** The new command balance-windows-area balances windows both vertically | 89 | ** The new command balance-windows-area balances windows both vertically |
| 87 | and horizontally. | 90 | and horizontally. |
| 88 | 91 | ||
| @@ -118,8 +121,9 @@ following arguments. | |||
| 118 | +++ | 121 | +++ |
| 119 | ** M-q now fills the region if the region is active and | 122 | ** M-q now fills the region if the region is active and |
| 120 | `transient-mark-mode' is turned on. Otherwise, it fills the current | 123 | `transient-mark-mode' is turned on. Otherwise, it fills the current |
| 121 | paragraph. The new command bound to M-q is `fill-paragraph-or-region'. | 124 | paragraph. |
| 122 | 125 | ||
| 126 | +++ | ||
| 123 | ** M-$ now checks spelling of the region if the region is active and | 127 | ** M-$ now checks spelling of the region if the region is active and |
| 124 | `transient-mark-mode' is turned on. Otherwise, it checks spelling of the | 128 | `transient-mark-mode' is turned on. Otherwise, it checks spelling of the |
| 125 | word at point. | 129 | word at point. |
| @@ -132,6 +136,10 @@ word at point. | |||
| 132 | 136 | ||
| 133 | ** New command kill-matching-buffers kills buffers whose name matches a regexp. | 137 | ** New command kill-matching-buffers kills buffers whose name matches a regexp. |
| 134 | 138 | ||
| 139 | ** `interprogram-paste-function' can now return one string or a list | ||
| 140 | of strings. In the latter case, Emacs puts the second and following | ||
| 141 | strings on the kill ring. | ||
| 142 | |||
| 135 | ** Minibuffer changes: | 143 | ** Minibuffer changes: |
| 136 | 144 | ||
| 137 | *** isearch started in the minibuffer searches in the minibuffer history. | 145 | *** isearch started in the minibuffer searches in the minibuffer history. |
diff --git a/etc/NEWS.22 b/etc/NEWS.22 index 2b7c82dd7b6..867c58c47a4 100644 --- a/etc/NEWS.22 +++ b/etc/NEWS.22 | |||
| @@ -324,7 +324,7 @@ need to quote the space with a C-q. The underlying changes in the | |||
| 324 | keymaps that are active in the minibuffer are described below under | 324 | keymaps that are active in the minibuffer are described below under |
| 325 | "New keymaps for typing file names". | 325 | "New keymaps for typing file names". |
| 326 | 326 | ||
| 327 | If you want the old behavior back, put these two key bindings to your | 327 | If you want the old behavior back, add these two key bindings to your |
| 328 | ~/.emacs init file: | 328 | ~/.emacs init file: |
| 329 | 329 | ||
| 330 | (define-key minibuffer-local-filename-completion-map | 330 | (define-key minibuffer-local-filename-completion-map |
diff --git a/etc/PROBLEMS b/etc/PROBLEMS index 7ebf7ae8edd..d098fcc2c11 100644 --- a/etc/PROBLEMS +++ b/etc/PROBLEMS | |||
| @@ -2204,6 +2204,13 @@ month names with consistent widths for some locales on some versions | |||
| 2204 | of Windows. This is caused by a deficiency in the underlying system | 2204 | of Windows. This is caused by a deficiency in the underlying system |
| 2205 | library function. | 2205 | library function. |
| 2206 | 2206 | ||
| 2207 | The functions set-time-zone-rule, and display-time-world (which uses it) | ||
| 2208 | do not work on Windows. Fixing this is difficult, since Windows uses | ||
| 2209 | localtime for the system clock, and any attempt to change the timezone | ||
| 2210 | would have to be accompanied by a clock change for the results to remain | ||
| 2211 | consistent. The way in which these functions are used is not intended to | ||
| 2212 | cause such system-wide disruption. | ||
| 2213 | |||
| 2207 | Files larger than 4GB cause overflow in the size (represented as a | 2214 | Files larger than 4GB cause overflow in the size (represented as a |
| 2208 | 32-bit integer) reported by `file-attributes'. This affects Dired as | 2215 | 32-bit integer) reported by `file-attributes'. This affects Dired as |
| 2209 | well, since the Windows port uses a Lisp emulation of `ls' that relies | 2216 | well, since the Windows port uses a Lisp emulation of `ls' that relies |