From patchwork Fri Oct 9 13:22:59 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eli Zaretskii X-Patchwork-Id: 9006 Received: (qmail 51117 invoked by alias); 9 Oct 2015 13:23:02 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 51107 invoked by uid 89); 9 Oct 2015 13:23:01 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=0.4 required=5.0 tests=AWL, BAYES_50, RCVD_IN_DNSWL_NONE, SPF_SOFTFAIL autolearn=no version=3.3.2 X-HELO: mtaout25.012.net.il Received: from mtaout25.012.net.il (HELO mtaout25.012.net.il) (80.179.55.181) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 09 Oct 2015 13:23:00 +0000 Received: from conversion-daemon.mtaout25.012.net.il by mtaout25.012.net.il (HyperSendmail v2007.08) id <0NVY00F00FH5PP00@mtaout25.012.net.il> for gdb-patches@sourceware.org; Fri, 09 Oct 2015 16:20:22 +0300 (IDT) Received: from HOME-C4E4A596F7 ([84.94.185.246]) by mtaout25.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0NVY009WQFPXGP60@mtaout25.012.net.il> for gdb-patches@sourceware.org; Fri, 09 Oct 2015 16:20:22 +0300 (IDT) Date: Fri, 09 Oct 2015 16:22:59 +0300 From: Eli Zaretskii Subject: [commit] Fix typos in comments To: gdb-patches@sourceware.org Reply-to: Eli Zaretskii Message-id: <83twq0tbv0.fsf@gnu.org> X-IsSubscribed: yes Committed as obvious: commit f9acce4a4f411e78ebca90995c598ed231b104a3 Author: Eli Zaretskii Date: Fri Oct 9 16:21:08 2015 +0300 Fix typos in comments gdb/ 2015-10-09 Eli Zaretskii * stack.c (print_stack_frame): * utils.c (printchar): Fix typos in commentary. diff --git a/gdb/ChangeLog b/gdb/ChangeLog index bf71afb..b1a274b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2015-10-09 Eli Zaretskii + + * stack.c (print_stack_frame): + * utils.c (printchar): Fix typos in commentary. + 2015-10-08 Iain Buclaw * d-exp.y: (UnaryExpression): Support `type.sizeof' expressions. diff --git a/gdb/stack.c b/gdb/stack.c index e6156a7..8af34f3 100644 --- a/gdb/stack.c +++ b/gdb/stack.c @@ -141,7 +141,7 @@ frame_show_address (struct frame_info *frame, return get_frame_pc (frame) != sal.pc; } -/* Show or print a stack frame FRAME briefly. The output is format +/* Show or print a stack frame FRAME briefly. The output is formatted 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 diff --git a/gdb/utils.c b/gdb/utils.c index c7f00d9..afeff12 100644 --- a/gdb/utils.c +++ b/gdb/utils.c @@ -1495,7 +1495,7 @@ parse_escape (struct gdbarch *gdbarch, const char **string_ptr) /* Print the character C on STREAM as part of the contents of a literal string whose delimiter is QUOTER. Note that this routine should only - be call for printing things which are independent of the language + be called for printing things which are independent of the language of the program being debugged. printchar will normally escape backslashes and instances of QUOTER. If