diff options
| author | Glenn Morris | 2013-02-09 17:56:25 -0800 |
|---|---|---|
| committer | Glenn Morris | 2013-02-09 17:56:25 -0800 |
| commit | 490a9458c8310140a255b30330e9940fb68e27ef (patch) | |
| tree | 3788432fb3f95464bb087bebd43ed9d3aff32c6a /etc | |
| parent | 9cbab8d6abe6aa4caae260c8ed37386103a34f8e (diff) | |
| parent | c4af1efc91cb57cc7dbaa1ee21b2d4b85fd3f87b (diff) | |
| download | emacs-490a9458c8310140a255b30330e9940fb68e27ef.tar.gz emacs-490a9458c8310140a255b30330e9940fb68e27ef.zip | |
Merge from emacs-24; up to 2012-12-15T12:19:04Z!juri@jurta.org
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/NEWS | 12 | ||||
| -rw-r--r-- | etc/TODO | 20 |
2 files changed, 13 insertions, 19 deletions
| @@ -436,6 +436,11 @@ The PCL-CVS commands are still available via the keyboard. | |||
| 436 | ** Using "unibyte: t" in Lisp source files is obsolete. | 436 | ** Using "unibyte: t" in Lisp source files is obsolete. |
| 437 | Use "coding: raw-text" instead. | 437 | Use "coding: raw-text" instead. |
| 438 | 438 | ||
| 439 | ** In the buffer made by `M-x report-emacs-bug', the `C-c m' binding | ||
| 440 | has been changed to `C-c M-i' (`report-emacs-bug-insert-to-mailer'). | ||
| 441 | The previous binding, introduced in Emacs 24.1, was a mistake, because | ||
| 442 | `C-c LETTER' bindings are reserved for user customizations. | ||
| 443 | |||
| 439 | ** Internationalization | 444 | ** Internationalization |
| 440 | 445 | ||
| 441 | *** New language environment: Persian. | 446 | *** New language environment: Persian. |
| @@ -1262,9 +1267,10 @@ to use the old defaults relying on external mail facilities | |||
| 1262 | (`sendmail-send-it' on GNU/Linux and other Unix-like systems, and | 1267 | (`sendmail-send-it' on GNU/Linux and other Unix-like systems, and |
| 1263 | `mailclient-send-it' on Windows). | 1268 | `mailclient-send-it' on Windows). |
| 1264 | 1269 | ||
| 1265 | *** Typing C-c m in the buffer made by M-x report-emacs-bug transfers | 1270 | *** Typing `C-c m' in the buffer made by `M-x report-emacs-bug' |
| 1266 | the report to your desktop's preferred mail client, if there is one. | 1271 | transfers the report to your desktop's preferred mail client, if there |
| 1267 | This uses either the "xdg-email" utility, or Mac OS's "open" command. | 1272 | is one. This uses either the "xdg-email" utility, or Mac OS's "open" |
| 1273 | command. | ||
| 1268 | 1274 | ||
| 1269 | *** See Changes in Specialized Modes and Packages for SMTPmail changes | 1275 | *** See Changes in Specialized Modes and Packages for SMTPmail changes |
| 1270 | and Mail mode changes | 1276 | and Mail mode changes |
| @@ -399,14 +399,6 @@ rather than interactively. This a trivial one-liner in easy-mode.el. | |||
| 399 | Check the assignments file for other packages which might go in and | 399 | Check the assignments file for other packages which might go in and |
| 400 | have been missed. | 400 | have been missed. |
| 401 | 401 | ||
| 402 | ** Possibly install python-mode in place of python.el, or combine the two. | ||
| 403 | Someone needs to do the work of figuring out who all the non-trivial | ||
| 404 | python-mode.el contributors are and getting assignments. | ||
| 405 | http://lists.gnu.org/archive/html/emacs-devel/2008-02/msg02156.html | ||
| 406 | http://lists.gnu.org/archive/html/emacs-devel/2008-02/msg02201.html | ||
| 407 | http://lists.gnu.org/archive/html/emacs-devel/2008-02/msg02489.html | ||
| 408 | http://lists.gnu.org/archive/html/emacs-devel/2008-02/msg02234.html | ||
| 409 | |||
| 410 | ** Make keymaps a first-class Lisp object (this means a rewrite of | 402 | ** Make keymaps a first-class Lisp object (this means a rewrite of |
| 411 | keymap.c). What should it do apart from being opaque ? | 403 | keymap.c). What should it do apart from being opaque ? |
| 412 | multiple inheritance ? faster where-is ? no more fix_submap_inheritance ? | 404 | multiple inheritance ? faster where-is ? no more fix_submap_inheritance ? |
| @@ -416,7 +408,7 @@ http://lists.gnu.org/archive/html/emacs-devel/2008-02/msg02234.html | |||
| 416 | an example how to do part of this; see the XMenu* functions on msdos.c. | 408 | an example how to do part of this; see the XMenu* functions on msdos.c. |
| 417 | 409 | ||
| 418 | ** Implement popular parts of the rest of the CL functions as compiler | 410 | ** Implement popular parts of the rest of the CL functions as compiler |
| 419 | macros in cl-macs. | 411 | macros in cl-macs. [Is this still relevant now that cl-lib exists?] |
| 420 | 412 | ||
| 421 | ** Make compiler warnings about functions that might be undefined at run time | 413 | ** Make compiler warnings about functions that might be undefined at run time |
| 422 | smarter, so that they know which files are required by the file being | 414 | smarter, so that they know which files are required by the file being |
| @@ -457,7 +449,8 @@ http://lists.gnu.org/archive/html/emacs-devel/2008-02/msg02234.html | |||
| 457 | 449 | ||
| 458 | ** Allow unknown image types to be rendered via an external program | 450 | ** Allow unknown image types to be rendered via an external program |
| 459 | converting them to, say, PBM (in the same way as PostScript?). [does | 451 | converting them to, say, PBM (in the same way as PostScript?). [does |
| 460 | doc-view.el do this, or could it be extended to do this?] | 452 | doc-view.el do this, or could it be extended to do this? |
| 453 | Does ImageMagick obsolete this idea?] | ||
| 461 | 454 | ||
| 462 | ** Allow displaying an X window from an external program in a buffer, | 455 | ** Allow displaying an X window from an external program in a buffer, |
| 463 | e.g. to render graphics from Java applets. [gerd and/or wmperry | 456 | e.g. to render graphics from Java applets. [gerd and/or wmperry |
| @@ -613,6 +606,7 @@ http://lists.gnu.org/archive/html/emacs-devel/2008-02/msg02234.html | |||
| 613 | There was a special trick to detect mouse press in the lower right | 606 | There was a special trick to detect mouse press in the lower right |
| 614 | corner and track mouse movements, but this did not work well, and was | 607 | corner and track mouse movements, but this did not work well, and was |
| 615 | not scalable to the new Lion "resize on every window edge" behavior. | 608 | not scalable to the new Lion "resize on every window edge" behavior. |
| 609 | [As of trunk r109635, 2012-08-15, the event loop no longer polls.] | ||
| 616 | 610 | ||
| 617 | **** (mouse-avoidance-mode 'banish) then minimize Emacs, will pop window back | 611 | **** (mouse-avoidance-mode 'banish) then minimize Emacs, will pop window back |
| 618 | up on top of all others | 612 | up on top of all others |
| @@ -719,12 +713,6 @@ images with lower bit depth. | |||
| 719 | *** Decide what to do with some uncommitted imagemagick support | 713 | *** Decide what to do with some uncommitted imagemagick support |
| 720 | functions for image size etc. | 714 | functions for image size etc. |
| 721 | 715 | ||
| 722 | *** Test with more systems. | ||
| 723 | Tested on Fedora 12, 14, and the libmagick that ships with it. | ||
| 724 | I also tried using an ImageMagick compiled from their SVN, in | ||
| 725 | parallel with the one packaged by Fedora, it worked well. | ||
| 726 | Ubuntu 8.04 was tested, but it seems it ships a broken ImageMagick. | ||
| 727 | |||
| 728 | ** nxml mode | 716 | ** nxml mode |
| 729 | 717 | ||
| 730 | *** High priority | 718 | *** High priority |