From e823604bb2073670c084ad623368aacf63a9fdf4 Mon Sep 17 00:00:00 2001
From: Jonathan Wilkes <jon.w.wilkes@gmail.com>
Date: Sun, 27 Dec 2015 21:37:39 -0500
Subject: [PATCH] update todo

---
 pd/nw/todo.txt | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/pd/nw/todo.txt b/pd/nw/todo.txt
index d982483b2..d02b23da0 100644
--- a/pd/nw/todo.txt
+++ b/pd/nw/todo.txt
@@ -360,6 +360,20 @@ Everything else: (A [x] means we've fixed it)
 [ ] revisit cursor logic-- when you leave the boundaries of an object 
     being dragged, for example, the cursor changes to whatever is set for
     the parent (svg, document, etc.).
+[ ] currently you can't send a message to the GUI with a single
+    array parameter:
+    gui_start_vmess("some_message", "");
+    gui_start_array();
+    gui_s("hello world");
+    gui_end_array();
+    gui_end_vmess();
+
+    Will output:
+    "some_message ,[\"hello world\"]"
+    which will cause a parser error
+
+    Practically, this isn't a big deal since most messages to the GUI
+    require a leading parameter before the array is sent.
 
 Crashers
 --------
-- 
GitLab