Move declaration of lang_frame_mismatch_warn to header.

Message ID 20191007175734.257671-1-cbiesinger@google.com
State New, archived
Headers

Commit Message

Terekhov, Mikhail via Gdb-patches Oct. 7, 2019, 5:57 p.m. UTC
  gdb/ChangeLog:

2019-10-07  Christian Biesinger  <cbiesinger@google.com>

	* language.c (lang_frame_mismatch_warn): Make const and move
	comment...
	* language.h (lang_frame_mismatch_warn): ... here. Also add
	declaration.
	* top.c (lang_frame_mismatch_warn): Remove declaration.
---
 gdb/language.c | 5 ++---
 gdb/language.h | 5 +++++
 gdb/top.c      | 2 --
 3 files changed, 7 insertions(+), 5 deletions(-)
  

Comments

Tom Tromey Oct. 7, 2019, 10:19 p.m. UTC | #1
>>>>> "Christian" == Christian Biesinger via gdb-patches <gdb-patches@sourceware.org> writes:

Christian> gdb/ChangeLog:
Christian> 2019-10-07  Christian Biesinger  <cbiesinger@google.com>

Christian> 	* language.c (lang_frame_mismatch_warn): Make const and move
Christian> 	comment...
Christian> 	* language.h (lang_frame_mismatch_warn): ... here. Also add
Christian> 	declaration.
Christian> 	* top.c (lang_frame_mismatch_warn): Remove declaration.

Thanks.

Maybe it would be better to just have a function to print this message.
That would make it easier to gettext-ize.

It can be done as-is though by changing it to a const char *, then
wrapping the literal in N_(...), and changing the uses to _(...).

Tom
  
Terekhov, Mikhail via Gdb-patches Oct. 7, 2019, 10:26 p.m. UTC | #2
On Mon, Oct 7, 2019 at 5:19 PM Tom Tromey <tom@tromey.com> wrote:
>
> >>>>> "Christian" == Christian Biesinger via gdb-patches <gdb-patches@sourceware.org> writes:
>
> Christian> gdb/ChangeLog:
> Christian> 2019-10-07  Christian Biesinger  <cbiesinger@google.com>
>
> Christian>      * language.c (lang_frame_mismatch_warn): Make const and move
> Christian>      comment...
> Christian>      * language.h (lang_frame_mismatch_warn): ... here. Also add
> Christian>      declaration.
> Christian>      * top.c (lang_frame_mismatch_warn): Remove declaration.
>
> Thanks.
>
> Maybe it would be better to just have a function to print this message.
> That would make it easier to gettext-ize.
>
> It can be done as-is though by changing it to a const char *, then
> wrapping the literal in N_(...), and changing the uses to _(...).

Thanks. It seems to work for me even without changing to const char*,
so I'll send a patch momentarily which does that.

Christian
  
Tom Tromey Oct. 8, 2019, 12:46 p.m. UTC | #3
>>>>> "Christian" == Christian Biesinger via gdb-patches <gdb-patches@sourceware.org> writes:

>> It can be done as-is though by changing it to a const char *, then
>> wrapping the literal in N_(...), and changing the uses to _(...).

Christian> Thanks. It seems to work for me even without changing to const char*,
Christian> so I'll send a patch momentarily which does that.

Oh yeah, duh.  N_ is just a marker for xgettext, and doesn't actually do
anything.

Tom
  

Patch

diff --git a/gdb/language.c b/gdb/language.c
index e95084f1154..2bebc05a1f3 100644
--- a/gdb/language.c
+++ b/gdb/language.c
@@ -112,9 +112,8 @@  static const char *language;
 static const char *range;
 static const char *case_sensitive;
 
-/* Warning issued when current_language and the language of the current
-   frame do not match.  */
-char lang_frame_mismatch_warn[] =
+/* See language.h.  */
+const char lang_frame_mismatch_warn[] =
 "Warning: the current language does not match this frame.";
 
 /* This page contains the functions corresponding to GDB commands
diff --git a/gdb/language.h b/gdb/language.h
index 0088e5de2dd..aa19f8ee9b4 100644
--- a/gdb/language.h
+++ b/gdb/language.h
@@ -483,6 +483,11 @@  extern const struct language_defn *current_language;
 
 extern const struct language_defn *expected_language;
 
+/* Warning issued when current_language and the language of the current
+   frame do not match.  */
+
+extern const char lang_frame_mismatch_warn[];
+
 /* language_mode == 
    language_mode_auto:   current_language automatically set upon selection
    of scope (e.g. stack frame)
diff --git a/gdb/top.c b/gdb/top.c
index a1a08e0b99e..0c1a213e9d5 100644
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -110,8 +110,6 @@  gen_ret_current_ui_field_ptr (struct ui_out *, current_uiout)
 
 int inhibit_gdbinit = 0;
 
-extern char lang_frame_mismatch_warn[];		/* language.c */
-
 /* Flag for whether we want to confirm potentially dangerous
    operations.  Default is yes.  */