Skip to content

Commit

Permalink
kernel: whitespace fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Apr 24, 2019
1 parent 392b34a commit 597393a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/read.c
Original file line number Diff line number Diff line change
Expand Up @@ -956,7 +956,7 @@ static void ReadListExpr (

/* incorrect place for three dots */
if (STATE(Symbol) == S_DOTDOTDOT) {
SyntaxError("Only two dots in a range");
SyntaxError("Only two dots in a range");
}

/* '..' <Expr> ']' */
Expand Down Expand Up @@ -2142,8 +2142,8 @@ static void ReadAtomic (
Match( S_ATOMIC, "atomic", follow );
/* Might just be an atomic function literal as an expression */
if (STATE(Symbol) == S_FUNCTION) {
ReadExpr(follow, 'a');
return;
ReadExpr(follow, 'a');
return;
}

/* 'atomic' <QualifiedExpression> {',' <QualifiedExpression> } 'do' */
Expand Down

0 comments on commit 597393a

Please sign in to comment.