From 19d20f5915bf56df05e9248f80910bfc87074874 Mon Sep 17 00:00:00 2001 From: Jeremy Douglass Date: Sun, 15 Oct 2017 09:35:15 -0700 Subject: [PATCH] Remove "Pipe Organ" from exec javadoc Recent OS X releases no longer come with the "Pipe Organ" voice installed by default. As a result, the exec example fails silently with no console feedback. Removing the -v voice argument causes the example to work on current OS X -- and still work on older OS X. --- core/src/processing/core/PApplet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/processing/core/PApplet.java b/core/src/processing/core/PApplet.java index c18379971..ee26993f0 100644 --- a/core/src/processing/core/PApplet.java +++ b/core/src/processing/core/PApplet.java @@ -3457,7 +3457,7 @@ public class PApplet implements PConstants { * method, which uses the operating system's launcher to open the files. * It's always a good idea to use a full path to the executable here. *
-   * exec("/usr/bin/say", "-v", "Pipe Organ", "welcome to the command line");
+   * exec("/usr/bin/say", "welcome to the command line");
    * 
* Or if you want to wait until it's completed, something like this: *