Skip to content

Commit

Permalink
help: History: remove use of .speak (#2352)
Browse files Browse the repository at this point in the history
Speech is OSX only and possibly slated for removal
  • Loading branch information
Nathan Ho authored and crucialfelix committed Sep 23, 2016
1 parent cef8884 commit f5d8917
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions HelpSource/Classes/History.schelp
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ Document.open("~/Desktop/myTestStory.scd"); // the story file is human-readable.

// Various Internals
// make a new instance of History by hand:
h = History([[0, \me, "1+2"], [1.234, \me, "q = q ? ();"], [3, \me, "\"History\".speak"]]);
h = History([[0, \me, "1+2"], [1.234, \me, "q = q ? ();"], [3, \me, "\"History\".postln"]]);
h.lines.printcsAll; "";
h.lineShorts.printcsAll; "";

Expand Down Expand Up @@ -217,7 +217,7 @@ History.showLogFile; // current logfile...
// filtering lines, to get subsets of all lines by key and/or searchstring:

// get indices for specific keys
h = History([[0, \me, "a=1+2"], [1, \me, "3+5"], [1.234, \you, "q = q ? ();"], [3, \her, "\"Herstory ==== \".speak"]]);
h = History([[0, \me, "a=1+2"], [1, \me, "3+5"], [1.234, \you, "q = q ? ();"], [3, \her, "\"Herstory ==== \".postln"]]);
h.keys;
h.matchKeys(\me);
h.matchKeys(\you);
Expand Down

0 comments on commit f5d8917

Please sign in to comment.