git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [PATCH] Correct missing SP characters in grammar comment at top of fast-import.c
@ 2009-03-25 21:22 newren
  2009-03-25 21:26 ` Shawn O. Pearce
  0 siblings, 1 reply; 2+ messages in thread
From: newren @ 2009-03-25 21:22 UTC (permalink / raw
  To: git; +Cc: spearce, gitster, Elijah Newren

From: Elijah Newren <newren@gmail.com>


Signed-off-by: Elijah Newren <newren@gmail.com>
---

Some point after discovering this 'bug', I noticed that the documentation
in Documentation/git-fast-import.txt was accurate, so I added a comment at
the top of the file pointing people at that document, as I suspect it is
more likely to be kept up to date.  If my assumption is wrong, or would
prefer different wording, I'm all ears.

 fast-import.c |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/fast-import.c b/fast-import.c
index beeac0d..db44da3 100644
--- a/fast-import.c
+++ b/fast-import.c
@@ -1,4 +1,5 @@
 /*
+(See Documentation/git-fast-import.txt for maintained documentation.)
 Format of STDIN stream:
 
   stream ::= cmd*;
@@ -18,8 +19,8 @@ Format of STDIN stream:
 
   new_commit ::= 'commit' sp ref_str lf
     mark?
-    ('author' sp name '<' email '>' when lf)?
-    'committer' sp name '<' email '>' when lf
+    ('author' sp name sp '<' email '>' sp when lf)?
+    'committer' sp name sp '<' email '>' sp when lf
     commit_msg
     ('from' sp (ref_str | hexsha1 | sha1exp_str | idnum) lf)?
     ('merge' sp (ref_str | hexsha1 | sha1exp_str | idnum) lf)*
@@ -43,7 +44,7 @@ Format of STDIN stream:
 
   new_tag ::= 'tag' sp tag_str lf
     'from' sp (ref_str | hexsha1 | sha1exp_str | idnum) lf
-    ('tagger' sp name '<' email '>' when lf)?
+    ('tagger' sp name sp '<' email '>' sp when lf)?
     tag_msg;
   tag_msg ::= data;
 
-- 
1.6.0.6

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] Correct missing SP characters in grammar comment at top of fast-import.c
  2009-03-25 21:22 [PATCH] Correct missing SP characters in grammar comment at top of fast-import.c newren
@ 2009-03-25 21:26 ` Shawn O. Pearce
  0 siblings, 0 replies; 2+ messages in thread
From: Shawn O. Pearce @ 2009-03-25 21:26 UTC (permalink / raw
  To: newren; +Cc: git, gitster

newren@gmail.com wrote:
> From: Elijah Newren <newren@gmail.com>
> 
> Signed-off-by: Elijah Newren <newren@gmail.com>

Acked-by: Shawn O. Pearce <spearce@spearce.org>

> Some point after discovering this 'bug', I noticed that the documentation
> in Documentation/git-fast-import.txt was accurate, so I added a comment at
> the top of the file pointing people at that document, as I suspect it is
> more likely to be kept up to date.  If my assumption is wrong, or would
> prefer different wording, I'm all ears.

Good catch.  The grammar at the top of the file should be more
accurate than the documentation you point to.  This was just a
thinko when I wrote the grammar out in the header.


> diff --git a/fast-import.c b/fast-import.c
> index beeac0d..db44da3 100644
> --- a/fast-import.c
> +++ b/fast-import.c
> @@ -1,4 +1,5 @@
>  /*
> +(See Documentation/git-fast-import.txt for maintained documentation.)
>  Format of STDIN stream:
>  
>    stream ::= cmd*;
> @@ -18,8 +19,8 @@ Format of STDIN stream:
>  
>    new_commit ::= 'commit' sp ref_str lf
>      mark?
> -    ('author' sp name '<' email '>' when lf)?
> -    'committer' sp name '<' email '>' when lf
> +    ('author' sp name sp '<' email '>' sp when lf)?
> +    'committer' sp name sp '<' email '>' sp when lf
>      commit_msg
>      ('from' sp (ref_str | hexsha1 | sha1exp_str | idnum) lf)?
>      ('merge' sp (ref_str | hexsha1 | sha1exp_str | idnum) lf)*
> @@ -43,7 +44,7 @@ Format of STDIN stream:
>  
>    new_tag ::= 'tag' sp tag_str lf
>      'from' sp (ref_str | hexsha1 | sha1exp_str | idnum) lf
> -    ('tagger' sp name '<' email '>' when lf)?
> +    ('tagger' sp name sp '<' email '>' sp when lf)?
>      tag_msg;
>    tag_msg ::= data;
>  
> -- 
> 1.6.0.6
> 

-- 
Shawn.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-03-25 21:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-25 21:22 [PATCH] Correct missing SP characters in grammar comment at top of fast-import.c newren
2009-03-25 21:26 ` Shawn O. Pearce

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).