]> code.delx.au - gnu-emacs/blobdiff - etc/TODO
Merge from emacs-24; up to 2012-12-22T19:09:52Z!rgm@gnu.org
[gnu-emacs] / etc / TODO
index 59aa48ffd6d7327f8d0ac8b96003e206450ab9fe..faa9fc4c98d13fe3f379e8b657dbda01ad65eff0 100644 (file)
--- a/etc/TODO
+++ b/etc/TODO
@@ -616,13 +616,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.]