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]

[obvious] break long line up in


Invoked the "obvious" rule to break up a long line into three <80 column
lines.

-=# Paul #=-
Index: ChangeLog
===================================================================
RCS file: /cvs/src/src/gdb/ChangeLog,v
retrieving revision 1.7747
diff -a -u -r1.7747 ChangeLog
--- ChangeLog	17 May 2006 14:53:02 -0000	1.7747
+++ ChangeLog	18 May 2006 20:22:26 -0000
@@ -1,3 +1,7 @@
+2006-05-18  Paul Gilliam  <pgilliam@us.ibm.com
+
+	* solib-svr4.c (enable_break): Breakup a long line into 3 shorter ones.
+
 2006-05-17  Daniel Jacobowitz  <dan@codesourcery.com>
 
 	* dwarf2-frame.c: Include "value.h".
Index: solib-svr4.c
===================================================================
RCS file: /cvs/src/src/gdb/solib-svr4.c,v
retrieving revision 1.57
diff -a -u -r1.57 solib-svr4.c
--- solib-svr4.c	9 Mar 2006 00:22:09 -0000	1.57
+++ solib-svr4.c	18 May 2006 20:22:26 -0000
@@ -1070,7 +1070,9 @@
       /* For whatever reason we couldn't set a breakpoint in the dynamic
          linker.  Warn and drop into the old code.  */
     bkpt_at_symbol:
-      warning (_("Unable to find dynamic linker breakpoint function.\nGDB will be unable to debug shared library initializers\nand track explicitly loaded dynamic code."));
+      warning (_("Unable to find dynamic linker breakpoint function.\n"
+               "GDB will be unable to debug shared library initializers\n"
+               "and track explicitly loaded dynamic code."));
     }
 
   /* Scan through the list of symbols, trying to look up the symbol and

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