Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Ambrogino Modigliani <ambrogino.modigliani@gmail.com>
To: gdb-patches@sourceware.org,	pedro_alves@portugalmail.pt
Subject: [PATCH 20/20] Fix spelling mistakes in comments in .y files
Date: Sun, 20 Nov 2016 15:07:00 -0000	[thread overview]
Message-ID: <1479654381-20698-21-git-send-email-ambrogino.modigliani@mail.com> (raw)
In-Reply-To: <1479654381-20698-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 == '-')
-- 
2.7.4


  parent reply	other threads:[~2016-11-20 15:07 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-20 15:06 [PATCH 00/20] Fix spelling mistakes in comments Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 06/20] Fix spelling mistakes in comments in Assembler files Ambrogino Modigliani
2016-11-20 16:59   ` Simon Marchi
2016-11-20 15:07 ` [PATCH 09/20] Fix spelling mistakes in comments in .cpu files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 03/20] Fix spelling mistakes in comments in makefiles Ambrogino Modigliani
2016-11-20 16:53   ` Simon Marchi
2016-11-20 15:07 ` [PATCH 15/20] Fix spelling mistakes in comments in .l files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 05/20] Fix spelling mistakes in comments in Ada source files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 04/20] Fix spelling mistakes in comments in shell scripts Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 17/20] Fix spelling mistakes in comments in .opc files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 19/20] Fix spelling mistakes in comments in .tbl files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 10/20] Fix spelling mistakes in comments in .def files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 14/20] Fix spelling mistakes in comments in .inc files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 08/20] Fix spelling mistakes in comments in XML files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 11/20] Fix spelling mistakes in comments in .em files Ambrogino Modigliani
2016-11-20 15:07 ` Ambrogino Modigliani [this message]
2016-11-20 15:07 ` [PATCH 02/20] Fix spelling mistakes in comments in configure scripts Ambrogino Modigliani
2016-11-20 16:36   ` Simon Marchi
2016-11-20 15:07 ` [PATCH 16/20] Fix spelling mistakes in comments in .m4 files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 07/20] Fix spelling mistakes in comments in Expect scripts Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 13/20] Fix spelling mistakes in comments in .in files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 18/20] Fix spelling mistakes in comments in .sc files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 12/20] Fix spelling mistakes in comments in .igen files Ambrogino Modigliani
2016-11-20 17:30 ` [PATCH 00/20] Fix spelling mistakes in comments Simon Marchi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1479654381-20698-21-git-send-email-ambrogino.modigliani@mail.com \
    --to=ambrogino.modigliani@gmail.com \
    --cc=gdb-patches@sourceware.org \
    --cc=pedro_alves@portugalmail.pt \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox