summaryrefslogtreecommitdiff
path: root/fast-import.c
diff options
context:
space:
mode:
authorElijah Newren <newren@gmail.com>2009-03-25 21:22:13 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-03-25 23:36:16 (GMT)
commit98e1a4186acd4b71da1daae5c522cb6ac6d1d904 (patch)
tree2d73609ac7fd9217577e968b86299d289ce91497 /fast-import.c
parentd5b0c97d138201c59b30cb759cedabb70b7bae81 (diff)
downloadgit-98e1a4186acd4b71da1daae5c522cb6ac6d1d904.zip
git-98e1a4186acd4b71da1daae5c522cb6ac6d1d904.tar.gz
git-98e1a4186acd4b71da1daae5c522cb6ac6d1d904.tar.bz2
Correct missing SP characters in grammar comment at top of fast-import.c
Signed-off-by: Elijah Newren <newren@gmail.com> Acked-by: Shawn O. Pearce <spearce@spearce.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'fast-import.c')
-rw-r--r--fast-import.c7
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;