]> code.delx.au - gnu-emacs/blobdiff - etc/TODO
Merge from emacs-24; up to 2012-12-20T05:05:41Z!dmantipov@yandex.ru
[gnu-emacs] / etc / TODO
index d584168b2631ab9868ac47e6358c71637a3b38a8..b28888b74847c4fcee1525a70f0ae5e1c2ea4f85 100644 (file)
--- a/etc/TODO
+++ b/etc/TODO
@@ -618,13 +618,11 @@ rather than interactively.  This a trivial one-liner in easy-mode.el.
 
 *** Bugs
 
-**** The event loop relies on polling and that hurts performance.
-     A better strategy is to have the select part in its own thread and let
-     the main thread communicate with that thread (see how Gdk does it for
-     inspiration).  A problem is that redraw don't happen during resize,
+**** The event loop does not redraw.
+     A problem is that redraw don't happen during resize,
      because we can't break out from the NSapp loop during resize.
-     There is a special trick to detect mouse press in the lower right
-     corner and track mouse movements, but this does not work well, and is
+     There was a special trick to detect mouse press in the lower right
+     corner and track mouse movements, but this did not work well, and was
      not scalable to the new Lion "resize on every window edge" behavior.
      [As of trunk r109635, 2012-08-15, the event loop no longer polls.]