fortran: Restore translation to hint.
authorDavid Edelsohn <dje.gcc@gmail.com>
Thu, 2 Jul 2020 20:03:03 +0000 (16:03 -0400)
committerDavid Edelsohn <dje.gcc@gmail.com>
Sat, 18 Jul 2020 16:06:52 +0000 (12:06 -0400)
This patch restore translation for the variable hint.  The translation
tag conflicted with the previous declaration of hint as char[] and
broke bootstrap, so the translation tags were removed.  The
declaration was changed to char *.  This patch restores the translation
tags to the string.

gcc/fortran/ChangeLog

2020-07-18  David Edelsohn  <dje.gcc@gmail.com>

* check.c (gfc_invalid_boz): Mark hint for translation using _().

gcc/fortran/check.c

index 89cc158fab11019b9410e399de03960aef86fdec..74e5e448760eb1016d471551bc47398b3cefada3 100644 (file)
@@ -67,7 +67,7 @@ gfc_invalid_boz (const char *msg, locus *loc)
       return false;
     }
 
-  const char *hint = " [see %<-fno-allow-invalid-boz%>]";
+  const char *hint = _(" [see %<-fno-allow-invalid-boz%>]");
   size_t len = strlen (msg) + strlen (hint) + 1;
   char *msg2 = (char *) alloca (len);
   strcpy (msg2, msg);