Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Wynn
purr-data
Commits
0df03ec9
Commit
0df03ec9
authored
Nov 02, 2017
by
Jonathan Wilkes
Browse files
port from vanilla: fixed spelling mistakes
commit: 3f92d75115d8e8a2ab5a8234be0326b6391ac378
parent
ed623934
Changes
2
Hide whitespace changes
Inline
Side-by-side
pd/man/pdsend.1
View file @
0df03ec9
...
...
@@ -5,7 +5,7 @@ pdsend \- send messages to pd on this or a remote machine
.B pdsend
\fIport-number\fR [\fIhostname\fR] [udp|tcp]
.SH DESCRIPTION
Pdsend sends messages to pd(1), via a socket conection, from pdsend's
Pdsend sends messages to pd(1), via a socket con
n
ection, from pdsend's
standard input. This input can be any stream of Pd messages separated by
semicolons. This is probably the easiest way to control pd from another
application. The protocol used is easy to implement and is called FUDI.
...
...
pd/src/x_vexp_if.c
View file @
0df03ec9
...
...
@@ -1099,7 +1099,7 @@ ex_sum(t_expr *e, long int argc, struct ex_ex *argv, struct ex_ex *optr)
/*
* ex_Sum -- calculate the sum of table with the given boundries
* ex_Sum -- calculate the sum of table with the given bound
a
ries
*/
void
...
...
@@ -1132,7 +1132,7 @@ ex_Sum(t_expr *e, long int argc, struct ex_ex *argv, struct ex_ex *optr)
n1
=
argv
->
ex_flt
;
break
;
default:
post
(
"expr: Sum: boundries have to be fix values
\n
"
);
post
(
"expr: Sum: bound
a
ries have to be fix values
\n
"
);
optr
->
ex_type
=
ET_INT
;
optr
->
ex_int
=
0
;
return
;
...
...
@@ -1148,7 +1148,7 @@ ex_Sum(t_expr *e, long int argc, struct ex_ex *argv, struct ex_ex *optr)
n2
=
argv
->
ex_flt
;
break
;
default:
post
(
"expr: Sum: boundries have to be fix values
\n
"
);
post
(
"expr: Sum: bound
a
ries have to be fix values
\n
"
);
optr
->
ex_type
=
ET_INT
;
optr
->
ex_int
=
0
;
return
;
...
...
@@ -1201,7 +1201,7 @@ ex_avg(t_expr *e, long int argc, struct ex_ex *argv, struct ex_ex *optr)
/*
* ex_Avg -- calculate the avarage of table with the given boundries
* ex_Avg -- calculate the avarage of table with the given bound
a
ries
*/
void
...
...
@@ -1233,7 +1233,7 @@ ex_Avg(t_expr *e, long int argc, struct ex_ex *argv, struct ex_ex *optr)
if (argv->ex_type != ET_INT || argv[1].ex_type != ET_INT)
{
post("expr: Avg: boundries have to be fix values\n");
post("expr: Avg: bound
a
ries have to be fix values\n");
optr->ex_type = ET_INT;
optr->ex_int = 0;
return;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment