[gcc r11-2210] fortran: Restore translation to hint.
David Edelsohn
dje@gcc.gnu.org
Sat Jul 18 16:07:18 GMT 2020
https://gcc.gnu.org/g:a36b14a333c9c6571e16a87fa54956d991dce387
commit r11-2210-ga36b14a333c9c6571e16a87fa54956d991dce387
Author: David Edelsohn <dje.gcc@gmail.com>
Date: Thu Jul 2 16:03:03 2020 -0400
fortran: Restore translation to hint.
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 _().
Diff:
---
gcc/fortran/check.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gcc/fortran/check.c b/gcc/fortran/check.c
index 89cc158fab1..74e5e448760 100644
--- a/gcc/fortran/check.c
+++ b/gcc/fortran/check.c
@@ -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);
More information about the Gcc-cvs
mailing list