From 13d5a6a333486c47e387d8fa98cec378f9d1fda7 Mon Sep 17 00:00:00 2001
From: Jonathan Wilkes <jon.w.wilkes@gmail.com>
Date: Mon, 25 Jan 2016 19:49:00 -0500
Subject: [PATCH] improve error message to reflect the current state of the GUI

---
 pd/src/s_print.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/pd/src/s_print.c b/pd/src/s_print.c
index 23abebb32..715df30c5 100644
--- a/pd/src/s_print.c
+++ b/pd/src/s_print.c
@@ -245,7 +245,9 @@ void pd_error(void *object, const char *fmt, ...)
     error_object = object;
     if (!saidit)
     {
-        post("... you might be able to track this down from the Find menu.");
+        /* move this to a function in the GUI so that we can change the
+           message without having to recompile */
+        post("... you might be able to track this down from the 'Find Last Error' item in the Edit menu, or by clicking the error link above.");
         saidit = 1;
     }
 }
-- 
GitLab