--- gforth/kernel/basics.fs 2006/12/31 13:39:18 1.57 +++ gforth/kernel/basics.fs 2007/02/23 22:33:21 1.58 @@ -304,9 +304,11 @@ is throw \ HEX DECIMAL 2may93jaw : decimal ( -- ) \ core - \G Set @code{base} to &10 (decimal). + \G Set @code{base} to &10 (decimal). Don't use @code{hex}, use + \G @code{base-execute} instead. a base ! ; : hex ( -- ) \ core-ext - \G Set @code{base} to &16 (hexadecimal). + \G Set @code{base} to &16 (hexadecimal). Don't use @code{hex}, + \G use @code{base-execute} instead. 10 base ! ;