From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1534) id 56F5C388C5DF; Sun, 11 Dec 2022 10:55:34 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 56F5C388C5DF DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1670756134; bh=qFBxOdWcGuXA81BKir9XAR4o+M4FcjT2DxaBX/JP2Uo=; h=From:To:Subject:Date:From; b=OKN70XqOIkIi73zt4avAXPE0aIlHi3zrRR8JlYp7JN+qUOasQ8A0QZaKlJ+dQDQww VCsJ6l9DnE4LB2tXglo43hZK9OsMYXjYsSSw6jMSVCIZk4nkcCXzBFOMNJaxK8k1DU QFs/aZhyf1JEyJza+AbpuPWE6BIPeVzhP+S3mLEI= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Tobias Burnus To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-4597] fortran/openmp.cc: Remove 's' that slipped in during %<..%> replacement X-Act-Checkin: gcc X-Git-Author: Tobias Burnus X-Git-Refname: refs/heads/master X-Git-Oldrev: c6b12b802cd943af0985fbd3e74d773775b2b544 X-Git-Newrev: 045592f665bcb67b75dc6b86badbe2fd44aed3e6 Message-Id: <20221211105534.56F5C388C5DF@sourceware.org> Date: Sun, 11 Dec 2022 10:55:34 +0000 (GMT) List-Id: https://gcc.gnu.org/g:045592f665bcb67b75dc6b86badbe2fd44aed3e6 commit r13-4597-g045592f665bcb67b75dc6b86badbe2fd44aed3e6 Author: Tobias Burnus Date: Sun Dec 11 11:47:55 2022 +0100 fortran/openmp.cc: Remove 's' that slipped in during %<..%> replacement Seemingly, 's' (in VI that's the 's'ubstitute command) appeared verbatim in a gfc_error message when to doing the '...' to %<...%> replacements in commit r13-4590-g84f6f8a2a97f88be01e223c9c9dbab801a4f501f gcc/fortran/ * openmp.cc (gfc_match_omp_context_selector_specification): Remove spurious 's' in an error message. Diff: --- gcc/fortran/openmp.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/fortran/openmp.cc b/gcc/fortran/openmp.cc index 7edc78ad0cb..686f924b47a 100644 --- a/gcc/fortran/openmp.cc +++ b/gcc/fortran/openmp.cc @@ -5568,7 +5568,7 @@ gfc_match_omp_context_selector_specification (gfc_omp_declare_variant *odv) if (m != MATCH_YES || i == selector_set_count) { - gfc_error ("expected %, %, % " + gfc_error ("expected %, %, % " "or % at %C"); return MATCH_ERROR; }