I did a cvs up to see if Bernd had patched `head?`, and noticed I had a
couple typo fixes in my source tree...
--Josh
Index: doc/gforth.ds
===================================================================
RCS file: /nfs/unsafe/cvs-repository/src-master/gforth/doc/gforth.ds,v
retrieving revision 1.232
diff -u -r1.232 gforth.ds
--- doc/gforth.ds 10 Aug 2011 13:55:03 -0000 1.232
+++ doc/gforth.ds 14 Nov 2011 22:19:55 -0000
@@ -14996,7 +14996,7 @@
@end itemize
-In order to perform these consideratios, you need to know what's
+In order to perform these considerations, you need to know what's
standard and what's not. This manual generally states if something is
non-standard, but the authoritative source is the
@uref{http://www.taygeta.com/forth/dpans.html,standard document}.
Index: float.fs
===================================================================
RCS file: /nfs/unsafe/cvs-repository/src-master/gforth/float.fs,v
retrieving revision 1.61
diff -u -r1.61 float.fs
--- float.fs 7 Oct 2011 17:10:15 -0000 1.61
+++ float.fs 14 Nov 2011 22:19:55 -0000
@@ -88,7 +88,7 @@
\G @code{F.} @code{FE.} and @code{FS.} to @i{u}.
to precision ;
-: scratch ( r -- addr len )
+: scratch ( -- addr len )
pad precision - precision ;
: zeros ( n -- ) 0 max 0 ?DO '0 emit LOOP ;