From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11887 invoked by alias); 6 Dec 2005 22:14:05 -0000 Received: (qmail 11873 invoked by uid 22791); 6 Dec 2005 22:14:04 -0000 X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 06 Dec 2005 22:14:03 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id jB6ME1Qw023962 for ; Tue, 6 Dec 2005 17:14:01 -0500 Received: from potter.sfbay.redhat.com (potter.sfbay.redhat.com [172.16.27.15]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id jB6ME1V20706 for ; Tue, 6 Dec 2005 17:14:01 -0500 Received: from [172.16.24.50] (bluegiant.sfbay.redhat.com [172.16.24.50]) by potter.sfbay.redhat.com (8.12.8/8.12.8) with ESMTP id jB6MDwfU013334; Tue, 6 Dec 2005 17:13:58 -0500 Message-ID: <43960D24.8030707@redhat.com> Date: Wed, 07 Dec 2005 03:13:00 -0000 From: Michael Snyder User-Agent: Mozilla Thunderbird (X11/20050322) MIME-Version: 1.0 To: Michael Snyder CC: GDB Patches Subject: Re: [OBVIOUS] indentation fix, cli/cli-decode.c References: <43960BB8.3010905@redhat.com> In-Reply-To: <43960BB8.3010905@redhat.com> Content-Type: multipart/mixed; boundary="------------090802010508000705050900" X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2005-12/txt/msg00122.txt.bz2 This is a multi-part message in MIME format. --------------090802010508000705050900 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 39 Sorry, left out the changelog entry: --------------090802010508000705050900 Content-Type: text/plain; name="decode" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="decode" Content-length: 2519 2005-12-06 Michael Snyder * cli/cli-decode.c (add_setshow_string_cmd): Indent. (add_setshow_integer_cmd): Indent. Index: cli/cli-decode.c =================================================================== RCS file: /cvs/src/src/gdb/cli/cli-decode.c,v retrieving revision 1.56 diff -p -r1.56 cli-decode.c *** cli/cli-decode.c 25 Nov 2005 11:45:49 -0000 1.56 --- cli/cli-decode.c 6 Dec 2005 21:56:43 -0000 *************** add_setshow_filename_cmd (char *name, en *** 478,490 **** list for set/show or some sublist thereof). */ void add_setshow_string_cmd (char *name, enum command_class class, ! char **var, ! const char *set_doc, const char *show_doc, ! const char *help_doc, ! cmd_sfunc_ftype *set_func, ! show_value_ftype *show_func, ! struct cmd_list_element **set_list, ! struct cmd_list_element **show_list) { add_setshow_cmd_full (name, class, var_string, var, set_doc, show_doc, help_doc, 2005-12-06 Michael Snyder * cli/cli-decode.c (add_setshow_string_cmd): Indent. (add_setshow_integer_cmd): Indent. --- 478,490 ---- list for set/show or some sublist thereof). */ void add_setshow_string_cmd (char *name, enum command_class class, ! char **var, ! const char *set_doc, const char *show_doc, ! const char *help_doc, ! cmd_sfunc_ftype *set_func, ! show_value_ftype *show_func, ! struct cmd_list_element **set_list, ! struct cmd_list_element **show_list) { add_setshow_cmd_full (name, class, var_string, var, set_doc, show_doc, help_doc, *************** add_setshow_optional_filename_cmd (char *** 538,549 **** void add_setshow_integer_cmd (char *name, enum command_class class, int *var, ! const char *set_doc, const char *show_doc, ! const char *help_doc, ! cmd_sfunc_ftype *set_func, ! show_value_ftype *show_func, ! struct cmd_list_element **set_list, ! struct cmd_list_element **show_list) { add_setshow_cmd_full (name, class, var_integer, var, set_doc, show_doc, help_doc, --- 538,549 ---- void add_setshow_integer_cmd (char *name, enum command_class class, int *var, ! const char *set_doc, const char *show_doc, ! const char *help_doc, ! cmd_sfunc_ftype *set_func, ! show_value_ftype *show_func, ! struct cmd_list_element **set_list, ! struct cmd_list_element **show_list) { add_setshow_cmd_full (name, class, var_integer, var, set_doc, show_doc, help_doc, --------------090802010508000705050900--