From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11901 invoked by alias); 24 Jun 2008 19:32:07 -0000 Received: (qmail 11892 invoked by uid 22791); 24 Jun 2008 19:32:07 -0000 X-Spam-Check-By: sourceware.org Received: from bluesmobile.specifix.com (HELO bluesmobile.specifix.com) (216.129.118.140) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 24 Jun 2008 19:31:50 +0000 Received: from [127.0.0.1] (bluesmobile.specifix.com [216.129.118.140]) by bluesmobile.specifix.com (Postfix) with ESMTP id 86EA63BE68 for ; Tue, 24 Jun 2008 12:31:48 -0700 (PDT) Subject: [OB] _initialize_infrun, whitespace and typo fix From: Michael Snyder To: gdb-patches@sourceware.org Content-Type: multipart/mixed; boundary="=-zEdMM5H6u1eEXTYu37jm" Date: Tue, 24 Jun 2008 20:07:00 -0000 Message-Id: <1214335908.3601.1219.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.10.3 (2.10.3-7.fc7) X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2008-06/txt/msg00418.txt.bz2 --=-zEdMM5H6u1eEXTYu37jm Content-Type: text/plain Content-Transfer-Encoding: 7bit Content-length: 23 Committed as obvious --=-zEdMM5H6u1eEXTYu37jm Content-Disposition: attachment; filename=ws.txt Content-Type: text/x-patch; name=ws.txt; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-length: 1691 Index: ChangeLog =================================================================== RCS file: /cvs/src/src/gdb/ChangeLog,v retrieving revision 1.9484 diff -u -p -r1.9484 ChangeLog --- ChangeLog 24 Jun 2008 02:33:14 -0000 1.9484 +++ ChangeLog 24 Jun 2008 19:29:44 -0000 @@ -1,3 +1,7 @@ +2008-06-24 Michael Snyder + + * infrun.c (_initialize_infrun): White space and typo fix. + 2008-06-23 Christopher Faylor * win32-nat.c (safe_symbol_file_add_stub): Remove unused variable. Index: infrun.c =================================================================== RCS file: /cvs/src/src/gdb/infrun.c,v retrieving revision 1.281 diff -u -p -r1.281 infrun.c --- infrun.c 13 Jun 2008 20:19:19 -0000 1.281 +++ infrun.c 24 Jun 2008 19:29:45 -0000 @@ -4624,17 +4624,16 @@ function is skipped and the step command &setlist, &showlist); add_setshow_boolean_cmd ("can-use-displaced-stepping", class_maintenance, - &can_use_displaced_stepping, _("\ + &can_use_displaced_stepping, _("\ Set debugger's willingness to use displaced stepping."), _("\ Show debugger's willingness to use displaced stepping."), _("\ -If zero, gdb will not use to use displaced stepping to step over\n\ +If zero, gdb will not use displaced stepping to step over\n\ breakpoints, even if such is supported by the target."), - NULL, - show_can_use_displaced_stepping, - &maintenance_set_cmdlist, + NULL, + show_can_use_displaced_stepping, + &maintenance_set_cmdlist, &maintenance_show_cmdlist); - /* ptid initializations */ null_ptid = ptid_build (0, 0, 0); minus_one_ptid = ptid_build (-1, 0, 0); --=-zEdMM5H6u1eEXTYu37jm--