diff options
| author | Kenichi Handa | 2010-05-25 09:35:50 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2010-05-25 09:35:50 +0900 |
| commit | 8a2b8c4f7c2a18254fc0b34f236d7487fc7917d4 (patch) | |
| tree | 48e379874bd0bf796a12a5f43b369e0d6691a125 /etc | |
| parent | 10f72a3793087770f131a0dc729f29ff50f08ad9 (diff) | |
| parent | 7eca871a82d582b986c638343f74d16b819a0f14 (diff) | |
| download | emacs-8a2b8c4f7c2a18254fc0b34f236d7487fc7917d4.tar.gz emacs-8a2b8c4f7c2a18254fc0b34f236d7487fc7917d4.zip | |
merge trunk
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/NEWS | 9 | ||||
| -rw-r--r-- | etc/TODO | 15 |
2 files changed, 20 insertions, 4 deletions
| @@ -147,6 +147,11 @@ Use the arrow to the left of the option name to toggle visibility. | |||
| 147 | *** The color widget now has a "Choose" button, which allows you to | 147 | *** The color widget now has a "Choose" button, which allows you to |
| 148 | choose a color via list-colors-display. | 148 | choose a color via list-colors-display. |
| 149 | 149 | ||
| 150 | ** Dired-x | ||
| 151 | |||
| 152 | *** dired-jump and dired-jump-other-window called with a prefix argument | ||
| 153 | read a file name from the minibuffer instead of using buffer-file-name. | ||
| 154 | |||
| 150 | ** VC and related modes | 155 | ** VC and related modes |
| 151 | 156 | ||
| 152 | *** New VC commands: vc-log-incoming, vc-log-outgoing, vc-find-conflicted-file. | 157 | *** New VC commands: vc-log-incoming, vc-log-outgoing, vc-find-conflicted-file. |
| @@ -250,6 +255,10 @@ by the Graphic Control Extension of the image. | |||
| 250 | 255 | ||
| 251 | *** `image-extension-data' is renamed to `image-metadata'. | 256 | *** `image-extension-data' is renamed to `image-metadata'. |
| 252 | 257 | ||
| 258 | ** Isearch | ||
| 259 | |||
| 260 | *** New hook `isearch-update-post-hook' that runs in `isearch-update'. | ||
| 261 | |||
| 253 | ** Progress reporters can now "spin". | 262 | ** Progress reporters can now "spin". |
| 254 | The MIN-VALUE and MAX-VALUE arguments of `make-progress-reporter' can | 263 | The MIN-VALUE and MAX-VALUE arguments of `make-progress-reporter' can |
| 255 | now be nil, or omitted. This makes a "non-numeric" reporter. Each | 264 | now be nil, or omitted. This makes a "non-numeric" reporter. Each |
| @@ -40,9 +40,9 @@ make it. | |||
| 40 | fix_submap_inheritance hack and to more cleanly express the | 40 | fix_submap_inheritance hack and to more cleanly express the |
| 41 | relationship between minibuffer-local-*-map): I've had this locally | 41 | relationship between minibuffer-local-*-map): I've had this locally |
| 42 | for a long time, but the details of the semantics is somewhat ... delicate. | 42 | for a long time, but the details of the semantics is somewhat ... delicate. |
| 43 | *** prog-mode (a parent-mode, like text-mode). Could/should provide | 43 | *** Derive from prog-mode in more places, close bug#5532. |
| 44 | a better fill-paragraph default that uses syntax-tables to recognize | 44 | *** prog-mode could/should provide a better fill-paragraph default |
| 45 | string/comment boundaries. | 45 | that uses syntax-tables to recognize string/comment boundaries. |
| 46 | *** provide more completion-at-point-functions. Make existing | 46 | *** provide more completion-at-point-functions. Make existing |
| 47 | in-buffer completion use completion-at-point. | 47 | in-buffer completion use completion-at-point. |
| 48 | *** "functional" function-key-map that would make it easy to add (and | 48 | *** "functional" function-key-map that would make it easy to add (and |
| @@ -181,7 +181,14 @@ dired buffers and DTRT WRT `auto-revert-mode'. | |||
| 181 | http://lists.gnu.org/archive/html/emacs-devel/2008-08/msg00456.html | 181 | http://lists.gnu.org/archive/html/emacs-devel/2008-08/msg00456.html |
| 182 | 182 | ||
| 183 | * Important features: | 183 | * Important features: |
| 184 | 184 | ** Extended text-properties (to make overlays "obsolete") | |
| 185 | *** Several text-property planes | ||
| 186 | This would get us rid of font-lock-face property (and I'd be happy to | ||
| 187 | get rid of char-property-alias-alist as well) since font-lock would | ||
| 188 | simply use the `face' property in the `font-lock' plane. | ||
| 189 | Each property would come with an Elisp merge-function. The merge | ||
| 190 | would be performed in add-text-properties. | ||
| 191 | *** zero-width text-properties. | ||
| 185 | ** Having tabs above a window to switch buffers in it. | 192 | ** Having tabs above a window to switch buffers in it. |
| 186 | 193 | ||
| 187 | ** "Perspectives" are named persistent window configurations. We have | 194 | ** "Perspectives" are named persistent window configurations. We have |