Tiny change only

This commit is contained in:
Graham Nelson 2021-02-26 09:05:48 +00:00
parent cf069124de
commit 6360a9d97e
6 changed files with 9 additions and 9 deletions

View file

@ -1,6 +1,6 @@
# Inweb 7
v7-alpha.1+1A69 'Escape to Danger' (20 February 2021)
v7-alpha.1+1A70 'Escape to Danger' (26 February 2021)
## About Inweb

View file

@ -8422,11 +8422,11 @@ int CommandLine__read_pair_p(text_stream *opt, text_stream *opt_val, int N,
; innocuous = TRUE; break;
case VERSION_CLSW: {
PRINT("inweb");
char *svn = "7-alpha.1+1A68";
char *svn = "7-alpha.1+1A69";
if (svn[0]) PRINT(" version %s", svn);
char *vname = "Escape to Danger";
if (vname[0]) PRINT(" '%s'", vname);
char *d = "14 February 2021";
char *d = "20 February 2021";
if (d[0]) PRINT(" (%s)", d);
PRINT("\n");
innocuous = TRUE; break;

View file

@ -1,3 +1,3 @@
Prerelease: alpha.1
Build Date: 20 February 2021
Build Number: 1A69
Build Date: 26 February 2021
Build Number: 1A70

View file

@ -890,8 +890,8 @@ following:
<ul class="items"><li>(a) <span class="extract"><span class="extract-syntax">NULL</span></span>, to which we assign ID number \(-1\);
</li><li>(b) <span class="extract"><span class="extract-syntax">char</span></span>, to which we assign ID number 1000;
</li><li>(c) any individually allocated structure of the types listed above, to
which we assign the ID numbers used above: for instance, <span class="extract"><span class="extract-syntax">blorb_figure_CLASS</span></span>
is the ID number for a <span class="extract"><span class="extract-syntax">general_pointer</span></span> which points to a <span class="extract"><span class="extract-syntax">blorb_figure</span></span>
which we assign the ID numbers used above: for instance, <span class="extract"><span class="extract-syntax">figures_data_CLASS</span></span>
is the ID number for a <span class="extract"><span class="extract-syntax">general_pointer</span></span> which points to a <span class="extract"><span class="extract-syntax">figures_data</span></span>
structure.
</li></ul>
<pre class="definitions code-font"><span class="definition-keyword">define</span> <span class="constant-syntax">NULL_GENERAL_POINTER</span><span class="plain-syntax"> (</span><a href="2-mmr.html#SP32" class="function-link"><span class="function-syntax">Memory::store_gp_null</span></a><span class="plain-syntax">())</span>

Binary file not shown.

View file

@ -741,8 +741,8 @@ following:
(a) |NULL|, to which we assign ID number $-1$;
(b) |char|, to which we assign ID number 1000;
(c) any individually allocated structure of the types listed above, to
which we assign the ID numbers used above: for instance, |blorb_figure_CLASS|
is the ID number for a |general_pointer| which points to a |blorb_figure|
which we assign the ID numbers used above: for instance, |figures_data_CLASS|
is the ID number for a |general_pointer| which points to a |figures_data|
structure.
@d NULL_GENERAL_POINTER (Memory::store_gp_null())