diff options
author | dcs <dcs@FreeBSD.org> | 1999-05-14 19:00:38 +0000 |
---|---|---|
committer | dcs <dcs@FreeBSD.org> | 1999-05-14 19:00:38 +0000 |
commit | f239b397637460556efd857959dba21786d3fd9c (patch) | |
tree | a1f6923caafb39e3497665e0c388e0601af8c6ac | |
parent | 0c3ef219629def6eec1b472b202878d46ca65ea2 (diff) | |
download | FreeBSD-src-f239b397637460556efd857959dba21786d3fd9c.zip FreeBSD-src-f239b397637460556efd857959dba21786d3fd9c.tar.gz |
Slight not-exactly-bug-but-useful-as-example-code fix.
-rw-r--r-- | share/examples/bootforth/loader.rc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/examples/bootforth/loader.rc b/share/examples/bootforth/loader.rc index b0fd9ca..ef0f960 100644 --- a/share/examples/bootforth/loader.rc +++ b/share/examples/bootforth/loader.rc @@ -1,6 +1,6 @@ \ Example of the file which is automatically loaded by /boot/loader \ on startup. -\ $Id: boot.4th,v 1.1 1998/12/22 12:15:45 abial Exp $ +\ $Id: loader.rc,v 1.1 1999/05/14 18:06:27 dcs Exp $ cr .( Loading Forth extensions:) @@ -26,7 +26,7 @@ s" /boot/menuconf.4th" fopen dup fload fclose \ Initialize loader.4th stuff cr cr .( Initializing loader.4th...) -initialize +initialize drop \ Show the menu cr |