Remove $FreeBSD$: one-line forth tag

Remove /^\\[\s*]*\$FreeBSD\$.*$\n/
This commit is contained in:
Warner Losh
2023-08-16 11:55:43 -06:00
parent 401ab69cff
commit 26a58599a0
43 changed files with 0 additions and 43 deletions
-1
View File
@@ -1,6 +1,5 @@
\ Example of the file which is automatically loaded by /boot/loader \ Example of the file which is automatically loaded by /boot/loader
\ on startup. \ on startup.
\ $FreeBSD$
\ Load the screen manipulation words \ Load the screen manipulation words
-1
View File
@@ -1,6 +1,5 @@
\ Words implementing frame drawing \ Words implementing frame drawing
\ XXX Filled boxes are left as an exercise for the reader... ;-/ \ XXX Filled boxes are left as an exercise for the reader... ;-/
\ $FreeBSD$
marker task-frames.4th marker task-frames.4th
-1
View File
@@ -1,6 +1,5 @@
\ Example of the file which is automatically loaded by /boot/loader \ Example of the file which is automatically loaded by /boot/loader
\ on startup. \ on startup.
\ $FreeBSD$
cr .( Loading Forth extensions:) cr .( Loading Forth extensions:)
-1
View File
@@ -1,7 +1,6 @@
\ Simple greeting screen, presenting basic options. \ Simple greeting screen, presenting basic options.
\ XXX This is far too trivial - I don't have time now to think \ XXX This is far too trivial - I don't have time now to think
\ XXX about something more fancy... :-/ \ XXX about something more fancy... :-/
\ $FreeBSD$
: title : title
f_single f_single
-1
View File
@@ -1,7 +1,6 @@
\ Simple greeting screen, presenting basic options. \ Simple greeting screen, presenting basic options.
\ XXX This is far too trivial - I don't have time now to think \ XXX This is far too trivial - I don't have time now to think
\ XXX about something more fancy... :-/ \ XXX about something more fancy... :-/
\ $FreeBSD$
: title : title
f_single f_single
-1
View File
@@ -1,5 +1,4 @@
\ Screen manipulation related words. \ Screen manipulation related words.
\ $FreeBSD$
marker task-screen.4th marker task-screen.4th
-1
View File
@@ -4,7 +4,6 @@
\ john sadler 1 sep 98 \ john sadler 1 sep 98
\ Needs oop.fr \ Needs oop.fr
\ \
\ $FreeBSD$
also oop definitions also oop definitions
-1
View File
@@ -7,7 +7,6 @@
\ ** C - W O R D \ ** C - W O R D
\ Models a FICL_WORD \ Models a FICL_WORD
\ \
\ $FreeBSD$
object subclass c-word object subclass c-word
c-word ref: .link c-word ref: .link
-1
View File
@@ -7,7 +7,6 @@
\ locstate: 0 = looking for -- or }} \ locstate: 0 = looking for -- or }}
\ 1 = found -- \ 1 = found --
\ \
\ $FreeBSD$
hide hide
0 constant zero 0 constant zero
-1
View File
@@ -4,7 +4,6 @@
\ ** submitted by Larry Hastings, larry@hastings.org \ ** submitted by Larry Hastings, larry@hastings.org
\ ** \ **
\ \
\ $FreeBSD$
: r/o 1 ; : r/o 1 ;
: r/w 3 ; : r/w 3 ;
-1
View File
@@ -1,7 +1,6 @@
\ examples from FORML conference paper Nov 98 \ examples from FORML conference paper Nov 98
\ sadler \ sadler
\ \
\ $FreeBSD$
.( loading FORML examples ) cr .( loading FORML examples ) cr
object --> sub c-example object --> sub c-example
-1
View File
@@ -22,7 +22,6 @@
\ ** OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ ** OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\ ** SUCH DAMAGE. \ ** SUCH DAMAGE.
\ ** \ **
\ ** $FreeBSD$
\ Words for use in scripts: \ Words for use in scripts:
\ % ignore errors here \ % ignore errors here
-1
View File
@@ -2,7 +2,6 @@
\ ** ANS conditional compile directives [if] [else] [then] \ ** ANS conditional compile directives [if] [else] [then]
\ ** Requires ficl 2.0 or greater... \ ** Requires ficl 2.0 or greater...
\ \
\ $FreeBSD$
hide hide
-1
View File
@@ -14,7 +14,6 @@
\ \
\ revised 2 June 2000 - { | a -- } now works correctly \ revised 2 June 2000 - { | a -- } now works correctly
\ \
\ $FreeBSD$
hide hide
-1
View File
@@ -3,7 +3,6 @@
\ John Sadler, 4 Oct 98 \ John Sadler, 4 Oct 98
\ Requires ficl 2.02 FORGET-WID !! \ Requires ficl 2.02 FORGET-WID !!
\ \
\ $FreeBSD$
: marker ( "name" -- ) : marker ( "name" -- )
create create
-1
View File
@@ -3,7 +3,6 @@
\ ** F I C L O - O E X T E N S I O N S \ ** F I C L O - O E X T E N S I O N S
\ ** john sadler aug 1998 \ ** john sadler aug 1998
\ \
\ $FreeBSD$
17 ficl-vocabulary oop 17 ficl-vocabulary oop
also oop definitions also oop definitions
-1
View File
@@ -5,7 +5,6 @@
\ (jws) To make a prefix, simply create a new definition in the <prefixes> \ (jws) To make a prefix, simply create a new definition in the <prefixes>
\ wordlist. start-prefixes and end-prefixes handle the bookkeeping \ wordlist. start-prefixes and end-prefixes handle the bookkeeping
\ \
\ $FreeBSD$
variable save-current variable save-current
-1
View File
@@ -3,7 +3,6 @@
\ ** John Sadler (john_sadler@alum.mit.edu) \ ** John Sadler (john_sadler@alum.mit.edu)
\ ** September, 1998 \ ** September, 1998
\ \
\ $FreeBSD$
\ ** Ficl USER variables \ ** Ficl USER variables
\ ** See words.c for primitive def'n of USER \ ** See words.c for primitive def'n of USER
-1
View File
@@ -11,7 +11,6 @@
\ s" woof woof woof " str --> cat \ s" woof woof woof " str --> cat
\ str --> type cr \ str --> type cr
\ \
\ $FreeBSD$
also oop definitions also oop definitions
-1
View File
@@ -24,7 +24,6 @@
\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\ SUCH DAMAGE. \ SUCH DAMAGE.
\ \
\ $FreeBSD$
marker task-beastie.4th marker task-beastie.4th
-1
View File
@@ -22,7 +22,6 @@
\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\ SUCH DAMAGE. \ SUCH DAMAGE.
\ \
\ $FreeBSD$
2 brandX ! 1 brandY ! \ Initialize brand placement defaults 2 brandX ! 1 brandY ! \ Initialize brand placement defaults
-1
View File
@@ -22,7 +22,6 @@
\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\ SUCH DAMAGE. \ SUCH DAMAGE.
\ \
\ $FreeBSD$
marker task-brand.4th marker task-brand.4th
-1
View File
@@ -22,7 +22,6 @@
\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\ SUCH DAMAGE. \ SUCH DAMAGE.
\ \
\ $FreeBSD$
marker task-check-password.4th marker task-check-password.4th
-1
View File
@@ -22,7 +22,6 @@
\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\ SUCH DAMAGE. \ SUCH DAMAGE.
\ \
\ $FreeBSD$
marker task-color.4th marker task-color.4th
-1
View File
@@ -22,7 +22,6 @@
\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\ SUCH DAMAGE. \ SUCH DAMAGE.
\ \
\ $FreeBSD$
marker task-delay.4th marker task-delay.4th
-1
View File
@@ -22,7 +22,6 @@
\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\ SUCH DAMAGE. \ SUCH DAMAGE.
\ \
\ $FreeBSD$
only forth definitions only forth definitions
-1
View File
@@ -23,7 +23,6 @@
\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\ SUCH DAMAGE. \ SUCH DAMAGE.
\ \
\ $FreeBSD$
marker task-frames.4th marker task-frames.4th
-1
View File
@@ -23,7 +23,6 @@
\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\ SUCH DAMAGE. \ SUCH DAMAGE.
\ \
\ $FreeBSD$
only forth definitions only forth definitions
-1
View File
@@ -1,5 +1,4 @@
\ Loader.rc \ Loader.rc
\ $FreeBSD$
\ \
\ You should not edit this file! Put any overrides in loader.rc.local \ You should not edit this file! Put any overrides in loader.rc.local
\ instead as this file can be replaced during system updates. \ instead as this file can be replaced during system updates.
-1
View File
@@ -24,7 +24,6 @@
\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\ SUCH DAMAGE. \ SUCH DAMAGE.
\ \
\ $FreeBSD$
46 logoX ! 4 logoY ! \ Initialize logo placement defaults 46 logoX ! 4 logoY ! \ Initialize logo placement defaults
-1
View File
@@ -23,7 +23,6 @@
\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\ SUCH DAMAGE. \ SUCH DAMAGE.
\ \
\ $FreeBSD$
46 logoX ! 4 logoY ! \ Initialize logo placement defaults 46 logoX ! 4 logoY ! \ Initialize logo placement defaults
-1
View File
@@ -23,7 +23,6 @@
\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\ SUCH DAMAGE. \ SUCH DAMAGE.
\ \
\ $FreeBSD$
52 logoX ! 9 logoY ! \ Initialize logo placement defaults 52 logoX ! 9 logoY ! \ Initialize logo placement defaults
-1
View File
@@ -22,7 +22,6 @@
\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\ SUCH DAMAGE. \ SUCH DAMAGE.
\ \
\ $FreeBSD$
46 logoX ! 7 logoY ! \ Initialize logo placement defaults 46 logoX ! 7 logoY ! \ Initialize logo placement defaults
-1
View File
@@ -22,7 +22,6 @@
\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\ SUCH DAMAGE. \ SUCH DAMAGE.
\ \
\ $FreeBSD$
46 logoX ! 7 logoY ! \ Initialize logo placement defaults 46 logoX ! 7 logoY ! \ Initialize logo placement defaults
-1
View File
@@ -22,7 +22,6 @@
\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\ SUCH DAMAGE. \ SUCH DAMAGE.
\ \
\ $FreeBSD$
marker task-menu-commands.4th marker task-menu-commands.4th
-1
View File
@@ -24,7 +24,6 @@
\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\ SUCH DAMAGE. \ SUCH DAMAGE.
\ \
\ $FreeBSD$
marker task-menu.4th marker task-menu.4th
-1
View File
@@ -1,5 +1,4 @@
\ Menu.rc \ Menu.rc
\ $FreeBSD$
\ \
\ You should not edit this file! Put any overrides in menu.rc.local \ You should not edit this file! Put any overrides in menu.rc.local
\ instead as this file can be replaced during system updates. \ instead as this file can be replaced during system updates.
-1
View File
@@ -22,7 +22,6 @@
\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\ SUCH DAMAGE. \ SUCH DAMAGE.
\ \
\ $FreeBSD$
marker task-menusets.4th marker task-menusets.4th
-1
View File
@@ -23,7 +23,6 @@
\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\ SUCH DAMAGE. \ SUCH DAMAGE.
\ \
\ $FreeBSD$
marker task-screen.4th marker task-screen.4th
-1
View File
@@ -22,7 +22,6 @@
\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\ SUCH DAMAGE. \ SUCH DAMAGE.
\ \
\ $FreeBSD$
\ FICL words intended to be used as shortcuts for carrying out common tasks or \ FICL words intended to be used as shortcuts for carrying out common tasks or
\ producing common results. Generally, words defined here are simply groupings \ producing common results. Generally, words defined here are simply groupings
-1
View File
@@ -22,7 +22,6 @@
\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\ SUCH DAMAGE. \ SUCH DAMAGE.
\ \
\ $FreeBSD$
\ Loader.rc support functions: \ Loader.rc support functions:
\ \
-1
View File
@@ -22,7 +22,6 @@
\ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
\ SUCH DAMAGE. \ SUCH DAMAGE.
\ \
\ $FreeBSD$
marker task-version.4th marker task-version.4th
-1
View File
@@ -1,5 +1,4 @@
\ Loader.rc \ Loader.rc
\ $FreeBSD$
\ \
\ Includes additional commands \ Includes additional commands
include /boot/loader.4th include /boot/loader.4th