Skip to content

Commit 3506845

Browse files
Fix requirement of the block editors: replace is with defer!, which is in the kernel.
FossilOrigin-Name: 8e79289664dbb707966c4557ede90f775f56c4c8e81fbd9393eb08c4b2443104
1 parent 84e81a4 commit 3506845

File tree

4 files changed

+18
-11
lines changed

4 files changed

+18
-11
lines changed

Diff for: VERSIONS.adoc

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
= Solo Forth version history
22
:author: Marcos Cruz (programandala.net)
3-
:revdate: 2021-01-16
3+
:revdate: 2021-01-19
44
:toc:
55

66
// This file is part of Solo Forth
@@ -24,6 +24,7 @@ To be released.
2424
=== Fixes
2525

2626
- Fix details of the documentation.
27+
- Fix requirement of the block editors.
2728

2829
// Improvements {{{2
2930
=== Improvements

Diff for: src/lib/prog.editor.gforth.fs

+7-4
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55

66
\ XXX UNDER DEVELOPMENT
77

8-
\ Last modified: 202007282031
9-
\ See change log at the end of the file
8+
\ Last modified: 202101191827.
9+
\ See change log at the end of the file.
1010

1111
\ ===========================================================
1212
\ Authors
1313

1414
\ Bernd Paysan, 1995.
1515
\
1616
\ Adapted to Solo Forth by Marcos Cruz (programandala.net),
17-
\ 2016, 2017, 2018.
17+
\ 2016, 2017, 2018, 2020, 2021.
1818

1919
\ ===========================================================
2020
\ Description
@@ -33,7 +33,7 @@ need inverse need list need update need r# need top
3333
need list-lines need vocabulary need catch need editor
3434
need insert need replace need delete need 2variable
3535

36-
vocabulary gforth-editor ' gforth-editor is editor
36+
vocabulary gforth-editor ' gforth-editor ' editor defer!
3737

3838
\ doc{
3939
\
@@ -615,5 +615,8 @@ forth definitions
615615
\ 2020-07-10: Improve layout of tables.
616616
\
617617
\ 2020-07-11: Modify markup of table title.
618+
\
619+
\ 2021-01-19: Fix requirement: replace `is` with `defer!`,
620+
\ which is in the kernel.
618621

619622
\ vim: filetype=soloforth

Diff for: src/lib/prog.editor.specforth.fs

+7-4
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
\ This file is part of Solo Forth
44
\ http://programandala.net/en.program.solo_forth.html
55

6-
\ Last modified: 202007282031
7-
\ See change log at the end of the file
6+
\ Last modified: 202101191826.
7+
\ See change log at the end of the file.
88

99
\ ===========================================================
1010
\ Description
@@ -28,7 +28,7 @@
2828
\ Written by Chris A. Thornton, 1983.
2929

3030
\ Adapted to Solo Forth by Marcos Cruz (programandala.net),
31-
\ 2015, 2016, 2017, 2018, 2020.
31+
\ 2015, 2016, 2017, 2018, 2020, 2021.
3232

3333
\ ===========================================================
3434
\ License
@@ -44,7 +44,7 @@ only forth definitions
4444
need list need update need flush need parse-all need vocabulary
4545
need +loop need editor need r# need top
4646

47-
vocabulary specforth-editor ' specforth-editor is editor
47+
vocabulary specforth-editor ' specforth-editor ' editor defer!
4848

4949
\ doc{
5050
\
@@ -857,3 +857,6 @@ only forth definitions
857857
\ 2020-07-10: Improve layout of tables.
858858
\
859859
\ 2020-07-11: Modify markup of table title.
860+
\
861+
\ 2021-01-19: Fix requirement: replace `is` with `defer!`, which is
862+
\ in the kernel.

Diff for: src/version.z80s

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ version_patch: equ 0
1212
version_prerelease_id: equ 'r'
1313
; 'd' for "dev", 'p' for "pre", 'r' for "rc", zero if none
1414

15-
version_prerelease: equ 137
15+
version_prerelease: equ 138
1616

1717
version_build_high_part: equ $0134
18-
version_build_low_part: equ $61BB ; build 20210107
18+
version_build_low_part: equ $61C7 ; build 20210119

0 commit comments

Comments
 (0)