aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorFrancois-Xavier Coudert <fxcoudert@gcc.gnu.org>2011-02-26 16:34:47 +0000
committerFrançois-Xavier Coudert <fxcoudert@gcc.gnu.org>2011-02-26 16:34:47 +0000
commit1eabb08e539b7503f82f5b341d97e931f05e8d0a (patch)
treec76722e88ec342f93c9ef729e44006eb25bc9e89 /gcc
parentfe230fccd4ba1cea6c1962a5a533804e05b2ab04 (diff)
downloadgcc-1eabb08e539b7503f82f5b341d97e931f05e8d0a.zip
gcc-1eabb08e539b7503f82f5b341d97e931f05e8d0a.tar.gz
gcc-1eabb08e539b7503f82f5b341d97e931f05e8d0a.tar.bz2
re PR libfortran/47894 (Documentation text for VERIFY intrinsic function is wrong.)
PR fortran/47894 * intrinsic.texi: Fix doc of the VERIFY intrinsic. From-SVN: r170519
Diffstat (limited to 'gcc')
-rw-r--r--gcc/fortran/ChangeLog5
-rw-r--r--gcc/fortran/intrinsic.texi11
2 files changed, 11 insertions, 5 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 8e006bc..85cf01f 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,8 @@
+2011-02-26 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
+
+ PR fortran/47894
+ * intrinsic.texi: Fix doc of the VERIFY intrinsic.
+
2011-02-24 Tobias Burnus <burnus@net-b.de>
PR fortran/47872
diff --git a/gcc/fortran/intrinsic.texi b/gcc/fortran/intrinsic.texi
index 312956a..875a883 100644
--- a/gcc/fortran/intrinsic.texi
+++ b/gcc/fortran/intrinsic.texi
@@ -12602,19 +12602,20 @@ END PROGRAM
@node VERIFY
-@section @code{VERIFY} --- Scan a string for the absence of a set of characters
+@section @code{VERIFY} --- Scan a string for characters not a given set
@fnindex VERIFY
@cindex string, find missing set
@table @asis
@item @emph{Description}:
-Verifies that all the characters in a @var{SET} are present in a @var{STRING}.
+Verifies that all the characters in @var{STRING} belong the set of
+characters in @var{SET}.
If @var{BACK} is either absent or equals @code{FALSE}, this function
returns the position of the leftmost character of @var{STRING} that is
-not in @var{SET}. If @var{BACK} equals @code{TRUE}, the rightmost position
-is returned. If all characters of @var{SET} are found in @var{STRING}, the
-result is zero.
+not in @var{SET}. If @var{BACK} equals @code{TRUE}, the rightmost
+position is returned. If all characters of @var{STRING} are found in
+@var{SET}, the result is zero.
@item @emph{Standard}:
Fortran 95 and later, with @var{KIND} argument Fortran 2003 and later