Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit b8c6071

Browse files
committed
Merge remote-tracking branch 'upstream/develop-9.0' into merge-develop-9.0-31_01_2019
2 parents 4a8f21b + beee3ea commit b8c6071

23 files changed

+81
-53
lines changed

docs/dictionary/control_st/switch.lcdoc

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ at the end of each <statementList>. This ensures that only one
9595

9696
This also means that you can attach more than one <caseValue> or
9797
<caseCondition> to the same <statementList>, simply by placing one
98-
<case> line above the next. The following example beeps if the <current
99-
card> is either the last or first <card>, and goes to the next <card>
100-
otherwise:
98+
<case> line above the next. The following example beeps if the
99+
<current card> is either the last or first <card>, and goes to the
100+
next <card> otherwise:
101101

102102
switch (the number of this card)
103103
case 1
@@ -121,7 +121,8 @@ more slowly the <switch> <control structure|structure>
121121
> <command> and appears in the <commandNames>.
122122

123123
References: switch (control structure), if (control structure),
124-
break (control structure), value (function), commandNames (function),
124+
break (control structure), repeat (control structure),
125+
try (control structure), value (function), commandNames (function),
125126
current card (glossary), value (glossary), execute (glossary),
126127
statement (glossary), keyword (glossary), expression (glossary),
127128
control structure (glossary), evaluate (glossary), command (glossary),

docs/dictionary/control_st/throw.lcdoc

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ end if
2424
Parameters:
2525
errorString (string):
2626
The string that is returned to the calling try control structure. The
27-
errorString becomes the parameter of the catch lin in the try control
27+
errorString becomes the parameter of the catch line in the try control
2828
structure.
2929

3030
Description:
@@ -35,9 +35,10 @@ within a <try> <control structure>.
3535
inside a <handler>.
3636

3737
If LiveCode generates the error (for example, an execution error from a
38-
built-in command), it returns a positive number to the <try> <control
39-
structure>. To avoid confusion, therefore, a <throw> <control structure>
40-
should return a <negative> number, or a non-numeric <string>.
38+
built-in command), it returns a positive number to the <try>
39+
<control structure>. To avoid confusion, therefore, a <throw>
40+
<control structure> should return a <negative> number, or a
41+
non-numeric <string>.
4142

4243
If a <throw> <control structure> is <execute|executed> in a <handler>
4344
that was not <call|called> from within a <try> <control structure>, an

docs/dictionary/function/tan.lcdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ infinite (undefined). The <tan> <function> instead <return|returns> a
4040
very large number for such angles, due to internal number handling.
4141

4242
The <tan> <function> requires its input to be in <radian|radians>. To
43-
provide an angle in <degree|degrees>, use the following <custom
44-
function>:
43+
provide an angle in <degree|degrees>, use the following
44+
<custom function>:
4545

4646
function tanInDegrees angleInDegrees
4747
return tan(angleInDegrees * pi / 180)

docs/dictionary/keyword/system.lcdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ Use the <system> <keyword> to correctly format dates and times that will
2222
be viewed by the user (for example, dates and times that are displayed
2323
in a <field>).
2424

25-
The <system> <format> is set by the Date & Time control panel (on <Mac
26-
OS|Mac OS systems>), the Date control panel (on <Windows|Windows
25+
The <system> <format> is set by the Date & Time control panel (on
26+
<Mac OS|Mac OS systems>), the Date control panel (on <Windows|Windows
2727
systems>), or the LANG environment variable (on <Unix|Unix systems>).
2828

2929
You can use the <system> keyword in combination with the <long>,

docs/dictionary/keyword/templateButton.lcdoc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,8 @@ You can use the <set> <command> to set the <properties> of the
3535
<default>. This example creates a <radio button>:
3636

3737
on makeRadio
38-
set the style of the templateButton to "radioButton"
39-
create button "Red" -- "Red" is a radio button
40-
38+
set the style of the templateButton to "radioButton"
39+
create button "Red" -- "Red" is a radio button
4140
end makeRadio
4241

4342

docs/dictionary/keyword/templateVideoClip.lcdoc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,10 @@ the <properties> of the <templateVideoClip> does not affect existing
3535
The properties of the <templateVideoClip> can be returned to the default
3636
settings using the <reset> command.
3737

38-
You can refer to the <templateVideoClip> using any of the following
39-
forms: templateVideoClip
38+
You can refer to the <templateVideoClip> using any of the
39+
following forms:
4040

41+
templateVideoClip
4142
the templateVideoClip
4243
templateVideoClip()
4344

docs/dictionary/keyword/tenth.lcdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Example:
2020
multiply the tenth word of tCurrentAmounts by ten
2121

2222
Description:
23-
Use the <tenth> <keyword> in an <object reference> or <chunk
24-
expression>.
23+
Use the <tenth> <keyword> in an <object reference> or
24+
<chunk expression>.
2525

2626
The <tenth> <keyword> can be used to specify any <object(glossary)>
2727
whose <number> <property> is 10. It can also be used to designate the

docs/dictionary/keyword/the.lcdoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ The <the> <keyword> is mandatory before the names of built-in
3131
get the time -- must use "the" if () are not used
3232
get time() -- cannot use "the" if () are used
3333

34-
3534
The <the> <keyword> is optional before the names of <properties>, but it
3635
is good style to include it.
3736

docs/dictionary/keyword/third.lcdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Example:
2020
repeat until third line of tKeysPressed is "Control"
2121

2222
Description:
23-
Use the <third> <keyword> in an <object reference> or <chunk
24-
expression>.
23+
Use the <third> <keyword> in an <object reference> or
24+
<chunk expression>.
2525

2626
The <third> <keyword> can be used to specify any <object(glossary)>
2727
whose <number> <property> is 3. It can also be used to designate the

docs/dictionary/keyword/this.lcdoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Type: keyword
77
Syntax: this
88

99
Summary:
10-
Indicates the <current stack>, or the <current card> of the <current
11-
stack>.
10+
Indicates the <current stack>, or the <current card> of the
11+
<current stack>.
1212

1313
Introduced: 1.0
1414

@@ -27,8 +27,8 @@ Example:
2727
send preOpenStack to this stack
2828

2929
Description:
30-
Use the <this> <keyword> to indicate the <current card> or <current
31-
stack> in an <expression>.
30+
Use the <this> <keyword> to indicate the <current card> or
31+
<current stack> in an <expression>.
3232

3333
When used in a sort <command>, the <this> <keyword> indicates each
3434
<card(keyword)> to be sorted. You can use the <this> <keyword> to sort

0 commit comments

Comments
 (0)