From patchwork Sun Nov 20 17:38:18 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ambrogino Modigliani X-Patchwork-Id: 17640 Received: (qmail 82034 invoked by alias); 20 Nov 2016 17:41:31 -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 81823 invoked by uid 89); 20 Nov 2016 17:41:29 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.3 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, RCVD_IN_SORBS_SPAM, SPF_PASS autolearn=no version=3.3.2 spammy=stange, Stange, Nope, Scan X-HELO: mail-wm0-f68.google.com Received: from mail-wm0-f68.google.com (HELO mail-wm0-f68.google.com) (74.125.82.68) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 20 Nov 2016 17:41:28 +0000 Received: by mail-wm0-f68.google.com with SMTP id a20so20655044wme.2 for ; Sun, 20 Nov 2016 09:41:27 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references; bh=BMs3eudohLcw3G1Sn0qh7rI7G5qo6rU4sjp3CGsZypo=; b=Hwd//LrnlAvN4FASkuP75NALFcNuKFRGnM6ydqJMgbplvUlXZNJfTaHk/Es+6QR63X Dq+G3MksY4pDDpCEJPaLfus0CrBZnBgrY2Apw83y40FRdDDCBNSCH/BT6L/qoclr+omQ uXS5lIUx8izbNVDVTp6uegY1PqiX4NKlcpCwk2CxXLKBWyWzwYfXDNgRqK7ZjWAeew9e OkCZnXK7uzILz5QRLGKkEe+xZxqJO4IR7QTnaXwt9HB+Hu7yMiCUHbI7SeyKQaVmoyvt 86cH+jb/gJz4xo4UQeJE+AVldN62M8fEsnDgrrzTLCtshAbIY4yG4j3Riuw8BUBNFKaO dPuw== X-Gm-Message-State: AKaTC02focrUJSY5g+b+9KwApw6OrXudojVS6blQFK1aiRnId3ANGcZenI49kTl6ZZ3r0Q== X-Received: by 10.28.225.138 with SMTP id y132mr8751503wmg.52.1479663685885; Sun, 20 Nov 2016 09:41:25 -0800 (PST) Received: from localhost.localdomain ([95.180.71.38]) by smtp.googlemail.com with ESMTPSA id j1sm20408211wjm.26.2016.11.20.09.41.24 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 20 Nov 2016 09:41:25 -0800 (PST) From: Ambrogino Modigliani X-Google-Original-From: Ambrogino Modigliani To: gdb-patches@sourceware.org, pedro_alves@portugalmail.pt, ambrogino.modigliani@gmail.com, ambrogino.modigliani@mail.com Subject: [PATCH 23/23] Fix spelling mistakes in comments in .y files Date: Sun, 20 Nov 2016 18:38:18 +0100 Message-Id: <1479663498-30295-24-git-send-email-ambrogino.modigliani@mail.com> In-Reply-To: <1479663498-30295-1-git-send-email-ambrogino.modigliani@mail.com> References: <1479663498-30295-1-git-send-email-ambrogino.modigliani@mail.com> binutils/ChangeLog: * binutils/arparse.y: Fix spelling in comments. gdb/ChangeLog: * gdb/c-exp.y: Fix spelling in comments. * gdb/cp-name-parser.y: Fix spelling in comments. * gdb/d-exp.y: Fix spelling in comments. * gdb/f-exp.y: Fix spelling in comments. * gdb/go-exp.y: Fix spelling in comments. * gdb/p-exp.y: Fix spelling in comments. ld/ChangeLog: * ld/deffilep.y: Fix spelling in comments. --- binutils/arparse.y | 2 +- gdb/c-exp.y | 2 +- gdb/cp-name-parser.y | 2 +- gdb/d-exp.y | 2 +- gdb/f-exp.y | 2 +- gdb/go-exp.y | 2 +- gdb/p-exp.y | 2 +- ld/deffilep.y | 4 ++-- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/binutils/arparse.y b/binutils/arparse.y index 9b2fefb..0048621 100644 --- a/binutils/arparse.y +++ b/binutils/arparse.y @@ -1,5 +1,5 @@ %{ -/* arparse.y - Stange script language parser */ +/* arparse.y - Strange script language parser */ /* Copyright (C) 1992-2016 Free Software Foundation, Inc. diff --git a/gdb/c-exp.y b/gdb/c-exp.y index f08bb69..ea7e2ec 100644 --- a/gdb/c-exp.y +++ b/gdb/c-exp.y @@ -2524,7 +2524,7 @@ lex_one_token (struct parser_state *par_state, int *is_quoted_name) last_was_structop = 1; goto symbol; /* Nope, must be a symbol. */ } - /* FALL THRU into number case. */ + /* FALL THROUGH into number case. */ case '0': case '1': diff --git a/gdb/cp-name-parser.y b/gdb/cp-name-parser.y index c6a5c34..a1b427a 100644 --- a/gdb/cp-name-parser.y +++ b/gdb/cp-name-parser.y @@ -1673,7 +1673,7 @@ yylex (void) lexptr++; return '-'; } - /* FALL THRU into number case. */ + /* FALL THROUGH into number case. */ try_number: case '0': diff --git a/gdb/d-exp.y b/gdb/d-exp.y index 426f9b3..b8de4f5 100644 --- a/gdb/d-exp.y +++ b/gdb/d-exp.y @@ -1123,7 +1123,7 @@ lex_one_token (struct parser_state *par_state) last_was_structop = 1; goto symbol; /* Nope, must be a symbol. */ } - /* FALL THRU into number case. */ + /* FALL THROUGH into number case. */ case '0': case '1': diff --git a/gdb/f-exp.y b/gdb/f-exp.y index 420f18e..b553736 100644 --- a/gdb/f-exp.y +++ b/gdb/f-exp.y @@ -1006,7 +1006,7 @@ yylex (void) /* Might be a floating point number. */ if (lexptr[1] < '0' || lexptr[1] > '9') goto symbol; /* Nope, must be a symbol. */ - /* FALL THRU into number case. */ + /* FALL THROUGH into number case. */ case '0': case '1': diff --git a/gdb/go-exp.y b/gdb/go-exp.y index 1b0fe5b..1795b97 100644 --- a/gdb/go-exp.y +++ b/gdb/go-exp.y @@ -1089,7 +1089,7 @@ lex_one_token (struct parser_state *par_state) last_was_structop = 1; goto symbol; /* Nope, must be a symbol. */ } - /* FALL THRU into number case. */ + /* FALL THROUGH into number case. */ case '0': case '1': diff --git a/gdb/p-exp.y b/gdb/p-exp.y index fa6b22c..260f162 100644 --- a/gdb/p-exp.y +++ b/gdb/p-exp.y @@ -1211,7 +1211,7 @@ yylex (void) goto symbol; /* Nope, must be a symbol. */ } - /* FALL THRU into number case. */ + /* FALL THROUGH into number case. */ case '0': case '1': diff --git a/ld/deffilep.y b/ld/deffilep.y index 837de0e..302016c 100644 --- a/ld/deffilep.y +++ b/ld/deffilep.y @@ -904,8 +904,8 @@ def_file_add_directive (def_file *my_def, const char *param, int len) /* Scan forward until we encounter any of: - the end of the buffer - the start of a new option - - a newline seperating options - - a NUL seperating options. */ + - a newline separating options + - a NUL separating options. */ for (tend = (char *) (param + 1); (tend < pend && !(ISSPACE (tend[-1]) && *tend == '-')