changeset 77:c9a4850926d9

Remove a couple not helpful comments (because moving memory does not save it) and add a helpful one.
author Jordan Miner <jminer7@gmail.com>
date Sat, 06 Feb 2010 15:11:57 -0600
parents 76b081749316
children 651082a9b364
files dynamin/core/event.d dynamin/core/unix_console.d
diffstat 2 files changed, 1 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/dynamin/core/event.d	Thu Aug 13 22:14:04 2009 -0500
+++ b/dynamin/core/event.d	Sat Feb 06 15:11:57 2010 -0600
@@ -69,9 +69,6 @@
 	/// void delegate(ArgsType e)
 	public alias void delegate(ArgsType e) Dispatcher;
 
-	// TODO: could save memory by storing mainHandler in handlers?
-	//       putting 15 events (24 bytes each) in every control takes memory
-	// TODO: use a list-like struct?
 	Handler[] handlers;
 	///
 	Handler mainHandler;
--- a/dynamin/core/unix_console.d	Thu Aug 13 22:14:04 2009 -0500
+++ b/dynamin/core/unix_console.d	Sat Feb 06 15:11:57 2010 -0600
@@ -33,6 +33,7 @@
 Can get width of console with $COLUMNS
 Can get height of console with $LINES
 */
+// The control codes are defined in ECMA-48.
 template ConsoleBackend() {
 	static colorsUsed = false;
 	static ~this() {