diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/f/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/f/intdoc.in | 7 |
2 files changed, 7 insertions, 4 deletions
diff --git a/gcc/f/ChangeLog b/gcc/f/ChangeLog index 63327bd..f4c988f 100644 --- a/gcc/f/ChangeLog +++ b/gcc/f/ChangeLog @@ -1,5 +1,9 @@ 1999-02-14 Craig Burley <craig@jcb-sc.com> + * intdoc.in (LOG10): Fix description. + +1999-02-14 Craig Burley <craig@jcb-sc.com> + * news.texi: Mention fix for SIGNAL invocation circa egcs-1.1. 1999-02-14 Craig Burley <craig@jcb-sc.com> diff --git a/gcc/f/intdoc.in b/gcc/f/intdoc.in index 6b9dd3b..9005f0b 100644 --- a/gcc/f/intdoc.in +++ b/gcc/f/intdoc.in @@ -296,10 +296,9 @@ DEFDOC (DLOG, "Natural logarithm (archaic).", ARCHAIC (LOG, Log)) DEFDOC (CDLOG, "Natural logarithm (archaic).", ARCHAIC (LOG, Log)) -DEFDOC (LOG10, "Natural logarithm.", "\ -Returns the natural logarithm of @var{@1@}, which must -be greater than zero or, if type @code{COMPLEX}, must not -be zero. +DEFDOC (LOG10, "Base-10 logarithm.", "\ +Returns the base-10 logarithm of @var{@1@}, which must +be greater than zero. The inverse of this function is @samp{10. ** LOG10(@var{@1@})}. |