#FEATURE by exept
authorClaus Gittinger <cg@exept.de>
Wed, 26 Feb 2020 16:32:33 +0100
changeset 25306 32dbdc085fd0
parent 25305 4f2e03fce6a7
child 25307 c61bbab528d3
#FEATURE by exept class: UnixOperatingSystem class comment/format in: #voiceCommandSpec
UnixOperatingSystem.st
--- a/UnixOperatingSystem.st	Wed Feb 26 16:32:22 2020 +0100
+++ b/UnixOperatingSystem.st	Wed Feb 26 16:32:33 2020 +0100
@@ -9894,33 +9894,33 @@
 
 voiceCommandSpec
     ^ #(
-	"/ triples are:
-	"/      -command
-	"/      -commandline for default voice
-	"/      -commandline for specific voice
-
-	"/ cg: I dont know how to specify the voice in those;
-	"/ please fix the commandLines for specific voice
-	(
-	    'espeak'
-		'espeak "%2"'
-		'espeak -v "%1" "%2"'
-	)
-	(
-	    'say'
-		'| say'
-		'| say'      "/ 'say -v "%1" "%2"' ???
-	)
-	(
-	    'festival'
-		'| festival --tts'
-		'| festival --tts'
-	)
-	(
-	    'spd-say'
-		'spd-say "%2" '
-		'spd-say "%2"'
-	)
+        "/ triples are:
+        "/      -command
+        "/      -commandline for default voice
+        "/      -commandline for specific voice
+
+        "/ cg: I don't know how to specify the voice in those;
+        "/ please fix the commandLines for specific voice
+        (
+            'espeak'
+                'espeak "%2"'
+                'espeak -v "%1" "%2"'
+        )
+        (
+            'say'
+                '| say'
+                '| say'      "/ 'say -v "%1" "%2"' ???
+        )
+        (
+            'festival'
+                '| festival --tts'
+                '| festival --tts'
+        )
+        (
+            'spd-say'
+                'spd-say "%2" '
+                'spd-say "%2"'
+        )
     )
 
     "Modified: / 12-12-2019 / 18:27:27 / Stefan Vogel"