This is the mail archive of the gdb-patches@sources.redhat.com 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]

[obish] Fix comment


FYI, this cleans up a function comment (thanks to jason for pointing out the long standing typo).

Andrew
2004-04-28  Andrew Cagney  <cagney@redhat.com>

	* stack.c (print_stack_frame): Fix description.

Index: stack.c
===================================================================
RCS file: /cvs/src/src/gdb/stack.c,v
retrieving revision 1.105
diff -u -r1.105 stack.c
--- stack.c	28 Apr 2004 16:36:25 -0000	1.105
+++ stack.c	28 Apr 2004 22:46:49 -0000
@@ -136,11 +136,11 @@
   return 0;
 }
 
-/* Show or print a stack frame briefly.  FRAME_INFI should be the
-   frame info.  This prints the level, the function executing, the
-   arguments, and the file name and line number.  If the pc is not at
-   the beginning of the source line, the actual pc is printed at the
-   beginning.  */
+/* Show or print a stack frame FI briefly.  The output is format
+   according to PRINT_LEVEL and PRINT_WHAT printing the frame's
+   relative level, function name, argument list, and file name and
+   line number.  If the frame's PC is not at the beginning of the
+   source line, the actual PC is printed at the beginning.  */
 
 void
 print_stack_frame (struct frame_info *fi, int print_level,

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