This is the mail archive of the gdb@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]

RE: 2 weeks away from potential GDB 7.4.1 release...


We I committed a patch about a pascal regression

http://sourceware.org/ml/gdb-patches/2012-03/msg00599.html

http://sourceware.org/ml/gdb-cvs/2012-03/msg00205.html

I asked if I should merge it to fixes...

So I suppose that now is the time...
Is this OK?


ChangeLog entry:

2012-04-13  Pierre Muller  <muller@ics.u-strasbg.fr>

        * p-typeprint.c (pascal_type_print_method_args):
        Fix display of parameter of methods.


Index: p-typeprint.c
===================================================================
RCS file: /cvs/src/src/gdb/p-typeprint.c,v
retrieving revision 1.42.2.1
diff -c -r1.42.2.1 p-typeprint.c
*** p-typeprint.c       6 Jan 2012 04:43:21 -0000       1.42.2.1
--- p-typeprint.c       13 Apr 2012 08:04:10 -0000
***************
*** 183,190 ****
          physname += len;

          for (j = 0; j < i; ++j)
!           fputc_filtered (physname[i], stream);
!         fputs_filtered (physname, stream);

          physname += i;
          if (physname[0] != 0)
--- 183,189 ----
          physname += len;

          for (j = 0; j < i; ++j)
!           fputc_filtered (physname[j], stream);

          physname += i;
          if (physname[0] != 0)



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