This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[COMMITTED PATCH] typeprint.c (find_global_typedef): Fix comment.


Hi.

I noticed this while reading the code.

2014-09-02  Doug Evans  <dje@google.com>

	* typeprint.c (find_global_typedef): Fix comment.

diff --git a/gdb/typeprint.c b/gdb/typeprint.c
index 3d8620a..4d3358f 100644
--- a/gdb/typeprint.c
+++ b/gdb/typeprint.c
@@ -286,8 +286,8 @@ find_global_typedef (const struct type_print_options *flags,
       return new_tf->name;
     }
 
-  /* Put an entry into the hash table now, in case apply_script_type_printers
-     recurses.  */
+  /* Put an entry into the hash table now, in case
+     apply_ext_lang_type_printers recurses.  */
   new_tf = XOBNEW (&flags->global_typedefs->storage, struct typedef_field);
   new_tf->name = NULL;
   new_tf->type = t;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]