1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-05-03 17:49:39 +03:00

Fix for Jira bug I7-2311

This commit is contained in:
Graham Nelson 2024-04-03 12:32:58 +01:00
parent 223e13be6d
commit 6b118ad089
4 changed files with 9 additions and 9 deletions

View file

@ -69,7 +69,7 @@ rules about that are gathered into this structure:
<span class="plain-syntax"> </span><span class="reserved-syntax">struct</span><span class="plain-syntax"> </span><span class="identifier-syntax">wording</span><span class="plain-syntax"> </span><span class="identifier-syntax">present_name</span><span class="plain-syntax">; </span><span class="comment-syntax"> such as "dropping" or "removing it from"</span>
<span class="plain-syntax"> </span><span class="reserved-syntax">struct</span><span class="plain-syntax"> </span><span class="identifier-syntax">wording</span><span class="plain-syntax"> </span><span class="identifier-syntax">past_name</span><span class="plain-syntax">; </span><span class="comment-syntax"> such as "dropped" or "removed it from"</span>
<span class="plain-syntax"> </span><span class="reserved-syntax">int</span><span class="plain-syntax"> </span><span class="identifier-syntax">it_optional</span><span class="plain-syntax">; </span><span class="comment-syntax"> noun optional when describing the second noun?</span>
<span class="plain-syntax"> </span><span class="reserved-syntax">int</span><span class="plain-syntax"> </span><span class="identifier-syntax">abbreviable</span><span class="plain-syntax">; </span><span class="comment-syntax"> preposition optional when describing the second noun?</span>
<span class="plain-syntax"> </span><span class="reserved-syntax">int</span><span class="plain-syntax"> </span><span class="identifier-syntax">abbreviable</span><span class="plain-syntax">; </span><span class="comment-syntax"> preposition optional after the first noun, if there's no second?</span>
<span class="plain-syntax">} </span><span class="reserved-syntax">action_naming_data</span><span class="plain-syntax">;</span>
</pre>
<ul class="endnotetexts"><li>The structure action_naming_data is accessed in 4/anaa, 4/anl, 4/nap and here.</li></ul>

View file

@ -1,5 +1,5 @@
100.0% in inform7 run
68.2% in compilation to Inter
68.0% in compilation to Inter
46.5% in //Sequence::undertake_queued_tasks//
4.2% in //MajorNodes::pre_pass//
3.4% in //MajorNodes::pass_1//
@ -13,16 +13,16 @@
0.3% in //Sequence::undertake_queued_tasks//
0.3% in //Sequence::undertake_queued_tasks//
0.3% in //World::stage_V//
5.5% not specifically accounted for
27.5% in running Inter pipeline
8.9% in step 14/15: generate inform6 -> auto.inf
5.4% not specifically accounted for
27.6% in running Inter pipeline
9.2% in step 14/15: generate inform6 -> auto.inf
6.9% in step 5/15: load-binary-kits
5.8% in step 6/15: make-synoptic-module
5.7% in step 6/15: make-synoptic-module
1.9% in step 9/15: make-identifiers-unique
0.3% in step 12/15: eliminate-redundant-operations
0.3% in step 4/15: compile-splats
0.3% in step 7/15: shorten-wiring
0.3% in step 8/15: detect-indirect-calls
2.4% not specifically accounted for
2.3% not specifically accounted for
3.8% in supervisor
0.4% not specifically accounted for

View file

@ -11,7 +11,7 @@ typedef struct action_naming_data {
struct wording present_name; /* such as "dropping" or "removing it from" */
struct wording past_name; /* such as "dropped" or "removed it from" */
int it_optional; /* noun optional when describing the second noun? */
int abbreviable; /* preposition optional when describing the second noun? */
int abbreviable; /* preposition optional after the first noun, if there's no second? */
} action_naming_data;
@ Here, the default settings are made from |W|. The past tense form is made

View file

@ -167,7 +167,7 @@ and now poses a moral rather than gender-based question.
"Standard 'deciding whether all include' rules don't apply to an actor."
([PR#113](https://github.com/ganelson/inform/pull/113))
- Cosmetic fixes not worth linking to (I7-2480, I7-2473, I7-2350, I7-2319, I7-2316, I7-2315, I7-2293, I7-2270, I7-2268, I7-2221, I7-2214, I7-2210)
- Cosmetic fixes not worth linking to (I7-2480, I7-2473, I7-2350, I7-2319, I7-2316, I7-2315, I7-2311, I7-2299, I7-2293, I7-2270, I7-2268, I7-2221, I7-2214, I7-2210, I7-2120)
## Bugs fixed but not from tracked reports